/** Shopify CDN: Minification failed

Line 1396:0 Expected "}" to go with "{"

**/
/* Main Product Styles */

/* Container & Layout */



.hdt-main-product {
  --pr-media-width: 50%;
  --section-pt: 0px;
  --section-pb: 60px;
  --section-prate: 75;
}

.hdt-main-product .hdt-container {
  padding-left: 0;
  padding-right: 0;
}

/* Product Title */
.hdt-product__title {
  position: relative;
  padding-left: 0;
}

.product-title-text {
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  font-family: var(--font-body-family);
}

/* Afterpay Message */
.afterpay-container {
  margin: 15px 0;
  padding: 0;
}

.afterpay-message {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.afterpay-amount {
  font-weight: 600;
}

.afterpay-icon {
  width: 98px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Info List Base Styles */
.info-list-container {
  margin: 16px 0 0;
  border-radius: 8px;
  padding-bottom: 0.5rem;
  overflow: hidden;
}

.info-list-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8); /* 修改为白色边框 */
  padding-bottom: 0rem; /* 添加底部内边距确保边框和内容有适当间距 */
}

.info-list-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

/* Left Text Styles */
.info-left {
  font-size: 1.4rem;
  color: #774E1F;
  flex: 1;
  text-align: left; /* 确保左对齐 */
  padding-right: 10px; /* 添加右侧内边距，防止文本太靠近右侧内容 */
}

/* Right Content Styles */
.info-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-right span {
  font-size: 1.3rem;
  color: #774E1F;
  font-weight: 400;
}

/* Icon Styles */
.info-icon {
  display: flex;
  align-items: center;
  color: #774E1F;
  width: 16px;
  height: 16px;
}

/* Hover Effects */
.info-list-content:hover {
  opacity: 0.9;
}

/* Responsive Styles */
@media screen and (max-width: 767px) {
  .info-list-content {
    padding: 12px;
  }
  
  .info-left,
  .info-right span {
    font-size: 1.3rem;
  }
  
  .info-icon svg {
    width: 14px;
    height: 14px;
  }
}

  
  /* Modal Base Styles */
  .info-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .info-modal.active {
    display: block;
  }
  
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .info-modal.active .modal-overlay {
    opacity: 1;
  }
  
  /* Desktop Modal Styles (>= 768px) */
  @media screen and (min-width: 768px) {
    /* All modals use center style on desktop */
    .modal-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.95);
      max-width: 90%;
      width: 600px;
      background: #fff;
      border-radius: 8px;
      z-index: 1001;
      opacity: 0;
      transition: all 0.3s ease;
    }
  
    .info-modal.active .modal-container {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
  
  /* Mobile Modal Styles (< 768px) */
  @media screen and (max-width: 767px) {
    /* Half modal on mobile */
    .info-modal--half .modal-container {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      border-radius: 16px 16px 0 0;
      transform: translateY(100%);
      transition: transform 0.3s ease-out;
      z-index: 1001;
    }
  
    .info-modal--half.active .modal-container {
      transform: translateY(0);
    }
  
    /* Center modal on mobile */
    .info-modal--center .modal-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.95);
      width: 90%;
      background: #fff;
      border-radius: 8px;
      z-index: 1001;
      opacity: 0;
      transition: all 0.3s ease;
    }
  
    .info-modal--center.active .modal-container {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }
  
  /* Modal Content Styles */
  .modal-content {
    position: relative;
    padding: 0px;
   /* 移除最大高度和滚动 */
  /* max-height: 90vh; */
  /* overflow-y: auto; */
}
  
  .modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transition: all 0.3s ease;
  }
  
  .modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
  }
  


/* Bundle Selector */
.bundle-selector {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.bundle-header {
  margin-bottom: 16px;
}

.bundle-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Responsive Styles */
@media screen and (min-width: 1150px) {
  .product-title-text {
    font-size: 24px;
    padding-top: 70px;
  }
}

@media screen and (max-width: 1149px) {
  .product-title-text {
    font-size: 20px;
    padding-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .afterpay-message {
    font-size: 13px;
  }
  
  .afterpay-icon {
    width: 88px;
  }
  
  .info-list-content {
    padding: 12px 16px;
  }
}
/* Option Guide Button Styles */
.hdt-product-form__label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 改为space-between布局 */
  width: 100%; /* 确保容器占满宽度 */
}
/* Fieldset Layout */
.hdt-product-form__input {
  position: relative;
  width: 100%;
}

/* Legend Container */
.hdt-product-form__label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Option Guide Button Styles */
.hdt-product-form__label-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左侧选项名称和值的容器 */
.hdt-product-form__label-wrap > span {
  flex: 1; /* 占用剩余空间 */
  min-width: 0; /* 防止文本溢出 */
  display: inline-flex;
  align-items: center;
}

.hdt-option-underline {
  font-size: 1.3rem;
  color: #000000;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-left: auto; /* 自动左边距确保靠右 */
  white-space: nowrap; /* 防止文本换行 */
}

.hdt-option-underline:hover {
  opacity: 0.8;
}

/* Responsive Modal Styles */
.hdt-modal-responsive .modal-container {
  position: fixed;
  background: #fff;
  z-index: 1001;
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
  .hdt-modal-responsive .modal-container {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }

  .hdt-modal-responsive.active .modal-container {
    transform: translateY(0);
  }
}

/* Desktop Styles */
@media screen and (min-width: 768px) {
  .hdt-modal-responsive .modal-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    max-width: 90%;
    width: 600px;
    border-radius: 8px;
    opacity: 0;
  }

  .hdt-modal-responsive.active .modal-container {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}



/* Main Product Styles - Shipping Time Component
============================================================================== */

/* CSS Variables
============================================================================== */
:root {
  /* Spacing Variables */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1.4rem;     /* 16px */
  
  /* Colors */
  --shipping-time-bg: #FFF8F3;
  --text-subdued: #666666;
  --text-primary: #000000;
  --primary-hover: #333333;
  --bg-primary: #FFFFFF;
  --border-color: #E5E5E5;
  --bg-hover: #F5F5F5;
  
  /* Border Radius */
  --radius-md: 8px;
  
  /* Font Weights */
  --font-medium: 500;
  
  /* Font Sizes */ 
  --text-xs: 1.2rem; 
  --text-sm: 1.2rem; 
  
  /* Z-index */
  --z-dropdown: 100;
  
  /* Shadows */
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  
  /* Scrollbar Colors */
  --scrollbar-thumb: #999999;
  --scrollbar-track: #f1f1f1;
}

/* Container Styles
============================================================================== */
.hdt-product__shipping-time {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--shipping-time-bg);
}

.hdt-product__shipping-time-wrapper {
  position: relative;
}

/* Shipping To Section
============================================================================== */
.hdt-product__shipping-time-to {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-3);
}

.hdt-product__shipping-time-label {
  color: var(--text-subdued);
  font-size: var(--text-sm);
}

/* Country Selector
============================================================================== */
.hdt-product__shipping-time-selector {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0;
  background: none;
  border: none;
  font-weight: var(--font-medium);
  cursor: pointer;
  text-decoration: underline;
  color: var(--text-primary);
}

.hdt-product__shipping-time-selector:hover {
  color: var(--primary-hover);
}

.hdt-product__shipping-time-selector .icon-chevron {
  transition: transform 0.2s ease;
}

.hdt-product__shipping-time-selector[aria-expanded="true"] .icon-chevron {
  transform: rotate(180deg);
}

/* Shipping Estimate
============================================================================== */
.hdt-product__shipping-time-estimate {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-4);
}

.hdt-product__shipping-time-row {
  display: flex;
  align-items: center;
  gap: var(--space-4); 
  flex: 1;
}

.hdt-product__shipping-time-method {
  font-weight: var(--font-medium);
  color: var(--text-primary);
  white-space: nowrap;
}

.hdt-product__shipping-time-delivery {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-2);
}

.hdt-product__shipping-time-estimate-label {
  color: var(--text-subdued);
  font-size: var(--text-xs);
  white-space: nowrap;
}

.hdt-product__shipping-time-dates {
  font-weight: var(--font-medium);
  color: var(--text-primary);
  white-space: nowrap;
}

/* Country List Dropdown
============================================================================== */
.hdt-product__shipping-time-countries {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--z-dropdown);
  margin-top: var(--space-2);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
}

.hdt-product__shipping-time-countries-inner {
  display: flex;
  flex-direction: column;
}

.hdt-product__shipping-time-country-option {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  transition: background-color 0.2s ease;
}

.hdt-product__shipping-time-country-option:hover {
  background: var(--bg-hover);
}

/* Custom Scrollbar
============================================================================== */
.hdt-product__shipping-time-countries {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

.hdt-product__shipping-time-countries::-webkit-scrollbar {
  width: 6px;
}

.hdt-product__shipping-time-countries::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

.hdt-product__shipping-time-countries::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border-radius: 6px;
}

/* Responsive Styles
============================================================================== */
@media screen and (max-width: 767px) {
  .hdt-product__shipping-time {
    margin: var(--space-3) 0;
    padding: var(--space-3);
  }
  
  .hdt-product__shipping-time-estimate {
    gap: var(--space-2);
  }

 
  /* 移动端保持相同间距 */
  .hdt-product__shipping-time-row {
    gap: var(--space-4); /* 保持1rem间距 */
  }

  .hdt-product__shipping-time-delivery {
    gap: var(--space-2);
  }
}

/* 动态支付按钮文案修改
============================================================================== */
.shopify-payment-button__more-options {
  font-size: 0 !important;
}

.shopify-payment-button__more-options:after {
  content: "Buy with PayPal & More options";
  font-size: 14px;
  color: #FF6A00 !important; /* 添加橙色文字 */
  font-weight: 700 !important; /* 添加文字加粗 */
}



/* 优惠模块 info list样式
============================================================================== */


  /* 基础弹窗样式 */
  .special-offers-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* 弹窗内容样式 */
  .popup-content {
    background-color: #fff;
    padding: 40px 24px;
    border-radius: 12px;
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
    margin: 0 21px;
  }
  
  
  .popup-title {
    font-size: 32px;
    color: #4a2504;
    margin-bottom: 32px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  /* 优惠码样式 */
  .discount-code {
    background-color: #ffeef3;
    padding: 24px;
    margin: 24px auto;
    border-radius: 12px;
    max-width: 300px;
    transition: all 0.3s ease;
  }
  
  .code-text {
    font-size: 28px;
    color: #4a2504;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .code-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
  }
  
  .offer-text {
    margin: 24px 0;
    color: #4a2504;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
  }
  
  /* 按钮样式 */
  .copy-code-button {
    width: 100%;
    max-width: 300px;
    padding: 16px;
    background-color: #4a2504;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
  }
  
  .copy-code-button:hover {
    background-color: #613205;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 37, 4, 0.2);
  }
  
  .copy-code-button:active {
    transform: translateY(0);
    box-shadow: none;
  }
  
  /* 响应式样式 */
  @media (max-width: 768px) {
 
  
    .popup-title {
      font-size: 24px;
      margin-bottom: 24px;
    }
  
    .discount-code {
      padding: 20px;
      margin: 20px auto;
    }
  
    .code-text {
      font-size: 24px;
    }
  
    .offer-text {
      font-size: 16px;
      margin: 20px 0;
    }
  
    .copy-code-button {
      padding: 12px;
      font-size: 14px;
      height: 45px;
    }
  }
  
  
  
  /* 动画效果 */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }




  /* 会员弹窗 info list样式
============================================================================== */

/* 基础弹窗样式 */
.member-signup-popup {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
}

/* 弹窗内容样式 */
.popup-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
padding: 40px 24px;
animation: fadeIn 0.3s ease-out;
}

.popup-title {
font-size: 32px;
color: #4a2504;
margin-bottom: 32px;
font-weight: 600;
line-height: 1.2;
text-align: center;
}

/* Benefits 部分样式 */
.benefits-container {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.benefit-item {
flex: 1;
min-width: 120px;
text-align: center;
padding: 12px;
transition: all 0.3s ease;
}

.benefit-item:hover {
transform: translateY(-2px);
}

.benefit-icon {
width: 48px;
height: 48px;
margin: 0 auto 12px;
}

.benefit-item h3 {
font-size: 16px;
color: #4a2504;
margin-bottom: 4px;
font-weight: 600;
}

.benefit-item p {
font-size: 14px;
color: #666;
margin-bottom: 8px;
}

.benefit-label {
display: inline-block;
padding: 4px 12px;
background-color: #ffeef3;
color: #4a2504;
border-radius: 12px;
font-size: 12px;
font-weight: 500;
}

/* 注册信息样式 */
.signup-message {
font-size: 18px;
color: #4a2504;
margin-bottom: 24px;
font-weight: 500;
line-height: 1.4;
text-align: center;
}

/* 表单样式 */
.signup-form {
max-width: 400px;
margin: 0 auto;
}

.form__message {
color: #dc3545;
padding: 12px;
margin-bottom: 20px;
background-color: #fff;
border: 1px solid #dc3545;
border-radius: 8px;
font-size: 14px;
display: none;
text-align: left;
}

.form-fields {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 16px;
text-align: left;
}

.form-field {
position: relative;
margin-bottom: 8px;
}

.form-field input {
width: 100%;
padding: 16px;
border: 1px solid #ddd;
border-radius: 12px;
font-size: 16px;
background-color: white;
transition: all 0.3s ease;
height: 50px;
}

.form-field input:focus {
outline: none;
border-color: #4a2504;
box-shadow: 0 0 0 2px rgba(74, 37, 4, 0.1);
}

.form-field label {
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
color: #666;
transition: all 0.3s ease;
pointer-events: none;
background: #fff;
padding: 0 4px;
font-size: 16px;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label {
top: 0;
transform: translateY(-50%) scale(0.85);
color: #4a2504;
}

.field-error {
color: #dc3545;
font-size: 12px;
margin-top: 4px;
display: none;
text-align: left;
padding-left: 16px;
}

.form-field input.error {
border-color: #dc3545;
}

.form-field input.error ~ .field-error {
display: block;
}

/* 按钮样式 */
.signup-button {
width: 100%;
padding: 16px;
background-color: #4a2504;
color: white;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
height: 50px;
margin-bottom: 16px;
}

.signup-button:hover {
background-color: #613205;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(74, 37, 4, 0.2);
}

.signup-button:active {
transform: translateY(0);
box-shadow: none;
}

/* 服务条款样式 */
.custom-register-terms {
margin-top: 16px;
font-size: 14px;
color: #666;
text-align: center;
line-height: 1.5;
}

.custom-register-terms a {
color: #4a2504;
text-decoration: underline;
transition: color 0.3s ease;
}

.custom-register-terms a:hover {
color: #613205;
}

/* 加载状态 */
.signup-button.loading {
position: relative;
color: transparent;
pointer-events: none;
}

.signup-button.loading::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
margin: -10px 0 0 -10px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 0.8s infinite linear;
}

/* 响应式样式 */
@media (max-width: 768px) {
.popup-content {
  padding: 24px 16px;
}

.popup-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.benefits-container {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: 8px;
  margin: 0 -16px 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.benefits-container::-webkit-scrollbar {
  display: none;
}

.benefit-item {
  flex: 0 0 auto;
  width: calc(33.33% - 6px);
  min-width: 100px;
  padding: 8px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.benefit-item h3 {
  font-size: 14px;
}

.benefit-item p {
  font-size: 12px;
}

.signup-message {
  font-size: 16px;
  margin-bottom: 20px;
}

.form-field input {
  padding: 12px;
  font-size: 14px;
  height: 45px;
}

.form-field label {
  font-size: 14px;
}

.signup-button {
  padding: 12px;
  font-size: 14px;
  height: 45px;
}

.custom-register-terms {
  font-size: 12px;
}
}


/* 动画效果 */
@keyframes fadeIn {
from {
  opacity: 0;
  transform: translateY(-20px);
}
to {
  opacity: 1;
  transform: translateY(0);
}
}

@keyframes spin {
to {
  transform: rotate(360deg);
}
}


/* Product Guide Modal Content Styles
============================================================================== */

/* Guide Info Section
============================================================================== */
.guide-info {
  text-align: center;
  margin-bottom: 30px;
}

.guide-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 600px;
}

/* Lace Color Showcase Section
============================================================================== */
.lace-color-showcase {
  margin-bottom: 40px;
}

/* Section Title */
.section-title {
  font-size: 24px;
  font-weight: 500;
  color: #4a2504;
  text-align: center;
  margin-bottom: 30px;
}

/* Color Compare Image */
.color-compare-image {
  margin-bottom: 40px;
}

.full-width-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Lace Color Details */
.lace-color-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Individual Color Item */
.lace-color-item {
  border-radius: 8px;
  overflow: hidden;
}

.color-title {
  font-size: 18px;
  font-weight: 500;
  color: #4a2504;
  margin-bottom: 20px;
}

/* Sample Images Container */
.color-sample-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.sample-image {
  flex: 1;
  max-width: calc(50% - 10px);
  width: 100%;
  height: auto;
  border-radius: 8px;
  flex: 2;
  max-width: calc(50% - 10px);
  width: 110px;
  height: auto;
  border-radius: 8px;
}
/* Suitable Skin Section */
.suitable-skin-title {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}

/* Suitable Faces Grid */
.suitable-faces {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.suitable-faces img {
  width: calc(25% - 12px);
  min-width: calc(25% - 12px);
  border-radius: 8px;
  aspect-ratio: 1;
  object-fit: cover;
}

/* Scrollbar Styles */
.suitable-faces::-webkit-scrollbar {
  height: 4px;
}

.suitable-faces::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.suitable-faces::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

/* Responsive Styles
============================================================================== */
@media screen and (max-width: 768px) {
  .guide-info p {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .color-compare-image {
    margin-bottom: 30px;
  }
  
  .lace-color-details {
    gap: 30px;
  }
  
  .color-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .color-sample-container {
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .suitable-skin-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .suitable-faces {
    gap: 10px;
  }
  
  .suitable-faces img {
    width: calc(25% - 8px);
    min-width: calc(25% - 8px);
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .color-sample-container {
    gap: 10px;
  }
  
  .sample-image {
    max-width: calc(50% - 5px);
  }
  
  .suitable-faces {
    gap: 8px;
  }
}

/* Lace Color Swatch Styles */
.variant-input {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.variant-input label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.swatch-image {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ddd;
}

.swatch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 选中状态 */
.variant-input input:checked + label .swatch-image {
  border: 2px solid #000;
}

.swatch-color-fallback {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
}



/* After Code价格样式 */
.after-code-price {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.after-code-label {
  font-size: 14px;
  color: #333333;
}

.after-code-amount {
  font-size: 16px;
  font-weight: 600;
  color: #FF0000;








