/** Shopify CDN: Minification failed

Line 74:13 Expected identifier but found whitespace
Line 74:19 Unexpected "!"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.custom-css{
    margin-right: auto;
    margin-left: auto;
    width: 630px;
    height: 217px;
    background: #F1F5F6;
    border: 1px solid #E5E8EC;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}
/* 修改 select 下拉框的背景颜色和字体颜色 */
.product-options__section {
  /* 设置选中项（显示在下拉框中的值）的字体颜色为蓝色 */
  color: #4267B1 !important;

  /* 设置下拉框的背景颜色为浅灰色 */
  background-color: #f0f0f0 !important;

  /* 其他样式设置 */
  border: 1px solid #ccc !important;
  padding: 8px 12px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  cursor: pointer !important;

  /* 移除浏览器默认的下拉箭头 */
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* 控制下拉菜单中所有选项的颜色（未选中时）保持黑色或其他颜色 */
.product-options__section option {
  color: #000000 !important; 
}
/* === 1. 非主页：隐藏侧边栏标题 === 
body:not(.home) .title_vertical_menu {
  display: none !important;
}
*/
/* === 2. 关键：让主菜单容器撑满并居中 === */
body:not(.home) .container-wrapper {
  width: 100% !important;
  max-width: none !important;
  padding: 0 16px !important; /* 保留左右内边距，避免贴边 */
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* === 3. 主菜单 ul：自适应内容，不设固定宽度 === 
body:not(.home) #menu-main-menu {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important; /* 菜单项间距（可调） */
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important; /* 小屏自动换行 */
}
*/

/* === 4. 菜单项链接：保持正常样式 === */
body:not(.home) #menu-main-menu li a {
  white-space: nowrap !important; /* 防止文字断行 */
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  .custom-css{padding: 10px;}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  .custom-css{padding: 10px;}
}
