/* Inter Tight Font Family */
@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/inter-tight/InterTight-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-tight/InterTight-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-tight/InterTight-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-tight/InterTight-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter-tight/InterTight-700.ttf') format('truetype');
}

/* Clash Grotesk Font Family */
@font-face {
    font-family: 'Clash Grotesk';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/clash-grotesk/ClashGrotesk-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Clash Grotesk';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/clash-grotesk/ClashGrotesk-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Clash Grotesk';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/clash-grotesk/ClashGrotesk-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Clash Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/clash-grotesk/ClashGrotesk-700.woff2') format('woff2');
}
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Optima', 'Arial', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.woocommerce .star-rating::before{
    display: none!important;
}
  /* ===== MINIMAL LOADING SCREEN ===== */
  .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #f2f2df;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  }

  .loading-screen.hidden {
      opacity: 0;
      visibility: hidden;
  }

  .loading-logo {
      position: relative;
      width: 100px;
      height: 100px;
      opacity: 0;
      animation: logoFadeIn 0.8s ease-out 0.2s forwards;
  }

  .loading-logo::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg,
              transparent 40%,
              rgba(255, 255, 255, 0.4) 50%,
              transparent 60%);
      animation: sleekShimmer 2s ease-in-out infinite;
      border-radius: 12px;
      z-index: 2;
  }

  .loading-logo svg {
      position: relative;
      z-index: 3;
      width: 100%;
      height: 100%;
      fill: #a0a090;
      animation: sleekPulse 2.5s ease-in-out infinite;
      filter: drop-shadow(0 0 6px rgba(160, 160, 144, 0.2));
  }

  @keyframes logoFadeIn {
      0% {
          opacity: 0;
          transform: scale(0.8) translateY(10px);
      }

      100% {
          opacity: 1;
          transform: scale(1) translateY(0);
      }
  }

  @keyframes sleekShimmer {
      0% {
          transform: translateX(-100%);
          opacity: 0;
      }

      50% {
          opacity: 1;
      }

      100% {
          transform: translateX(100%);
          opacity: 0;
      }
  }

  @keyframes sleekPulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1);
      }

      50% {
          opacity: 0.7;
          transform: scale(1.03);
      }
  }

  .glass-nav {
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: linear-gradient(135deg,
              rgba(242, 242, 223, 0.15) 0%,
              rgba(255, 255, 255, 0.1) 25%,
              rgba(242, 242, 223, 0.1) 50%,
              rgba(255, 255, 255, 0.05) 75%,
              rgba(242, 242, 223, 0.2) 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      margin-top: 12px;
      padding: 12px 20px;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.3),
          inset 0 -1px 0 rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      width: calc(100% - 24px);
      left: 50%;
      transform: translateX(-50%);
      position: relative;
      overflow: hidden;
  }

  .glass-nav::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.2),
              transparent);
      z-index: 1;
  }

  .glass-nav::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 20%,
              rgba(255, 255, 255, 0.1) 0%,
              transparent 50%),
          radial-gradient(circle at 70% 80%,
              rgba(242, 242, 223, 0.1) 0%,
              transparent 50%);
      border-radius: 20px;
      z-index: 0;
  }

  .glass-nav>* {
      position: relative;
      z-index: 2;
  }

  @keyframes shimmer {
      0% {
          left: -100%;
      }

      100% {
          left: 100%;
      }
  }
.royal-glass-btn {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgb(192 172 152 / 75%) 25%, rgba(111, 108, 95, 0.7) 50%, rgb(192 172 152 / 75%) 75%, rgba(111, 108, 95, 0.8) 100%);
    color: #1c1b1c !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.royal-glass-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.royal-glass-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(242, 242, 223, 0.15) 0%, transparent 60%);
    border-radius: 25px;
    z-index: 0;
}

/* Hover */
.royal-glass-btn:hover {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgba(192, 172, 152, 0.562) 25%, rgba(111, 108, 95, 0.7) 50%, rgba(192, 172, 152, 0.562) 75%, rgba(111, 108, 95, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(111, 108, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.02);
}

.cky-notice-group .cky-notice-btn-wrapper .cky-btn-reject {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgb(192 172 152 / 75%) 25%, rgba(111, 108, 95, 0.7) 50%, rgb(192 172 152 / 75%) 75%, rgba(111, 108, 95, 0.8) 100%) !important;
    color: #1c1b1c !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 25px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    padding: 12px 24px;
    display: inline-block !important;
    cursor: pointer !important;
    transition: 0.3s !important;
}

/* Accept */
.cky-notice-group .cky-notice-btn-wrapper .cky-btn-accept {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgb(192 172 152 / 75%) 25%, rgba(111, 108, 95, 0.7) 50%, rgb(192 172 152 / 75%) 75%, rgba(111, 108, 95, 0.8) 100%) !important;
    color: #1c1b1c !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 25px !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
    padding: 12px 24px;
    display: inline-block !important;
    cursor: pointer !important;
    transition: 0.3s !important;

}

/* انیمیشن */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}
.wp-block-button__link {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgb(192 172 152 / 75%) 25%, rgba(111, 108, 95, 0.7) 50%, rgb(192 172 152 / 75%) 75%, rgba(111, 108, 95, 0.8) 100%);
    color: #1c1b1c !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    padding: 12px 24px;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.wp-block-button__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.wp-block-button__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(242, 242, 223, 0.15) 0%, transparent 60%);
    border-radius: 25px;
    z-index: 0;
}

/* Hover */
.wp-block-button__link:hover {
    background: linear-gradient(135deg, rgba(111, 108, 95, 0.9) 0%, rgba(192, 172, 152, 0.562) 25%, rgba(111, 108, 95, 0.7) 50%, rgba(192, 172, 152, 0.562) 75%, rgba(111, 108, 95, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 50px rgba(111, 108, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) scale(1.02);
}
  .glass-nav-scrolled {
      background: linear-gradient(135deg,
              rgba(242, 242, 223, 0.25) 0%,
              rgba(255, 255, 255, 0.15) 25%,
              rgba(242, 242, 223, 0.2) 50%,
              rgba(255, 255, 255, 0.1) 75%,
              rgba(242, 242, 223, 0.3) 100%);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow:
          0 12px 40px rgba(0, 0, 0, 0.15),
          inset 0 1px 0 rgba(255, 255, 255, 0.5),
          inset 0 -1px 0 rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      transform: translateX(-50%) translateY(-2px);
  }

  .glass-nav:hover {
      background: linear-gradient(135deg,
              rgba(242, 242, 223, 0.2) 0%,
              rgba(255, 255, 255, 0.15) 25%,
              rgba(242, 242, 223, 0.15) 50%,
              rgba(255, 255, 255, 0.1) 75%,
              rgba(242, 242, 223, 0.25) 100%);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow:
          0 10px 35px rgba(0, 0, 0, 0.12),
          inset 0 1px 0 rgba(255, 255, 255, 0.4),
          inset 0 -1px 0 rgba(0, 0, 0, 0.08);
      transform: translateX(-50%) translateY(-1px);
  }

  .hero-height {
      min-height: 100vh;
      max-height: 100vh;
      overflow: hidden;
      position: relative;
  }

  .pearl-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -3;
      object-fit: cover;
      transition: transform 0.3s ease-out;
  }

  .hero-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: -1;
      object-fit: cover;
      transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .hero-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(242, 242, 223, 0.05);
      z-index: -2;
      pointer-events: none;
      transition: opacity 0.5s ease-out;
      opacity: 0;
  }

  .glass-btn {
      border-radius: 25px;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      background: linear-gradient(135deg,
              rgba(242, 242, 223, 0.8) 0%,
              rgba(255, 255, 255, 0.3) 25%,
              rgba(242, 242, 223, 0.6) 50%,
              rgba(255, 255, 255, 0.2) 75%,
              rgba(242, 242, 223, 0.7) 100%);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #1c1b1c !important;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.4),
          inset 0 -1px 0 rgba(0, 0, 0, 0.05);
      background-size: 200% 200%;
  }

  .glass-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.3),
              transparent);
      animation: shimmer 3s ease-in-out infinite;
      z-index: 1;
  }

  .glass-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 30%,
              rgba(255, 255, 255, 0.2) 0%,
              transparent 60%),
          radial-gradient(circle at 70% 70%,
              rgba(242, 242, 223, 0.15) 0%,
              transparent 60%);
      border-radius: 25px;
      z-index: 0;
  }

  .glass-btn>*,
  .glass-btn-primary>* {
      position: relative;
      z-index: 2;
  }

  .glass-btn:hover {
      background: linear-gradient(135deg,
              rgba(242, 242, 223, 0.9) 0%,
              rgba(255, 255, 255, 0.4) 25%,
              rgba(242, 242, 223, 0.7) 50%,
              rgba(255, 255, 255, 0.3) 75%,
              rgba(242, 242, 223, 0.8) 100%);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow:
          0 12px 40px rgba(0, 0, 0, 0.15),
          inset 0 1px 0 rgba(255, 255, 255, 0.6),
          inset 0 -1px 0 rgba(0, 0, 0, 0.08);
      transform: translateY(-3px) scale(1.02);
  }

  .glass-btn:active {
      transform: translateY(-1px) scale(0.98);
      transition: all 0.1s ease;
  }

  .glass-btn-primary {
      background: linear-gradient(135deg,
              rgba(111, 108, 95, 0.9) 0%,
              rgba(255, 255, 255, 0.2) 25%,
              rgba(111, 108, 95, 0.7) 50%,
              rgba(255, 255, 255, 0.15) 75%,
              rgba(111, 108, 95, 0.8) 100%);
      color: #1c1b1c !important;
      font-weight: 700;
      text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.4);
      position: relative;
      overflow: hidden;
  }

  .glass-btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
              transparent,
              rgba(255, 255, 255, 0.4),
              transparent);
      animation: shimmer 3s ease-in-out infinite;
      z-index: 1;
  }

  .glass-btn-primary:hover {
      background: linear-gradient(135deg,
              rgba(111, 108, 95, 1) 0%,
              rgba(255, 255, 255, 0.3) 25%,
              rgba(111, 108, 95, 0.8) 50%,
              rgba(255, 255, 255, 0.25) 75%,
              rgba(111, 108, 95, 0.9) 100%);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow:
          0 15px 50px rgba(111, 108, 95, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 0.7),
          inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  }


  @keyframes wave {
      0% {
          background-position: 0% 0%;
          opacity: 0.6;
      }

      50% {
          background-position: 100% 100%;
          opacity: 1;
      }

      100% {
          background-position: 0% 0%;
          opacity: 0.6;
      }
  }

  /* Enhanced Comparison Section Styles */
  .comparison-card {
      position: relative;
      background: linear-gradient(135deg,
              rgba(255, 255, 255, 0.2) 0%,
              rgba(255, 255, 255, 0.05) 15%,
              rgba(242, 242, 223, 0.15) 30%,
              rgba(255, 255, 255, 0.1) 45%,
              rgba(242, 242, 223, 0.12) 60%,
              rgba(255, 255, 255, 0.08) 75%,
              rgba(242, 242, 223, 0.18) 90%,
              rgba(255, 255, 255, 0.15) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 24px;
      padding: 2rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      background-size: 400% 400%;
      animation: holographicShimmer 8s ease-in-out infinite;
  }

  .comparison-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg,
              transparent 0%,
              rgba(255, 255, 255, 0.15) 20%,
              transparent 40%,
              rgba(255, 255, 255, 0.25) 60%,
              transparent 80%,
              rgba(255, 255, 255, 0.1) 100%);
      background-size: 300% 300%;
      animation: pearlWave 6s ease-in-out infinite;
      z-index: 1;
  }

  .comparison-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 25% 25%,
              rgba(255, 255, 255, 0.3) 0%,
              transparent 60%),
          radial-gradient(circle at 75% 75%,
              rgba(242, 242, 223, 0.25) 0%,
              transparent 60%),
          radial-gradient(circle at 50% 10%,
              rgba(255, 255, 255, 0.2) 0%,
              transparent 50%),
          radial-gradient(circle at 10% 90%,
              rgba(242, 242, 223, 0.2) 0%,
              transparent 50%);
      border-radius: 24px;
      z-index: 0;
  }

  .comparison-card>* {
      position: relative;
      z-index: 2;
  }

  .comparison-card:hover {
      background: linear-gradient(135deg,
              rgba(255, 255, 255, 0.3) 0%,
              rgba(255, 255, 255, 0.1) 15%,
              rgba(242, 242, 223, 0.25) 30%,
              rgba(255, 255, 255, 0.15) 45%,
              rgba(242, 242, 223, 0.2) 60%,
              rgba(255, 255, 255, 0.12) 75%,
              rgba(242, 242, 223, 0.28) 90%,
              rgba(255, 255, 255, 0.25) 100%);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.8),
          inset 0 -1px 0 rgba(0, 0, 0, 0.12);
      transform: translateY(-4px) scale(1.02);
  }

  .comparison-card-featured {
      background: linear-gradient(135deg,
              rgba(178, 186, 171, 0.3) 0%,
              rgba(255, 255, 255, 0.2) 15%,
              rgba(178, 186, 171, 0.25) 30%,
              rgba(255, 255, 255, 0.15) 45%,
              rgba(178, 186, 171, 0.2) 60%,
              rgba(255, 255, 255, 0.12) 75%,
              rgba(178, 186, 171, 0.35) 90%,
              rgba(255, 255, 255, 0.25) 100%);
      border: 2px solid rgba(178, 186, 171, 0.6);
      box-shadow:
          0 25px 70px rgba(178, 186, 171, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.9),
          inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  }

  .comparison-card-featured:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow:
          0 30px 80px rgba(178, 186, 171, 0.4),
          inset 0 1px 0 rgba(255, 255, 255, 1),
          inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  }

  .comparison-header {
      text-align: center;
      margin-bottom: 2rem;
  }

  .comparison-badge {
      display: inline-block;
      background: linear-gradient(135deg, #a0a090, #8a8a7a);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 1rem;
      box-shadow: 0 4px 15px rgba(178, 186, 171, 0.4);
  }

  .comparison-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.5rem;
  }

  .comparison-subtitle {
      font-size: 0.9rem;
      color: #666;
      font-weight: 500;
  }

  .comparison-features {
      margin-bottom: 2rem;
  }

  .feature-item {
      display: flex;
      align-items: center;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .feature-item:last-child {
      border-bottom: none;
  }

  .feature-item i {
      font-size: 1.25rem;
      margin-right: 0.75rem;
      flex-shrink: 0;
  }

  .feature-item span {
      font-size: 0.9rem;
      font-weight: 500;
  }

  .feature-excellent {
      color: #67a983;
  }

  .feature-excellent i {
      color: #67a983;
  }

  .feature-partial {
      color: #f59e0b;
  }

  .feature-partial i {
      color: #f59e0b;
  }

  .feature-poor {
      color: #ef4444;
  }

  .feature-poor i {
      color: #ef4444;
  }

  .comparison-score {
      text-align: center;
  }

  .score-circle {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
      border: 2px solid rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
  }

  .score-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1;
  }

  .score-label {
      font-size: 0.7rem;
      color: #666;
      font-weight: 500;
      margin-top: 0.25rem;
  }

  .comparison-cta {
      background: linear-gradient(135deg,
              rgba(255, 255, 255, 0.2) 0%,
              rgba(255, 255, 255, 0.05) 50%,
              rgba(255, 255, 255, 0.15) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 24px;
      padding: 3rem 2rem;
      box-shadow:
          0 12px 40px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  @media (max-width: 768px) {
      .comparison-card {
          padding: 1.5rem;
      }

      .comparison-title {
          font-size: 1.25rem;
      }

      .score-circle {
          width: 60px;
          height: 60px;
      }

      .score-number {
          font-size: 1.25rem;
      }
  }

  /* Trust Indicators Styling */
  .trust-indicators {
      background: linear-gradient(135deg,
              rgba(255, 255, 255, 0.1) 0%,
              rgba(255, 255, 255, 0.05) 50%,
              rgba(255, 255, 255, 0.1) 100%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 1rem 2rem;
      box-shadow:
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .trust-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
  }

  .trust-indicator:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
  }

  .trust-indicator i {
      font-size: 1.1rem;
  }

  .trust-indicator span {
      font-weight: 600;
      color: #1a1a1a;
  }

  /* H1 Font Styling with Optima */
  h1 {
      font-family: 'Optima', 'Arial', sans-serif !important;
      font-weight: 600;
      letter-spacing: -0.02em;
  }

  .font-heading {
      font-family: 'Optima', 'Arial', sans-serif !important;
  }

  /* NAD+ Highlight Styling */
  .nad-highlight {
      background: #a0a090;
      padding: 0.1em 0.3em;
      border-radius: 4px;
      font-weight: 600;
      color: #f2f2df;
      text-shadow: none;
      border: 1px solid #a0a090;
      box-shadow: 0 1px 3px rgba(160, 160, 144, 0.3);
  }

  .mother-of-pearl {
      background: linear-gradient(125deg,
              rgba(255, 255, 255, 0.1),
              rgba(178, 186, 171, 0.2),
              rgba(245, 242, 235, 0.3),
              rgba(242, 242, 223, 0.2));
      background-size: 200% 200%;
      animation: pearlShimmer 8s ease-in-out infinite;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
  }

  @media (max-width: 768px) {
      .hero-height {
          min-height: 90vh;
      }

      .glass-nav {
       
          padding: 6px 12px;
          width: calc(100% - 16px);
      }

      .hero-background {
          object-fit: cover;
          object-position: center;
      }

      .glass-btn,
      .glass-btn-primary {
          padding: 12px 24px;
          font-size: 0.9rem;
      }

      .trust-indicators {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }

      .product-image {
          max-height: 300px;
          object-fit: cover;
      }

      /* Mobile touch improvements */
      .glass-btn,
      .glass-btn-primary {
          min-height: 44px;
          /* iOS touch target minimum */
          touch-action: manipulation;
      }

      .purchase-box-thumbnail {
          min-height: 44px;
          min-width: 44px;
      }

      /* Mobile text sizing */
      h1 {
          font-size: 2.5rem;
          line-height: 1.2;
      }

      h2 {
          font-size: 2rem;
          line-height: 1.3;
      }

      /* Mobile spacing */
      .py-20 {
          padding-top: 3rem;
          padding-bottom: 3rem;
      }

      .mb-16 {
          margin-bottom: 2rem;
      }

      /* Mobile chat widget positioning */
      #chatWidget {
          bottom: 20px;
          right: 20px;
      }
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  }

  .newsletter-input {
      border: 1px solid #a0a090;
      background: transparent;
      padding: 0.75rem 1rem;
      width: 100%;
      transition: all 0.3s ease;
      border-radius: 25px;
  }

  .newsletter-input:focus {
      outline: none;
      border-color: #1a1a1a;
  }

  .footer-glass {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(245, 242, 235, 0.8);
      border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Product Introduction Section */
  .product-intro-section {
      height: 400vh;
      position: relative;

  }

  .product-content-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
  }

  .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: stretch;
      width: 100%;
      height: 500px;
  }
  /* inja */
.product-images {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
    
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    border-radius: inherit;
    
}

.product-image.active {
    opacity: 1;
    transform: translateX(0);
    object-fit: cover;
   
}
  /* tainja */
  .product-text {
      padding: 3rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      height: 100%;
      /* استفاده از کل ارتفاع والد */
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      /* برای مدیریت بهتر محتوا */
  }

  .product-description {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
      position: absolute;
      /* برای جلوگیری از تغییر اندازه در هنگام تغییر اسلاید */
      width: 80%;
  }

  .product-description.active {
      opacity: 1;
      transform: translateY(0);
  }

  .progress-bar {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 200px;
      background: rgba(178, 186, 171, 0.3);
      border-radius: 2px;
  }

  .progress-fill {
      width: 100%;
      background: #a0a090;
      border-radius: 2px;
      transition: height 0.3s ease;
  }

  .md\:px-12 {
      width: 100%;
  }

  @media (max-width: 768px) {
      .product-layout {
          grid-template-columns: 1fr;
          gap: 1rem;
          height: auto;
      }

      .product-images {
          height: 300px;
      }

      .product-text {
          padding: 1rem;
          height: auto;
      }

  

      .product-description {
          position: static;
      }
  }
 
  .menu-custom li {
      list-style: none;
  }
  .menu-item ::marker{
    display: none;
  }


  .menu-custom li a {
      font-size: 0.875rem;
      /* text-sm */
      font-weight: 500;
      /* font-medium */
      transition: color 0.3s;
  }

  .menu-custom li a:hover {
      color: var(--accent);
     
  }
.menu-custom li {
    list-style: none;
   
}


.menu-custom li::marker {
    content: none;
}

.menu-item {
    list-style: none;

}

.menu-item::marker {
    content: none;
   
}


/* Menu Item */
.glass-nav .md\:flex li {
    margin-right: -8px !important;
}
a {
text-decoration: none !important;
}