/* ===== RESET & BASE ===== */
*, *::before, *::after {box-sizing: border-box;margin: 0;padding: 0;}
html {scroll-behavior: smooth;-webkit-text-size-adjust: 100%;overflow-x: clip;}
body {font-family: 'DM Sans', sans-serif;color: #e0e0e6;line-height: 1.6;overflow-x: clip;}
a {color: inherit;text-decoration: none;}
img {max-width: 100%;height: auto;display: block;}
ul,ol {list-style: none;}
button {cursor: pointer;font-family: inherit;border: none;background: none;}
input {font-family: inherit;}

/* ===== UTILITY ===== */
.container {max-width: 1200px;margin: 0 auto;padding: 0 24px;}

/* ===== GRADIENT HELPERS ===== */
.gradient-text {background: #0f172a;-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;}
.gradient-btn {background: linear-gradient(135deg, #3b82f6, #06b6d4);color: #fff;border: none;border-radius: 12px;font-weight: 700;cursor: pointer;transition: transform 0.2s, box-shadow 0.2s;}
.gradient-btn:hover {transform: translateY(-2px);box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);}

/* ===== GLASS ===== */
.glass {background: rgb(192 174 174 / 15%);border: 1px solid rgba(255, 255, 255, 0.08);backdrop-filter: blur(20px);-webkit-backdrop-filter: blur(20px);}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {opacity: 0;transform: translateY(40px);transition: opacity 0.7s ease, transform 0.7s ease;}
.reveal.is-visible {opacity: 1;transform: translateY(0);}



/* ── Buttons ── */
.btn {display: inline-flex;align-items: center;justify-content: center;padding: 12px 28px;border-radius: 12px;font-size: .9rem;font-weight: 600;cursor: pointer;transition: all .3s;border: none;text-decoration: none;gap: 8px;}
.btn-primary {background: linear-gradient(135deg, #3b82f6, #8b5cf6);color: #fff;padding: .625rem 1.25rem;font-size: .875rem !important;position: relative;}
.btn-primary:hover {transform: translateY(-2px);box-shadow: 0 8px 30px rgba(59, 130, 246, .3);}


/* ===== HERO ===== */
.hero {min-height: 100vh;display: flex;align-items: flex-start;background: #fff;position: relative;overflow-x: clip;overflow-y: visible;padding-top: 72px;}
.hero::before {content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 800px;height: 800px;background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);pointer-events: none;}
.hero .container {position: relative;z-index: 1;width: 100%;}
.hero-grid {display: grid;grid-template-columns: 1fr 1fr;gap: 60px;align-items: start;padding: 60px 0;}
.hero-text {order: 1;}
.hero-visual {order: 2;position: sticky;top: 88px;align-self: start;}
.hero-title {font-size: 2.5rem;font-weight: 900;line-height: 1.1;color: #0f172a;margin-bottom: 20px;}
.hero-subtitle {font-size: 16px;color: #475569;max-width: 480px;margin-bottom: 28px;line-height: 1.7;}
.product-info__features {list-style: none;padding: 0;margin: 0 0 2rem;}
.product-info__features li {display: flex;align-items: center;gap: 0.75rem;color: #334155;margin-bottom: 0.5rem;}
.product-info__features li::before {content: "";flex-shrink: 0;width: 1.25rem;height: 1.25rem;background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310b981' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;}
.hero-price {font-size: 2.5rem;font-weight: 900;}
.hero-actions {display: flex;align-items: center;gap: 16px;margin-bottom: 24px;flex-wrap: wrap;}
.qty-selector {display: flex;align-items: center;gap: 0;background: rgba(255, 255, 255, 0.06);border: 1px solid #cbd5e1;border-radius: 12px;overflow: hidden;}
.qty-btn {width: 2.5rem;height: 2.5rem;display: flex;align-items: center;justify-content: center;font-size: 1.2rem;color: #334155;background: #f8fafc;transition: background 0.2s;}
.qty-btn:hover {background: #e2e8f0;}
.qty-value {width: 40px;text-align: center;font-size: 1rem;font-weight: 700;color: #0f172a;}
.hero-atc {padding: 16px 40px;font-size: 1.05rem;}
.hero-rating {display: flex;align-items: center;gap: 8px;}
.stars-gold {color: #f59e0b;font-size: 1.1rem;letter-spacing: 2px;}
.rating-text {font-size: 0.9rem;color: #2563eb;}
.hero-disclaimer {font-size: 0.82rem;color: #64748b;}
.tagline {font-size: .95rem;color: #10b981;margin-bottom: 20px;}

/* Hero image */
.hero-img-wrap {display: flex;flex-direction: column;align-items: center;}
.hero-img-main {width: 100%;max-width: 460px;border-radius: 20px;animation: heroFloat 4s ease-in-out infinite;}
@keyframes heroFloat {
    0%,100% {transform: translateY(0);}
    50% {transform: translateY(-12px);}
}
@media (max-width: 1024px) {
    .hero-title {font-size: 2.8rem;}
    .hero-price {font-size: 2rem;}
}
@media (max-width: 768px) {
    .nav-links {display: none;}
    .menu-toggle {display: block;}
    .mobile-menu {display: block;}
    .hero-grid {grid-template-columns: 1fr;gap: 40px;padding: 40px 0;}
    .hero-text {order: 2;text-align: center;}
    .hero-visual {order: 1;position: static;top: auto;}
    .hero-subtitle {margin-left: auto;margin-right: auto;}
    .hero-actions {justify-content: center;}
    .hero-rating {justify-content: center;}
    .hero-disclaimer {text-align: center;}
    .hero-title {font-size: 2.2rem;}
}
@media (max-width: 640px) {
    .hero-title {font-size: 1.85rem;}
    .hero-price {font-size: 1.75rem;}
    .hero-atc {padding: 14px 28px;font-size: 0.95rem;}
}

/* ===== TRUST BAR / BENEFITS ===== */
.trust-bar {background: #fff;border-top: 1px solid rgba(255, 255, 255, 0.06);border-bottom: 1px solid rgba(255, 255, 255, 0.06);padding: 20px 0;}
@media (min-width: 768px) {
    .benefits-grid {display: grid;grid-template-columns: repeat(4, 1fr);gap: 1rem;}
}
.benefit-card {display: flex;align-items: center;gap: 0.75rem;background: #f8fafc;border-radius: 1rem;padding: 0.75rem;}
.benefit-card:hover {border: 1px solid #e2e8f0;}
.benefit-card__icon {width: 2.5rem;height: 2.5rem;flex-shrink: 0;display: flex;align-items: center;justify-content: center;border-radius: 0.75rem;color: #2563eb;}
.benefit-card__icon svg {width: 1.25rem;height: 1.25rem;}
.benefit-card__title {font-size: 0.875rem;font-weight: 600;color: #0f172a;margin: 0 0 0.125rem;}
.benefit-card__sub {font-size: 0.75rem;color: #64748b;margin: 0;}

/* ===== SPECS + BOX ===== */
.specs-section {padding: 80px 0;}
.specs-grid {display: grid;grid-template-columns: 1fr 1fr;gap: 32px;}
.spec-card {border-radius: 20px;padding: 40px;}
.spec-card h3 {font-size: 1.35rem;font-weight: 800;color: #0f172a;margin-bottom: 28px;}
.spec-row {display: flex;justify-content: space-between;padding: 12px 0;border-bottom: 1px solid rgb(84 80 80 / 24%);font-size: 0.92rem;}
.spec-row:last-child {border-bottom: none;}
.spec-label {color: #64748b;}
.spec-value {color: #0f172a;font-weight: 600;}
.box-list li {padding: 12px 0;border-bottom: 1px solid rgba(255, 255, 255, 0.06);font-size: 0.92rem;color: #0f172a;display: flex;align-items: center;gap: 12px;}
.box-list li:last-child {border-bottom: none;}
.box-list li::before {content: '';width: 8px;height: 8px;background: #3b82f6;border-radius: 50%;flex-shrink: 0;}
@media (max-width: 768px) {
    .specs-grid {grid-template-columns: 1fr;}
    .spec-card {padding: 28px;}
}

/* ===== REASONS GRID ===== */
.reasons-section {padding: 20px 0;}
.reasons-section .section-heading {text-align: center;font-size: 2.5rem;font-weight: 900;color: #0f172a;margin-bottom: 60px;}
.reasons-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;}
.reason-card {border-radius: 20px;padding: 36px 28px;text-align: center;transition: transform 0.3s, border-color 0.3s;border: 1px solid rgba(59, 130, 246, 0.3);background: transparent;}
.reason-card:hover {transform: translateY(-4px);border-color: rgba(59, 130, 246, 0.3);box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .5);}
.reason-num {font-size: 2.5rem;font-weight: 900;display: block;margin-bottom: 16px;}
.reason-text {font-size: 0.95rem;color: #334155;line-height: 1.6;}
@media (max-width: 768px) {
    .reasons-grid {grid-template-columns: repeat(2, 1fr);}
    .reasons-section .section-heading {font-size: 1.8rem;}
}
@media (max-width: 640px) {
    .reasons-grid {grid-template-columns: 1fr;}
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {position: fixed;bottom: 0;left: 0;right: 0;z-index: 998;background: rgba(10, 10, 15, 0.85);border-top: 1px solid rgba(255, 255, 255, 0.08);backdrop-filter: blur(24px);-webkit-backdrop-filter: blur(24px);padding: 14px 0;transform: translateY(100%);transition: transform 0.35s ease;}
.sticky-bar.is-visible {transform: translateY(0);}
.sticky-bar .container {display: flex;align-items: center;justify-content: space-between;    min-width: 0;}
.sticky-info {display: flex;align-items: center;gap: 16px;}
.sticky-name {font-size: 0.95rem;font-weight: 700;color: #fff;}
.sticky-price {font-size: 1.1rem;font-weight: 800;background: linear-gradient(135deg, #3b82f6, #8b5cf6);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;}
.sticky-atc {padding: 12px 32px;font-size: 0.9rem;}
@media (max-width: 640px) {
  .sticky-bar { padding: 10px 0; }
  .sticky-bar .container {
      width: 100%;
      max-width: 100%;
      gap: 10px;
      padding: 0 12px;
      flex-wrap: nowrap;
  }
  .sticky-info {
      flex: 0 1 auto;
      min-width: 0;
      gap: 8px;
      justify-content: flex-start;
      overflow: hidden;
  }
  .sticky-name { display: none; }
  .sticky-price {
      font-size: 1rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }
  #sticky-add-to-cart-form {
      flex: 1 1 auto;
      display: flex !important;
      margin: 0 !important;
      min-width: 0;
      max-width: 100%;
  }
  .sticky-atc {
      flex: 1 1 auto;
      width: 70%;
      max-width: 70%;
      padding: 12px 14px;
      font-size: 0.9rem;
      white-space: nowrap;
      min-width: 0;
      margin-left: auto;
  }
}

/* ===== RELATED PRODUCTS ===== */
.related-section {padding: 80px 0;border-top: 1px solid rgba(255, 255, 255, 0.04);}
.related-section .section-heading {text-align: center;font-size: 2rem;font-weight: 800;color: #0f172a;margin-bottom: 48px;}
.related-grid {display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;}
.related-card {border-radius: 20px;overflow: hidden;transition: transform 0.3s, border-color 0.3s;border: 1px solid rgba(59, 130, 246, 0.3);}
.related-card:hover {transform: translateY(-4px);border-color: rgba(59, 130, 246, 0.3);}
.related-card-img {aspect-ratio: 1;overflow: hidden;background: rgba(255, 255, 255, 0.02);}
.related-card-img img {width: 100%;height: 100%;object-fit: cover;transition: transform 0.4s;}
.related-card:hover .related-card-img img {transform: scale(1.05);}
.related-card-body {padding: 20px;}
.related-card-title {font-size: 1rem;font-weight: 700;color: #0f172a;margin-bottom: 6px;}
.related-card-rating {font-size: 0.82rem;color: #2563eb;margin-bottom: 8px;}
.related-card-rating .stars-sm {color: #f59e0b;}
.related-card-price {font-size: 1.25rem;font-weight: 800;color: #0f172a;}
@media (max-width: 768px) {
    .related-grid {grid-template-columns: 1fr;max-width: 380px;margin: 0 auto;}
}

/* ===== CTA ===== */
.cta-section {padding: 100px 0;text-align: center;background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.05));}
.cta-section h2 {font-size: 2.5rem;font-weight: 900;color: #000;margin-bottom: 16px;}
.cta-section p {font-size: 1.05rem;color: #475569;margin-bottom: 36px;}
.cta-checkout {display: inline-block;padding: 18px 48px;font-size: 1.05rem;border-radius: 14px;background: linear-gradient(135deg, #3b82f6, #8b5cf6);position: relative;overflow: hidden;color: #fff;}
@media (max-width: 640px) {.cta-section h2 {font-size: 1.75rem;}}


/* ---------- nav ---------- */
:root {
    --bg: #FAF7F2;
    --bg-tint: #F3EEE5;
    --ink: #15151F;
    --ink-2: #3D3D55;
    --muted: #7A7A92;
    --line: #E8E2D5;
    --card: #FFFFFF;
    --chip: #EEF0FF;
    --chip-ink: #4A5BFF;
  
    --accent-a: #5B6CFF;
    --accent-b: #8B5CF6;
    --accent-grad: linear-gradient(120deg, var(--accent-a) 0%, var(--accent-b) 100%);
  
    --warm: #FFB74D;
    /* map pin yellow */
    --mint: #2FBE8F;
    --coral: #FF6B5B;
  
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-pill: 999px;
  
    --shadow-sm: 0 1px 2px rgba(20, 20, 40, .04), 0 2px 8px rgba(20, 20, 40, .04);
    --shadow-md: 0 2px 6px rgba(20, 20, 40, .05), 0 12px 32px rgba(20, 20, 40, .06);
    --shadow-lg: 0 10px 40px rgba(91, 108, 255, .12), 0 30px 80px rgba(20, 20, 40, .08);
  
    --maxw: 1240px;
    --pad: clamp(20px, 4vw, 48px);
  }
  .nav-menu-toggle svg {
      color: #000
    }
    .logo-new {max-width: 50%;}
          .footer-logo-new {max-width: 35%;    filter: brightness(0) invert(1);}
  .wrap {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 48px);
  }
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(250, 247, 242, .82);
    border-bottom: 1px solid rgba(232, 226, 213, .6);
  }
  
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'Instrument Serif', serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  
  .brand .pin {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--warm);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 5px 8px 3px;
    box-shadow: 0 2px 6px rgba(255, 183, 77, .35);
  }
  
  .brand .pin::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
  }
  
  .brand sup {
    font-size: 14px;
    vertical-align: super;
    margin-left: 2px;
    font-style: italic;
  }
  
  .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  
  .nav-link {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: background .15s, color .15s;
  }
  
  .nav-link:hover {
    background: var(--bg-tint);
    color: var(--ink);
  }
  
  .nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  
  .cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tint);
    display: grid;
    place-items: center;
    position: relative;
    border: none;
  }
  
  .cart-btn:hover {
    background: white;
  }
  
  .cart-btn .count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--coral);
    color: white;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
  }
  
  
      /* Mobile header: logo, cart, Activate, (spacer), hamburger — links in overlay */
      .nav-cta {
        display: flex;
        align-items: center;
        gap: 10px;
      }
  
      .nav-mobile-spacer {
        display: none;
      }
  
      .nav-menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
        border-radius: 10px;
        -webkit-tap-highlight-color: transparent;
      }
  
      .nav-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
      }
  
      .nav-menu-toggle .nav-icon-close {
        display: none;
      }
  
      .nav.is-open .nav-menu-toggle .nav-icon-menu {
        display: none;
      }
  
      .nav.is-open .nav-menu-toggle .nav-icon-close {
        display: block;
      }
  
      .nav-backdrop {
        display: none;
      }
  
      @media (min-width: 901px) {
        .nav-inner {
          display: flex;
          align-items: center;
          gap: clamp(12px, 2vw, 28px);
        }
  
        .nav .nav-links {
          flex: 1 1 auto;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          gap: clamp(8px, 1.5vw, 24px);
        }
      }
  
      @media (max-width: 900px) {
        .nav {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          width: 100%;
        }
    
        body {
          padding-top: var(--nav-offset, 64px);
        }
        
        .nav-menu-toggle {
          display: inline-flex;
          order: 4;
        }
  
        .nav-inner {
          display: flex;
          align-items: center;
          gap: 8px;
          flex-wrap: nowrap;
          padding: 10px 10px;
        }
  
        .nav .brand {
          flex-shrink: 0;
          order: 1;
          font-size: 24px;
        }
  
        .nav .brand .logo-new {
          max-width: 171px;
          width: auto;
          height: 39px;
          object-fit: contain;
        }
  
        .nav-mobile-spacer {
          display: block;
          flex: 1 1 auto;
          min-width: 8px;
          order: 2;
        }
  
        .nav-cta {
          flex-shrink: 0;
          gap: 18px;
          order: 3;
        }
  
        .nav-cta .btn-sm {
          padding: 8px 12px;
          font-size: 13px;
          white-space: nowrap;
        }
  
        .nav-cta .cart-btn {
          width: 36px;
          height: 36px;
        }
  
        .nav-cta .cart-btn svg {
          width: 16px;
          height: 16px;
        }
  
        .nav .nav-links {
          position: fixed;
          left: 0;
          right: 0;
          top: var(--nav-offset, 64px);
          /* bottom: 0; */
          z-index: 200;
          flex-direction: column;
          align-items: stretch;
          justify-content: flex-start;
          gap: 0;
          padding: 12px 20px 24px;
          margin: 0;
          background: #fff;
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          transform: translateX(100%);
          transition: transform 0.28s ease;
          overflow-y: auto;
          visibility: hidden;
          pointer-events: none;
        }
  
        .nav.is-open .nav-links {
          transform: translateX(0);
          visibility: visible;
          pointer-events: auto;
        }
  
        .nav .nav-links .nav-link {
          padding: 16px 12px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.06);
          font-size: 16px;
          border-radius: 0;
        }
  
        .nav-backdrop {
          display: block;
          position: fixed;
          inset: 0;
          top: var(--nav-offset, 64px);
          z-index: 199;
          background: rgba(0, 0, 0, 0.35);
          opacity: 0;
          visibility: hidden;
          transition: opacity 0.25s ease, visibility 0.25s;
          pointer-events: none;
        }
  
        .nav.is-open .nav-backdrop {
          opacity: 1;
          visibility: visible;
          pointer-events: auto;
        }
  
        body.nav-menu-open {
          overflow: hidden;
        }
      }
  
      @media (max-width: 380px) {
        .nav-inner {
          gap: 4px;
        }
  
        .nav .brand .logo-new {
          max-width: 110px;
          height: 28px;
        }
  
        .nav-cta {
          gap: 4px;
        }
  
        .nav-cta .btn-sm {
          padding: 7px 10px;
          font-size: 12px;
        }
      }
      .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 15px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
  }
  
  .nav .btn-primary {
    background: var(--accent-grad);
    color: white;
    box-shadow: 0 8px 24px rgba(91, 108, 255, .3);
  }
  
  .nav .btn-primary:hover {
      background: var(--accent-grad);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 108, 255, .4);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  
  .btn-ghost:hover {
    background: white;
    border-color: var(--ink);
  }
  
  .btn-dark {
    background: var(--ink);
    color: white;
  }
  
  .btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
  }
  
  .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  
      /* ---------- footer ---------- */
  footer {
    padding: 80px 0 32px;
    color: rgba(255, 255, 255, .72);
    background: #0b0b15;
    margin-top: 80px;
  }
  
  footer .wrap {
    color: rgba(255, 255, 255, .72);
  }
  
  .ft-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  
  @media (max-width: 820px) {
    .ft-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
  }
  
  .ft-brand .brand {
    color: white;
    margin-bottom: 16px;
  }
  
  .ft-brand .brand .pin::after {
    background: #0b0b15;
  }
  
  .ft-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
  }
  
  .ft-col h4 {
    color: white;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  
  .ft-col a,
  .ft-col .line {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .6);
  }
  
  .ft-col a:hover {
    color: white;
  }
  
  .ft-apps {
    display: flex;
    gap: 8px;
    margin-top: 14px;
  }
  
  .ft-apps .app {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
  }
  
  .ft-apps .app:hover {
    border-color: white;
    color: white;
  }
  
  .ft-bot {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
  }
  

/* ===== SLIDE CART DRAWER ===== */
.slide-cart-overlay { position: fixed; inset: 0; background: rgba(15, 23, 42, .45); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; z-index: 1099; }
.slide-cart-overlay.is-open { opacity: 1; visibility: visible; }
.slide-cart { position: fixed; top: 0; right: 0; width: 420px; max-width: 100%; height: 100vh; background: #fff; color: #0f172a; box-shadow: -8px 0 30px rgba(15, 23, 42, .18); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; z-index: 1100; }
.slide-cart.is-open { transform: translateX(0); }
.slide-cart__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #e2e8f0; }
.slide-cart__title { font-size: 1.1rem; font-weight: 700; margin: 0; color: #0f172a; }
.slide-cart__close { background: none; border: none; color: #0f172a; padding: 6px; display: grid; place-items: center; border-radius: 8px; cursor: pointer; }
.slide-cart__close:hover { background: #f1f5f9; }
.slide-cart__body { flex: 1 1 auto; overflow-y: auto; padding: 16px 24px; }
.slide-cart__empty { text-align: center; color: #64748b; padding: 0px 0; }
.slide-cart__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem 1rem;
}
.slide-cart__empty-icon {
  display: block;
  flex-shrink: 0;
}
.slide-cart__items { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.slide-cart__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.slide-cart__item:last-child { border-bottom: 0; }
.slide-cart__item-img img { width: 64px; height: 64px; object-fit: contain; border-radius: 8px; background: #f8fafc; }
.slide-cart__item-name { font-size: .95rem; font-weight: 600; color: #0f172a; margin: 0 0 4px; }
.slide-cart__item-price { font-size: .85rem; color: #475569; margin: 0 0 8px; }
.slide-cart__item-controls { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.slide-cart__qty-btn { width: 26px; height: 26px; border-radius: 6px; background: #f1f5f9; color: #0f172a; font-weight: 700; border: none; cursor: pointer; }
.slide-cart__qty-btn:hover { background: #e2e8f0; }
.slide-cart__qty-val { min-width: 24px; text-align: center; font-weight: 700; color: #0f172a; }
.slide-cart__remove { margin-left: 8px; background: none; border: none; color: #ef4444; font-size: .8rem; cursor: pointer; padding: 4px 6px; }
.slide-cart__remove:hover { text-decoration: underline; }
.slide-cart__item-line { font-weight: 700; color: #0f172a; align-self: start; }
.slide-cart__footer { border-top: 1px solid #e2e8f0; padding: 20px 24px; background: #fff; }
.slide-cart__subtotal { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.slide-cart__shipping-note { font-size: .8rem; color: #64748b; margin: 0 0 14px; }
.slide-cart__checkout { display: block; width: 100%; padding: 14px 20px; text-align: center; font-size: 1rem; }
body.cart-open { overflow: hidden; }
@media (max-width: 480px) { .slide-cart { width: 100%; } }
