/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
    :root {
      --purple: #8B26FF;
      --purple-dark: #5A00D4;
      --purple-mid: #A044FF;
      --purple-glow: rgba(139, 38, 255, 0.45);
      --accent: #FFFFFF;
      --accent-glow: rgba(255, 255, 255, 0.25);
      --red: #FF3366;
      --gold: #FFD700;
      --green: #00FF88;

      --bg: #030308;
      --bg2: #080812;
      --bg3: #0D0D1B;
      --surface: #0F0F22;
      --surface2: #16162F;
      --surface3: #1C1C3A;

      --text: #FFFFFF;
      --text2: #B0B0D0;
      --text3: #6A6A8A;
      --border: rgba(139, 38, 255, 0.25);
      --border2: rgba(255, 255, 255, 0.08);

      --radius: 16px;
      --radius-sm: 10px;
      --radius-xs: 7px;
      --transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ============================================================
   RESET & BASE
   ============================================================ */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      border: none;
      background: none;
      font-family: inherit;
    }

    input,
    textarea {
      font-family: inherit;
    }

    img {
      max-width: 100%;
    }

    ::-webkit-scrollbar {
      width: 3px;
    }

    ::-webkit-scrollbar-track {
      background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--purple);
      border-radius: 2px;
    }



    /* ============================================================
   UTILITY
   ============================================================ */
    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .5;
    }

    /* ============================================================
   NAVBAR
   ============================================================ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 68px;
      display: flex;
      align-items: center;
      background: #000000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: height var(--transition), background var(--transition);
    }

    #navbar.scrolled {
      height: 58px;
      background: #000000;
    }

    #navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      width: 100%;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: .65rem;
    }

    .nav-brand-box {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 17px;
      color: #fff;
      box-shadow: 0 0 18px var(--purple-glow);
      flex-shrink: 0;
    }

    .nav-brand-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 25px;
      letter-spacing: 2px;
    }

    .nav-brand-text em {
      font-style: normal;
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 1.8rem;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--text2);
      position: relative;
      transition: color var(--transition);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .btn-cart-nav {
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xs);
      padding: 8px 14px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1px;
      color: var(--text);
      transition: all var(--transition);
    }

    .btn-cart-nav:hover {
      border-color: var(--purple);
      background: rgba(123, 47, 190, .15);
    }

    .cart-badge {
      position: absolute;
      top: -7px;
      right: -7px;
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ============================================================
   BUTTONS
   ============================================================ */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--purple);
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all var(--transition);
      box-shadow: 0 6px 28px rgba(123, 47, 190, .4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent);
      opacity: 0;
      transition: opacity var(--transition);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(123, 47, 190, .6);
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--border2);
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all var(--transition);
    }

    .btn-ghost:hover {
      border-color: var(--purple);
      color: var(--purple-mid);
      background: rgba(123, 47, 190, .07);
    }

    /* ============================================================
   SECTION HEADERS
   ============================================================ */
    .section-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      flex: 0 0 36px;
      height: 1px;
      background: var(--accent);
      opacity: .45;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 6vw, 76px);
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: .85rem;
    }

    .section-title em {
      font-style: normal;
      color: var(--accent);
    }

    .section-sub {
      color: var(--text2);
      font-size: 15px;
      max-width: 480px;
      margin: 0 auto;
    }

    /* ============================================================
   HERO
   ============================================================ */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 8rem 0 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-gradient {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 90% 55% at 50% 20%, rgba(139, 38, 255, .15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 85% 75%, rgba(255, 255, 255, .03) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(139, 38, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 38, 255, .05) 1px, transparent 1px);
      background-size: 56px 56px;
      -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 10%, transparent 75%);
              mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 10%, transparent 75%);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.4rem;
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--accent);
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(70px, 9vw, 120px);
      line-height: .88;
      letter-spacing: 2px;
      margin-bottom: 1.6rem;
    }

    .hero-title .t1 {
      display: inline;
      color: var(--text);
      margin-right: 15px;
    }

    .hero-title .t2 {
      display: inline;
      color: #FFFFFF;
    }

    .hero-title .t3 {
      display: block;
      color: var(--accent);
      text-shadow: 0 0 48px var(--accent-glow);
    }

    .hero-desc {
      font-size: 15.5px;
      color: var(--text2);
      line-height: 1.75;
      max-width: 430px;
      margin-bottom: 2.4rem;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 38px;
      letter-spacing: 1px;
      color: var(--text);
      line-height: 1;
    }

    .stat-num sup {
      font-size: 20px;
      color: var(--accent);
    }

    .stat-label {
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      width: 320px;
      height: 400px;
      background: linear-gradient(150deg, var(--surface) 0%, var(--bg3) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(123, 47, 190, .18);
      animation: heroFloat 6s ease-in-out infinite;
    }

    @keyframes authSpin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes heroFloat {

      0%,
      100% {
        transform: translateY(0) rotate(.3deg);
      }

      50% {
        transform: translateY(-18px) rotate(-.3deg);
      }
    }

    .hero-card-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(123, 47, 190, .65) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      filter: blur(28px);
      pointer-events: none;
    }

    .hero-card-emoji {
      font-size: 90px;
      filter: drop-shadow(0 0 18px rgba(0, 245, 255, .25));
      position: relative;
      z-index: 1;
    }

    .hero-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 2px;
      color: var(--text);
      z-index: 1;
    }

    .hero-card-price {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: var(--accent);
      z-index: 1;
    }

    .hero-card-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      background: var(--red);
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
      z-index: 2;
    }

    .float-tag {
      position: absolute;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 9px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--text2);
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
    }

    .float-tag.t1 {
      top: 18px;
      left: -40px;
      animation: ft1 4.5s ease-in-out infinite;
    }

    .float-tag.t2 {
      bottom: 90px;
      left: -55px;
      animation: ft1 4.5s ease-in-out infinite .8s;
    }

    .float-tag.t3 {
      bottom: 30px;
      right: -20px;
      animation: ft1 4.5s ease-in-out infinite 1.6s;
    }

    @keyframes ft1 {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-9px)
      }
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .dot-g {
      background: var(--green);
      box-shadow: 0 0 7px var(--green);
    }

    .dot-c {
      background: var(--accent);
      box-shadow: 0 0 7px var(--accent);
    }

    .dot-p {
      background: var(--purple-mid);
      box-shadow: 0 0 7px var(--purple-mid);
    }

    /* ============================================================
   TICKER
   ============================================================ */
    .ticker {
      overflow: hidden;
      background: var(--purple-dark);
      padding: 9px 0;
      border: 1px solid rgba(255, 255, 255, .1);
      border-left: 0;
      border-right: 0;
    }

    .ticker-track {
      display: flex;
      width: -moz-max-content;
      width: max-content;
      animation: tick 28s linear infinite;
    }

    .ticker-item {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .9);
      padding: 0 2.2rem;
      display: flex;
      align-items: center;
      gap: .9rem;
    }

    .ticker-item::after {
      content: '⚡';
      font-size: 11px;
    }

    @keyframes tick {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ============================================================
   AI SECTION
   ============================================================ */
    #ai {
      padding: 7rem 0;
      background: linear-gradient(to bottom, var(--bg2), var(--bg3));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .ai-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .ai-left-head {
      margin-bottom: 2.5rem;
    }

    .ai-left-head .section-eyebrow {
      justify-content: flex-start;
    }

    .ai-left-head .section-eyebrow::before {
      display: none;
    }

    .ai-left-head .section-eyebrow::after {
      display: none;
    }

    .ai-left-head .section-title {
      text-align: left;
    }

    .ai-cards {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .ai-card {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.4rem;
      transition: all var(--transition);
    }

    .ai-card:hover {
      border-color: var(--purple);
      transform: translateX(8px);
      background: rgba(123, 47, 190, .08);
    }

    .ai-card-icon {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--purple), var(--purple-dark));
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 22px rgba(123, 47, 190, .32);
    }

    .ai-card-icon svg {
      width: 24px;
      height: 24px;
      stroke: #fff;
      stroke-width: 2;
      fill: none;
    }

    .benefit-icon svg {
      width: 42px;
      height: 42px;
      stroke: var(--purple-mid);
      stroke-width: 1.5;
      fill: none;
    }

    .social-link svg {
      width: 18px;
      height: 18px;
      stroke: var(--text2);
      stroke-width: 2;
      fill: none;
      transition: all var(--transition);
    }

    .social-link:hover svg {
      stroke: #fff;
      filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    }

    .orb-core svg {
      width: 100px;
      height: 100px;
      stroke: #fff;
      stroke-width: 1.2;
      fill: none;
    }

    .ai-card-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 17px;
      letter-spacing: .5px;
      color: var(--text);
      margin-bottom: 4px;
    }

    .ai-card-desc {
      font-size: 13.5px;
      color: var(--text2);
      line-height: 1.55;
    }

    .ai-orb-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      height: 420px;
    }

    .orb-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(123, 47, 190, .28);
      animation: orbRing 3.5s ease-out infinite;
    }

    .orb-ring:nth-child(1) {
      width: 300px;
      height: 300px;
      animation-delay: 0s;
    }

    .orb-ring:nth-child(2) {
      width: 380px;
      height: 380px;
      animation-delay: 1.1s;
    }

    .orb-ring:nth-child(3) {
      width: 460px;
      height: 460px;
      animation-delay: 2.2s;
    }

    @keyframes orbRing {
      0% {
        opacity: .6
      }

      100% {
        opacity: 0
      }
    }

    .orb-core {
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, var(--purple-mid), var(--purple-dark));
      box-shadow: 0 0 80px rgba(123, 47, 190, .65), inset 0 0 60px rgba(0, 0, 0, .45);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 68px;
      position: relative;
      z-index: 2;
      animation: orbPulse 3s ease-in-out infinite;
    }

    @keyframes orbPulse {

      0%,
      100% {
        transform: scale(1)
      }

      50% {
        transform: scale(1.06)
      }
    }

    /* ============================================================
   PRODUCTS
   ============================================================ */
    #products {
      padding: 7rem 0;
    }

    .products-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .filter-bar {
      display: flex;
      gap: .65rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 3rem;
    }

    .filter-btn {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xs);
      padding: 8px 20px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text2);
      transition: all var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--purple);
      border-color: var(--purple);
      color: #fff;
      box-shadow: 0 4px 18px rgba(123, 47, 190, .42);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      justify-content: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all var(--transition);
      position: relative;
      max-width: 380px;
      margin: 0 auto;
      width: 100%;
    }

    .product-card:hover {
      transform: translateY(-9px);
      border-color: var(--purple);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 44px rgba(123, 47, 190, .2);
    }

    .product-thumb {
      height: 340px;
      background: linear-gradient(145deg, var(--bg3) 0%, var(--bg2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .product-thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 65%, rgba(139, 38, 255, .25) 0%, transparent 70%);
    }

    .product-emoji {
      font-size: 78px;
      position: relative;
      z-index: 1;
      transition: transform var(--transition);
      filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .5));
    }

    .product-card:hover .product-emoji {
      transform: scale(1.12) translateY(-5px);
    }

    .product-img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain;
      padding: 1.8rem;
      position: relative;
      z-index: 1;
      transition: transform var(--transition);
      filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
    }

    .product-card:hover .product-img {
      transform: scale(1.08);
    }

    .prod-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
    }

    .b-best {
      background: var(--gold);
      color: #1a1200;
    }

    .b-top {
      background: var(--accent);
      color: var(--bg);
    }

    .b-new {
      background: var(--red);
      color: #fff;
    }

    .b-sale {
      background: #FF6B35;
      color: #fff;
    }

    .wish-btn {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 32px;
      height: 32px;
      background: rgba(7, 7, 15, .6);
      border: 1px solid var(--border2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: all var(--transition);
      color: var(--text2);
    }

    .wish-btn:hover {
      background: rgba(255, 51, 102, .2);
      border-color: var(--red);
      color: var(--red);
    }

    .wish-btn.active {
      background: rgba(255, 51, 102, .2);
      border-color: var(--red);
      color: var(--red);
    }

    .product-body {
      padding: 1.4rem;
    }

    .prod-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .3px;
      color: var(--text);
      margin-bottom: 2px;
    }

    .prod-tagline {
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .prod-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }

    .stars {
      color: var(--gold);
      font-size: 12px;
    }

    .rating-text {
      font-size: 12px;
      color: var(--text2);
    }

    .prod-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .price-now {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 29px;
      color: var(--text);
      letter-spacing: 1px;
      line-height: 1;
    }

    .price-now small {
      font-size: 16px;
      color: var(--text2);
    }

    .price-was {
      font-size: 13px;
      color: var(--text3);
      text-decoration: line-through;
    }

    .prod-flavors {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .flavor-tag {
      font-size: 10px;
      color: var(--text3);
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: 4px;
      padding: 3px 8px;
      letter-spacing: .8px;
    }

    .btn-add {
      width: 100%;
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
      border: none;
      border-radius: 12px;
      padding: 14px;
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(139, 38, 255, 0.2);
    }

    .btn-add:hover {
      box-shadow: 0 15px 30px rgba(139, 38, 255, 0.45);
      transform: translateY(-3px) scale(1.02);
    }

    .btn-add:active {
      transform: scale(.98);
    }

    /* ============================================================
   BENEFITS BAND
   ============================================================ */
    #benefits {
      padding: 5rem 0;
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .benefit-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      transition: all var(--transition);
    }

    .benefit-card:hover {
      border-color: var(--purple);
      transform: translateY(-5px);
    }

    .benefit-icon {
      font-size: 40px;
      margin-bottom: 1rem;
    }

    .benefit-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: .5px;
      color: var(--text);
      margin-bottom: 6px;
    }

    .benefit-desc {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.55;
    }

    /* ============================================================
   TESTIMONIALS
   ============================================================ */
    #testimonials {
      padding: 7rem 0;
      background: var(--bg3);
      border-top: 1px solid var(--border);
    }

    .testi-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .testi-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      transition: all var(--transition);
    }

    .testi-card:hover {
      border-color: rgba(123, 47, 190, .5);
      transform: translateY(-5px);
    }

    .testi-stars {
      color: var(--gold);
      font-size: 14px;
      margin-bottom: 1rem;
    }

    .testi-quote {
      font-size: 36px;
      color: var(--purple);
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: .85rem;
    }

    .testi-text {
      font-size: 14.5px;
      color: var(--text2);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--purple), var(--purple-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
    }

    .testi-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: var(--text);
    }

    .testi-role {
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* ============================================================
   NEWSLETTER
   ============================================================ */
    #newsletter {
      padding: 7rem 0;
      position: relative;
      overflow: hidden;
    }

    .newsletter-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(ellipse 65% 65% at 50% 50%, rgba(123, 47, 190, .13) 0%, transparent 70%);
    }

    .newsletter-inner {
      text-align: center;
      max-width: 580px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .nl-form {
      display: flex;
      gap: .75rem;
      margin-top: 2rem;
    }

    .nl-input {
      flex: 1;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 13px 18px;
      color: var(--text);
      font-size: 15px;
      outline: none;
      transition: border-color var(--transition);
    }

    .nl-input:focus {
      border-color: var(--purple);
    }

    .nl-input::-moz-placeholder {
      color: var(--text3);
    }

    .nl-input::placeholder {
      color: var(--text3);
    }

    /* ============================================================
   FOOTER
   ============================================================ */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 5rem 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3.5rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 34px;
      letter-spacing: 3px;
      margin-bottom: .85rem;
    }

    .footer-brand-name em {
      font-style: normal;
      color: var(--accent);
    }

    .footer-tagline {
      font-size: 14px;
      color: var(--text3);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .social-row {
      display: flex;
      gap: 9px;
    }

    .social-link {
      width: 37px;
      height: 37px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      transition: all var(--transition);
    }

    .social-link:hover {
      background: var(--purple);
      border-color: var(--purple);
    }

    .footer-col-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 1.4rem;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }

    .footer-col ul a {
      font-size: 14px;
      color: var(--text3);
      transition: color var(--transition);
    }

    .footer-col ul a:hover {
      color: var(--text);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 1.8rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-copy {
      font-size: 13px;
      color: var(--text3);
    }

    .footer-trust {
      display: flex;
      gap: 8px;
    }

    .trust-pill {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 4px 11px;
      font-size: 11px;
      color: var(--text3);
      letter-spacing: 1px;
    }

    /* ============================================================
   CART SIDEBAR
   ============================================================ */
    .cart-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, .72);
      backdrop-filter: blur(10px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-sidebar {
      position: fixed;
      top: 0;
      right: -460px;
      width: 440px;
      height: 100dvh;
      z-index: 2001;
      background: var(--bg3);
      border-left: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: right .38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @media(max-width:480px) {
      .cart-sidebar {
        width: 100vw;
        right: -100vw;
      }
      .cart-body {
        padding: 1rem;
      }
      .cart-item {
        padding: 0.75rem;
        gap: 0.6rem;
      }
      .ci-emoji {
        font-size: 28px;
      }
      .ci-name {
        font-size: 13px;
      }
      .cart-head {
        padding: 1rem 1rem;
      }
      .cart-head-title {
        font-size: 20px;
      }
      .cart-foot {
        padding: 1rem;
      }
      .cart-total-val {
        font-size: 22px;
      }
    }

    .cart-sidebar.open {
      right: 0;
    }

    .cart-head {
      padding: 1.4rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .cart-head-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 25px;
      letter-spacing: 2px;
    }

    .cart-close-btn {
      width: 35px;
      height: 35px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 16px;
      color: var(--text2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .cart-close-btn:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cart-empty-state {
      text-align: center;
      padding: 3rem 1rem;
    }

    .cart-empty-icon {
      font-size: 52px;
      margin-bottom: .75rem;
    }

    .cart-empty-text {
      color: var(--text3);
      font-size: 15px;
    }

    .cart-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1rem;
      display: flex;
      gap: .85rem;
      align-items: center;
    }

    .ci-emoji {
      font-size: 38px;
    }

    .ci-info {
      flex: 1;
    }

    .ci-name {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 15px;
    }

    .ci-price {
      font-size: 13px;
      color: var(--accent);
      font-weight: 600;
      margin-top: 1px;
    }

    .ci-qty-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 7px;
    }

    .qty-btn {
      width: 25px;
      height: 25px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .qty-btn:hover {
      background: var(--purple);
      border-color: var(--purple);
    }

    .qty-val {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      min-width: 22px;
      text-align: center;
    }

    .ci-remove {
      font-size: 16px;
      color: var(--text3);
      transition: color var(--transition);
    }

    .ci-remove:hover {
      color: var(--red);
    }

    .cart-foot {
      padding: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      font-family: 'Rajdhani', sans-serif;
    }

    .cart-total-label {
      font-size: 13px;
      color: var(--text2);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .cart-total-val {
      font-size: 26px;
      font-weight: 700;
    }

    /* ============================================================
   TOAST
   ============================================================ */
    #toast {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      z-index: 9999;
      background: var(--surface);
      border: 1px solid var(--purple);
      border-radius: 13px;
      padding: 13px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: .5px;
      box-shadow: 0 16px 44px rgba(0, 0, 0, .5);
      transform: translateX(-50%) translateY(120px);
      transition: transform .38s cubic-bezier(0.34, 1.56, 0.64, 1);
      white-space: nowrap;
    }

    #toast.show {
      transform: translateX(-50%) translateY(0);
    }

    /* ============================================================
   INVOICE/CHECKOUT PAGE
   ============================================================ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(0, 0, 0, .85);
      backdrop-filter: blur(8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3001;
      max-height: 90vh;
      overflow-y: auto;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem;
      width: 95%;
      max-width: 720px;
      box-shadow: 0 25px 64px rgba(123, 47, 190, .3);
      animation: slideIn .35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translate(-50%, -55%);
      }

      to {
        opacity: 1;
        transform: translate(-50%, -50%);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 28px;
      cursor: pointer;
      color: var(--text2);
      transition: color var(--transition);
    }

    .modal-close:hover {
      color: var(--red);
    }

    .modal-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      letter-spacing: 2px;
      margin-bottom: 1.5rem;
      color: var(--accent);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .5rem;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .form-input,
    .form-select {
      width: 100%;
      padding: 12px 16px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text);
      font-family: inherit;
      font-size: 15px;
      transition: all var(--transition);
    }

    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--purple);
      background: var(--surface3);
      box-shadow: 0 0 12px rgba(123, 47, 190, .25);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .invoice-item-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }

    .invoice-item-name {
      flex: 1;
      font-weight: 600;
      font-size: 15px;
    }

    .invoice-item-price {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      text-align: right;
      min-width: 100px;
    }

    .invoice-totals {
      background: var(--surface2);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }

    .invoice-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
      font-size: 15px;
    }

    .invoice-total-row:last-child {
      border-top: 2px solid var(--border);
      padding-top: 1rem;
      margin-bottom: 0;
      font-size: 18px;
      font-weight: 700;
    }

    .invoice-total-label {
      color: var(--text2);
    }

    .invoice-total-value {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
    }

    .payment-methods {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .payment-option {
      position: relative;
    }

    .payment-option input[type="radio"] {
      display: none;
    }

    .payment-option label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 1.5rem;
      background: var(--surface2);
      border: 2px solid var(--border);
      border-radius: 14px;
      cursor: pointer;
      transition: all var(--transition);
      text-align: center;
    }

    .payment-option input[type="radio"]:checked+label {
      border-color: var(--purple);
      background: rgba(123, 47, 190, .15);
      box-shadow: 0 0 20px rgba(123, 47, 190, .3);
    }

    .payment-icon {
      font-size: 32px;
    }

    .payment-label-text {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .5px;
    }

    .modal-actions {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .modal-actions button {
      flex: 1;
    }

    .btn-secondary {
      background: var(--surface2);
      color: var(--text);
      border: 1px solid var(--border);
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      transition: all var(--transition);
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: var(--purple);
      background: rgba(123, 47, 190, .15);
    }

    /* ============================================================
   ORDER CONFIRMATION PAGE
   ============================================================ */
    .order-success-box {
      text-align: center;
      margin-bottom: 2rem;
    }

    .order-success-icon {
      font-size: 64px;
      margin-bottom: 1rem;
      animation: bounce 1s ease-in-out infinite;
    }

    @keyframes bounce {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .order-success-text {
      font-size: 16px;
      color: var(--text2);
      margin-bottom: .5rem;
    }

    .order-id {
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 2px;
    }

    .confirmation-box {
      background: var(--surface2);
      border-left: 4px solid var(--green);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }

    .confirmation-label {
      font-size: 13px;
      color: var(--text2);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: .25rem;
    }

    .confirmation-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
    }

    .download-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--purple);
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all var(--transition);
      margin-right: 1rem;
    }

    .download-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(123, 47, 190, .4);
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      padding: 5px;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--text);
      transition: all var(--transition);
    }

    /* Side Drawer */
    .side-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: var(--bg2);
      border-left: 1px solid var(--border);
      z-index: 2000;
      padding: 80px 2rem 2rem;
      transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      box-shadow: -20px 0 60px rgba(0,0,0,0.8);
    }

    .side-drawer.open {
      right: 0;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(4px);
      z-index: 1999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .drawer-links a {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text);
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media(max-width:1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:640px) {
      .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .product-card {
        max-width: 100%;
      }
      .product-thumb {
        height: 260px;
      }
    }

    @media(max-width:860px) {
  .nav-links { display: none }
  .menu-toggle { display: flex }
  .nav-right .btn-primary { display: none }
  .payment-methods { grid-template-columns: 1fr }
  .form-row { grid-template-columns: 1fr }
  .modal-container { width: 90%; padding: 1.5rem }
  .modal-title { font-size: 24px }
  .user-menu { margin-right: 0.5rem }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3.5rem }
  .hero-eyebrow { justify-content: center }
  .hero-desc { margin: 0 auto 2.4rem auto }
  .hero-ctas { justify-content: center }
  .hero-stats { justify-content: center }
  .ai-inner { grid-template-columns: 1fr; text-align: center }
  .ai-left-head .section-eyebrow { justify-content: center }
  .ai-left-head .section-title { text-align: center }
  .ai-left-head .section-sub { margin: 0 auto; text-align: center }
  .ai-card { text-align: left }
  .products-grid,
      .benefits-grid,
      .testi-grid,
      .footer-grid { grid-template-columns: 1fr }
  .footer-grid { text-align: center }
  .social-row { justify-content: center }
  /* Product Detail Mobile Optimization */
      #product-detail-section { padding: 4rem 0 6rem 0 !important; background: radial-gradient(circle at top right, rgba(139, 38, 255, 0.04), transparent 40%); -webkit-font-smoothing: antialiased }
  .detail-grid { grid-template-columns: 1fr; gap: 2.5rem }
  .detail-breadcrumbs { text-align: left; margin-bottom: 1rem; font-size: 12px; padding: 0 0.5rem; color: var(--text3) }
  .detail-visual { position: relative; top: 0; display: block; margin: 0 -2rem }
  /* full-bleed banner effect — stretches beyond .container padding */
      .detail-img-card { height: 380px; border-radius: 0; border-left: none; border-right: none; background: linear-gradient(165deg, rgba(15,15,34,0.9) 0%, rgba(10,10,20,0.85) 100%); margin: 0 -2rem 0 -2rem; width: calc(100% + 4rem); display: block; overflow: hidden; position: relative; border: none }  .detail-img-card .product-img { width: auto; height: auto; max-width: 100%; max-height: 100%; -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: center center;
           object-position: center center; display: block; margin: 0 auto; transition: transform 450ms var(--transition); padding: 1.5rem }
  .detail-img-card .product-img:active,
      .detail-img-card .product-img:focus { transform: scale(1.02) }
  .detail-info { text-align: left; align-items: flex-start; padding: 0 0.6rem; gap: 0.6rem }
  #detailName { font-size: 34px !important; margin-bottom: 0.25rem !important; line-height: 1.06; letter-spacing: 0.3px }
  #detailTagline { font-size: 12px; margin-bottom: 0.9rem !important; color: var(--purple-mid) }
  #detailDescription { font-size: 15px; line-height: 1.65; margin-bottom: 1.2rem !important; color: var(--text2) }
  .detail-rating { margin-bottom: 0.8rem }
  .detail-price-box { width: 100%; padding: 1rem; background: linear-gradient(180deg, rgba(16,16,34,0.6), rgba(8,8,18,0.45)); backdrop-filter: blur(8px); border-radius: 12px; border: 1px solid rgba(139,38,255,0.08); margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 6px }
  .detail-price-now { font-size: 34px; font-family: 'Bebas Neue', sans-serif; color: var(--accent); text-shadow: 0 8px 30px rgba(139,38,255,0.18) }
  .detail-price-was { font-size: 14px; color: var(--text3); text-decoration: line-through; opacity: 0.9 }
  .config-row { margin-bottom: 1.25rem; width: 100% }
  .flavor-chips, .size-chips { gap: 10px; display: flex; flex-wrap: wrap }
  .chip-btn { padding: 10px 14px; font-size: 13px; border-radius: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.04); color: var(--text); transition: all 220ms ease }
  .chip-btn.active { background: linear-gradient(90deg, var(--purple), var(--purple-mid)); box-shadow: 0 8px 30px rgba(139,38,255,0.18); color: #fff; border-color: rgba(139,38,255,0.18) }
  .detail-qty-row { margin-bottom: 1rem }  .detail-img-card.is-creatine { height: 560px }
  @media(max-width:480px) { .detail-img-card.is-creatine { height: 420px } }
  .detail-name { font-size: 40px }
  .purchase-row { display: none }
  .detail-info .qty-selector { display: none }
  .specs-grid { grid-template-columns: 1fr }

  /* Sticky Bottom CTA Bar (Mobile Only) */
  #detailStickyBar {
    display: block !important;
  }
  .detail-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1400;
    background: linear-gradient(180deg, rgba(3,3,8,0.92), rgba(3,3,8,0.98));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(139,38,255,0.12);
    padding: 10px 1rem;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    animation: stickyBarIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes stickyBarIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .sticky-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
  .sticky-qty {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .sticky-qty .qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text2);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .sticky-qty .qty-btn:active {
    background: rgba(139,38,255,0.15);
    color: var(--purple-mid);
  }
  .sticky-qty .qty-val {
    width: 32px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
  }
  .sticky-actions {
    flex: 1;
    display: flex;
    gap: 8px;
  }
  .sticky-btn-cart {
    flex: 1;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .sticky-btn-cart:active {
    background: rgba(139,38,255,0.08);
    border-color: var(--purple-mid);
  }
  .sticky-btn-cart svg {
    stroke: currentColor;
  }
  .sticky-btn-buy {
    flex: 1.3;
    height: 44px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(139,38,255,0.35);
  }
  .sticky-btn-buy:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(139,38,255,0.25);
  }
  .sticky-btn-cart,
  .sticky-btn-buy {
    -webkit-tap-highlight-color: transparent;
  }
}

    /* ============================================================
   AUTH MODAL & ACCOUNT SECTION
   ============================================================ */
    .auth-toggle-row {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid var(--border);
      padding-bottom: 1rem;
    }

    .auth-toggle-btn {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 1px;
      color: var(--text3);
      cursor: pointer;
      transition: all var(--transition);
      position: relative;
    }

    .auth-toggle-btn.active {
      color: var(--purple-mid);
    }

    .auth-toggle-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1.1rem;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--purple-mid);
      border-radius: 3px 3px 0 0;
    }

    .user-menu {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .btn-user-nav {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text2);
      transition: all var(--transition);
    }

    .btn-user-nav:hover {
      border-color: var(--purple);
      color: var(--purple-mid);
      background: rgba(123, 47, 190, .1);
    }

    .btn-user-nav svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.5;
      fill: none;
      transition: all var(--transition);
    }

    .btn-user-nav:hover svg {
      stroke: var(--purple-mid);
      filter: drop-shadow(0 0 8px var(--purple-glow));
    }

    .account-tabs {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .account-tab-btn {
      padding: 8px 16px;
      border-radius: 8px;
      background: var(--surface2);
      border: 1px solid var(--border);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 13px;
      color: var(--text2);
      cursor: pointer;
    }

    .account-tab-btn.active {
      background: var(--purple);
      color: #fff;
      border-color: var(--purple);
    }

    .order-history-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .order-card {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.25rem;
      transition: all var(--transition);
    }

    .order-card:hover {
      border-color: var(--purple-mid);
    }

    .order-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 1rem;
    }

    .order-id-tag {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: var(--accent);
    }

    .order-date {
      font-size: 12px;
      color: var(--text3);
    }

    .order-status {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 5px;
    }

    .status-pending {
      background: rgba(255, 215, 0, 0.15);
      color: var(--gold);
    }

    .status-confirmed {
      background: rgba(0, 245, 255, 0.15);
      color: var(--accent);
    }

    .status-delivered {
      background: rgba(0, 255, 136, 0.15);
      color: var(--green);
    }

    .order-items-mini {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 5px;
    }

    .order-item-blob {
      width: 40px;
      height: 40px;
      background: var(--surface3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .order-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--border2);
    }

    .order-total {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      color: var(--text);
    }

    .profile-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .profile-stat-box {
      background: var(--surface2);
      padding: 1.25rem;
      border-radius: 14px;
      border: 1px solid var(--border);
    }

    .ps-label {
      font-size: 11px;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .ps-value {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--text);
    }

    

    /* Supplement facts and benefits cards styling */
    .supplement-facts {
      background: linear-gradient(180deg, rgba(15,15,34,0.6), rgba(10,10,20,0.55));
      border: 1px solid rgba(139,38,255,0.06);
      padding: 1rem;
      border-radius: 12px;
      color: var(--text2);
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }

    .supplement-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items: start;
    }

    .supplement-item {
      background: transparent;
      padding: 0.6rem 0.75rem;
      border-radius: 8px;
      border: 1px dashed rgba(255,255,255,0.03);
      font-size: 13px;
      color: var(--text2);
    }

    .benefits-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-top: 1rem;
    }

    .benefit-pill {
      background: var(--surface);
      border: 1px solid rgba(139,38,255,0.06);
      padding: 10px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
      color: var(--text2);
      font-size: 13px;
    }

    @media(max-width:480px) {
      .container {
        padding: 0 1rem;
      }
      .detail-img-card {
        height: 300px;
      }
      #detailName {
        font-size: 32px !important;
      }
      .detail-actions-row {
        grid-template-columns: 1fr;
      }
      .detail-price-now {
        font-size: 28px;
      }
      .tab-nav {
        gap: 1.5rem;
        border-bottom: 1px solid var(--border2);
      }
      .tab-btn {
        font-size: 11px;
        padding: 1rem 0;
        letter-spacing: 1.5px;
      }
      .tab-content {
        padding: 2rem 0;
      }
      .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      /* Auth modal mobile sizing */
      #authModal {
        max-width: 95vw;
        padding: 1.5rem 1rem;
      }
      .auth-toggle-btn {
        font-size: 14px;
      }
      .modal-container {
        padding: 1.5rem;
      }
      .modal-title {
        font-size: 24px;
      }
      /* Hero mobile */
      #hero {
        padding: 6rem 0 3rem;
        min-height: auto;
      }
      .hero-title {
        font-size: clamp(44px, 12vw, 70px);
      }
      .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .stat-num {
        font-size: 30px;
      }
      .hero-desc {
        font-size: 14px;
      }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-ghost {
        padding: 11px 20px;
        font-size: 12px;
      }
      .hero-inner {
        gap: 2rem;
      }
      /* Footers */
      footer {
        padding: 3rem 0 0;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }
      .footer-trust {
        flex-wrap: wrap;
        justify-content: center;
      }
      .footer-grid {
        gap: 2rem;
      }
      .footer-col-title {
        margin-bottom: 1rem;
      }
      .nl-form {
        flex-direction: column;
      }
      .nl-input {
        width: 100%;
      }
    }

    /* Extra small screens (375px and below) */
    @media(max-width:380px) {
      .container {
        padding: 0 0.75rem;
      }
      .hero-title {
        font-size: clamp(36px, 10vw, 44px);
      }
      .section-title {
        font-size: clamp(32px, 8vw, 42px);
      }
      .filter-btn {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 1.5px;
      }
      .product-thumb {
        height: 220px;
      }
      .product-body {
        padding: 1rem;
      }
      .prod-name {
        font-size: 16px;
      }
      .price-now {
        font-size: 24px;
      }
      .benefit-card {
        padding: 1.25rem;
      }
      .testi-card {
        padding: 1.25rem;
      }
      #testimonials,
      #products,
      #ai,
      #newsletter {
        padding: 4rem 0;
      }
      /* Cart full width on smallest screens */
      .cart-sidebar {
        width: 100vw;
        right: -100vw;
      }
      .modal-container {
        width: 98%;
        padding: 1.25rem;
        border-radius: 16px;
      }
      .payment-methods {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }
      .payment-option label {
        padding: 1rem;
        gap: 6px;
      }
      .payment-icon {
        font-size: 24px;
      }
      .qty-selector {
        width: 100%;
        justify-content: center;
      }
      .btn-add-main {
        height: 48px;
        font-size: 13px;
      }
      .purchase-row {
        flex-direction: column;
        gap: 0.75rem;
      }
      .detail-tab-btn {
        font-size: 11px;
        padding: 0.6rem 0;
      }
      .detail-tabs {
        margin-top: 2rem;
      }
      .tab-header {
        gap: 1.2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .tab-btn {
        white-space: nowrap;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    /* ============================================================
    PRODUCT DETAIL PAGE STYLES
    ============================================================ */
    .detail-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4.5rem;
      align-items: flex-start;
      margin-top: 2rem;
    }

    .detail-visual {
      position: sticky;
      top: 100px;
    }

    .detail-img-card {
      background: linear-gradient(165deg, var(--surface) 0%, var(--bg3) 100%);
      border: 1px solid var(--border);
      border-radius: 40px;
      height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(139, 38, 255, 0.15),
        inset 0 0 60px rgba(139, 38, 255, 0.05);
    }

    .detail-img-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(139, 38, 255, 0.15), transparent 70%);
      pointer-events: none;
    }

    .detail-img-card .product-img {
      max-height: 85%;
      max-width: 80%;
      -o-object-fit: contain;
         object-fit: contain;
      z-index: 2;
      filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .detail-img-card:hover .product-img {
      transform: scale(1.08) rotate(-3deg);
      filter: drop-shadow(0 40px 80px rgba(139, 38, 255, 0.3));
    }

    .detail-img-card.is-creatine {
      border-radius: 30px;
      height: 680px;
    }

    .detail-img-card.is-creatine .product-img-large {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
         object-fit: contain;
      padding: 2rem;
      transition: transform 0.8s ease;
    }

    .detail-img-card.is-creatine:hover .product-img-large {
      transform: scale(1.05);
    }

    .detail-img-card.is-creatine::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(3,3,8,0.4) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }

    .detail-visual-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 38, 255, 0.4) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      filter: blur(60px);
      pointer-events: none;
      z-index: 1;
      opacity: 0.6;
    }

    .detail-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .detail-breadcrumbs {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text3);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .detail-rating {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .detail-rating .stars {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 2px;
    }

    .detail-rating .rating-text {
      font-size: 14px;
      color: var(--text2);
      font-weight: 500;
    }

    .detail-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(40px, 5vw, 64px);
      line-height: 0.95;
      letter-spacing: 1.5px;
      color: var(--text);
    }

    .detail-tagline {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--purple-mid);
    }

    .detail-price-box {
      background: linear-gradient(145deg, var(--surface2) 0%, var(--bg3) 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .detail-price-now {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: var(--text);
      line-height: 1;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .detail-price-was {
      font-size: 18px;
      color: var(--text3);
      text-decoration: line-through;
      font-weight: 400;
    }

    .detail-save-badge {
      display: inline-block;
      background: rgba(0, 255, 136, 0.1);
      color: var(--green);
      padding: 4px 12px;
      border-radius: 6px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 10px;
    }

    .config-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .config-title {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text);
    }

    .chip-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .chip-btn {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 20px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 14px;
      color: var(--text2);
      cursor: pointer;
      transition: all var(--transition);
    }

    .chip-btn:hover {
      border-color: var(--purple-mid);
      color: var(--text);
    }

    .chip-btn.active {
      background: var(--purple);
      border-color: var(--purple);
      color: #fff;
      box-shadow: 0 0 20px var(--purple-glow);
    }

    .purchase-row {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      margin-top: 1rem;
    }

    .qty-selector {
      display: flex;
      align-items: center;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }

    .qty-btn {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--text2);
      cursor: pointer;
      transition: all var(--transition);
    }

    .qty-btn:hover {
      background: var(--surface2);
      color: var(--text);
    }

    .qty-val {
      width: 40px;
      text-align: center;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 16px;
    }

    .btn-add-main {
      flex: 1;
      height: 54px;
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
      color: #fff;
      border: none;
      border-radius: 14px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 3px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: all var(--transition);
      box-shadow: 0 10px 30px rgba(139, 38, 255, 0.4);
    }

    .btn-add-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(139, 38, 255, 0.6);
    }

    /* Tabs */
    .detail-tabs {
      margin-top: 3rem;
    }

    .tab-header {
      display: flex;
      gap: 2.5rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 2rem;
    }

    .tab-btn {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text3);
      padding-bottom: 1rem;
      cursor: pointer;
      position: relative;
      transition: color var(--transition);
    }

    .tab-btn:hover, .tab-btn.active {
      color: var(--purple-mid);
    }

    .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--purple-mid);
      border-radius: 3px 3px 0 0;
    }

    .tab-content {
      display: none;
      animation: fadeIn 0.4s ease;
    }

    .tab-content.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .spec-item {
      background: var(--surface2);
      border: 1px solid var(--border2);
      border-radius: 12px;
      padding: 1.25rem;
    }

    .spec-label {
      font-size: 11px;
      color: var(--text3);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .spec-val {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
    }

    /* Mobile Overrides (Consolidated) */

    /* Hide sticky bar on desktop (shown in mobile breakpoint) */
    #detailStickyBar { display: none; }
    