
    :root {
      --yellow: #FFE000;
      --black: #0f0f0f;
      --dark: #141414;
      --card: #1a1a1a;
      --white: #ffffff;
      --gray: #888888;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: rgba(15,15,15,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid #1e1e1e;
      padding: 0 2rem;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon { width: 38px; height: 38px; }

    .nav-wordmark {
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      color: var(--white);
      text-transform: uppercase;
    }
    .nav-wordmark span { color: var(--yellow); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      background: var(--yellow) !important;
      color: var(--black) !important;
      padding: 0.45rem 1.1rem;
      border-radius: 4px;
      font-weight: 800 !important;
    }
    .nav-cta:hover { background: #e6ca00 !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 2rem 5rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -180px;
      right: -180px;
      width: 640px;
      height: 640px;
      background: radial-gradient(circle, rgba(255,224,0,0.07) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-visual img {
      width: 100%;
      max-width: 460px;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,224,0,0.1);
      border: 1px solid rgba(255,224,0,0.25);
      color: var(--yellow);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 100px;
      margin-bottom: 2rem;
    }
    .hero-tag::before {
      content: '';
      width: 5px;
      height: 5px;
      background: var(--yellow);
      border-radius: 50%;
    }

    .hero h1 {
      font-size: clamp(3.5rem, 9vw, 8rem);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.025em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--yellow);
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: var(--gray);
      max-width: 500px;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--black);
      padding: 0.9rem 2rem;
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-primary:hover { background: #e6ca00; transform: translateY(-2px); }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      padding: 0.9rem 2rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid #2e2e2e;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, transform 0.15s;
      display: inline-block;
    }
    .btn-ghost:hover { border-color: #666; transform: translateY(-2px); }

    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 4.5rem;
      padding-top: 3rem;
      border-top: 1px solid #1e1e1e;
      flex-wrap: wrap;
    }

    .stat-label {
      font-size: 0.7rem;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.3rem;
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
    }
    .stat-value span { color: var(--yellow); }
    .stat-value.small { font-size: 1.1rem; padding-top: 0.4rem; }

    /* ── TICKER ── */
    .ticker {
      background: var(--yellow);
      color: var(--black);
      padding: 0.8rem 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .ticker-inner {
      display: inline-flex;
      animation: ticker 22s linear infinite;
    }

    .ticker-item {
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0 2rem;
    }
    .ticker-dot { padding: 0 0.25rem; opacity: 0.5; }

    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTION SHARED ── */
    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 900;
      letter-spacing: -0.025em;
      text-transform: uppercase;
      line-height: 1;
    }

    /* ── PRODUCTS ── */
    .products { padding: 7rem 2rem; }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
      gap: 1.5rem;
    }

    .product-card {
      background: var(--card);
      border: 1px solid #222;
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
    }
    .product-card:hover {
      border-color: var(--yellow);
      transform: translateY(-5px);
    }

    .product-image {
      aspect-ratio: 3 / 4;
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      background: #202020;
      position: relative;
      overflow: hidden;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      inset: 0;
    }

    .product-image img.hidden { display: none; }

    .slide-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background: rgba(0,0,0,0.55);
      border: none;
      color: #fff;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s, background 0.2s;
    }
    .slide-arrow.prev { left: 0.6rem; }
    .slide-arrow.next { right: 0.6rem; }
    .slide-arrow:hover { background: rgba(0,0,0,0.8); }
    .product-image:hover .slide-arrow { opacity: 1; }

    .slide-dots {
      position: absolute;
      bottom: 0.6rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 5px;
      z-index: 3;
    }

    .slide-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .slide-dot.active { background: var(--yellow); transform: scale(1.3); }

    .product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--yellow);
      color: var(--black);
      font-size: 0.6rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.6rem;
      border-radius: 4px;
    }

    .product-info { padding: 1.5rem; }

    .color-select-wrap {
      margin-bottom: 1.25rem;
    }

    .color-label {
      display: block;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 0.4rem;
    }

    .color-select {
      width: 100%;
      background: #242424;
      color: var(--white);
      border: 1px solid #333;
      border-radius: 4px;
      padding: 0.6rem 1rem;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      transition: border-color 0.2s;
    }
    .color-select:focus { outline: none; border-color: var(--yellow); }

    .product-name {
      font-size: 1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.4rem;
    }

    .product-desc {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-price {
      font-size: 1.35rem;
      font-weight: 900;
      color: var(--yellow);
    }

    .btn-sm {
      background: transparent;
      color: var(--white);
      border: 1px solid #333;
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-sm:hover {
      background: var(--yellow);
      color: var(--black);
      border-color: var(--yellow);
    }

    /* ── ABOUT ── */
    .about {
      padding: 7rem 2rem;
      background: var(--dark);
      border-top: 1px solid #1c1c1c;
      border-bottom: 1px solid #1c1c1c;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual {
      border-radius: 20px;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      position: relative;
    }

    .about-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-content .section-title { margin-bottom: 1.25rem; margin-top: 0.5rem; }

    .about-body {
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 2rem;
    }

    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .feature-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
    }

    .feature-icon {
      width: 22px;
      height: 22px;
      background: rgba(255,224,0,0.12);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--yellow);
      font-size: 0.7rem;
      font-weight: 900;
    }

    .feature-text { font-size: 0.875rem; color: #aaa; }
    .feature-text strong { color: var(--white); }


    /* ── CONTACT ── */
    .contact-section {
      background: #fff;
      padding: 80px 24px;
    }
    .contact-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-inner h2 {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .contact-emails {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin: 16px 0 36px;
    }
    .contact-email-tag {
      background: #f5f5f5;
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    .contact-email-tag span {
      display: block;
      font-size: 0.7rem;
      font-weight: 400;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }
    .contact-email-tag a {
      color: #1a1a1a;
      text-decoration: none;
    }
    .contact-email-tag a:hover { color: var(--yellow); }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background: #fafafa;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #1a1a1a;
    }
    .contact-form textarea { min-height: 130px; resize: vertical; }
    .contact-form button {
      background: var(--yellow);
      color: #1a1a1a;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .contact-form button:hover { opacity: 0.8; }
    .contact-success {
      display: none;
      background: #f0fdf4;
      border: 1.5px solid #86efac;
      border-radius: 8px;
      padding: 14px;
      color: #166534;
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
    }


    /* CURRENCY BADGE */
    #currency-badge {
      position: fixed;
      bottom: 18px;
      right: 18px;
      background: #1a1a1a;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      padding: 6px 12px;
      border-radius: 20px;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.85;
    }


    /* RETURNS & EXCHANGES */
    .returns-section {
      background: #f5f5f5;
      padding: 80px 24px;
    }
    .returns-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }
    .returns-inner h2 {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .returns-inner p {
      color: #666;
      margin-bottom: 32px;
    }
    .return-type-toggle {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-bottom: 24px;
    }
    .return-type-btn {
      padding: 10px 24px;
      border: 2px solid #1a1a1a;
      border-radius: 8px;
      background: transparent;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.2s;
    }
    .return-type-btn.active {
      background: #1a1a1a;
      color: #fff;
    }
    .returns-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: left;
    }
    .returns-form input,
    .returns-form select,
    .returns-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background: #fff;
      box-sizing: border-box;
      transition: border-color 0.2s;
    }
    .returns-form input:focus,
    .returns-form select:focus,
    .returns-form textarea:focus {
      outline: none;
      border-color: #1a1a1a;
    }
    .returns-form textarea { min-height: 100px; resize: vertical; }
    .returns-form button {
      background: var(--yellow);
      color: #1a1a1a;
      border: none;
      border-radius: 8px;
      padding: 14px;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .returns-form button:hover { opacity: 0.8; }
    .returns-success {
      display: none;
      background: #f0fdf4;
      border: 1.5px solid #86efac;
      border-radius: 8px;
      padding: 16px;
      color: #166534;
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
      margin-top: 12px;
    }
    .returns-error {
      display: none;
      background: #fef2f2;
      border: 1.5px solid #fca5a5;
      border-radius: 8px;
      padding: 16px;
      color: #991b1b;
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
      margin-top: 12px;
    }
    #exchange-field { display: none; }


    /* LEGAL MODALS */
    .legal-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 10000;
      padding: 24px;
      overflow-y: auto;
    }
    .legal-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
    .legal-modal {
      background: #fff;
      border-radius: 12px;
      max-width: 700px;
      width: 100%;
      padding: 40px;
      margin: auto;
      position: relative;
    }
    .legal-modal h2 {
      font-size: 1.4rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .legal-modal h3 {
      font-size: 1rem;
      font-weight: 700;
      margin: 20px 0 6px;
    }
    .legal-modal p, .legal-modal li {
      font-size: 0.9rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 8px;
    }
    .legal-modal ul { padding-left: 20px; }
    .legal-modal-close {
      position: absolute;
      top: 16px;
      right: 20px;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: #888;
      line-height: 1;
    }
    .legal-modal-close:hover { color: #1a1a1a; }
    .footer-legal {
      display: flex;
      gap: 1rem;
      margin-top: 8px;
    }
    .footer-legal a {
      font-size: 0.72rem;
      color: #666;
      text-decoration: none;
      cursor: pointer;
    }
    .footer-legal a:hover { color: #fff; }


    /* ORDER TRACKING */
    .tracking-section {
      background: #fff;
      padding: 80px 24px;
    }
    .tracking-inner {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }
    .tracking-inner h2 {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .tracking-inner p { color: #666; margin-bottom: 32px; }
    .tracking-form {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
    }
    .tracking-form input {
      flex: 1;
      padding: 14px 16px;
      border: 1.5px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background: #fafafa;
      transition: border-color 0.2s;
    }
    .tracking-form input:focus { outline: none; border-color: #1a1a1a; }
    .tracking-form button {
      background: var(--yellow);
      color: #1a1a1a;
      border: none;
      border-radius: 8px;
      padding: 14px 20px;
      font-size: 0.85rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .tracking-form button:hover { opacity: 0.8; }
    .tracking-result {
      display: none;
      background: #f9f9f9;
      border: 1.5px solid #e0e0e0;
      border-radius: 12px;
      padding: 24px;
      text-align: left;
    }
    .tracking-result.show { display: block; }
    .tracking-carrier {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 4px;
    }
    .tracking-number-display {
      font-size: 1rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 16px;
      word-break: break-all;
    }
    .tracking-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 20px;
    }
    .tracking-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      position: relative;
    }
    .tracking-step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 11px;
      top: 32px;
      width: 2px;
      height: calc(100% - 12px);
      background: #e0e0e0;
    }
    .tracking-step.done .step-dot { background: #1a1a1a; }
    .tracking-step.active .step-dot { background: var(--yellow); border: 2px solid #1a1a1a; }
    .step-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #e0e0e0;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .step-info { flex: 1; }
    .step-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: #1a1a1a;
    }
    .step-label.muted { color: #aaa; font-weight: 500; }
    .step-date { font-size: 0.78rem; color: #888; margin-top: 2px; }
    .tracking-usps-link {
      display: inline-block;
      background: #1a1a1a;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: opacity 0.2s;
    }
    .tracking-usps-link:hover { opacity: 0.75; }
    .tracking-error {
      display: none;
      background: #fef2f2;
      border: 1.5px solid #fca5a5;
      border-radius: 8px;
      padding: 14px;
      color: #991b1b;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 8px;
    }

    /* ── COMING SOON ── */
    .coming-soon { padding: 7rem 2rem; }

    .coming-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .coming-card {
      background: var(--card);
      border: 1px dashed #272727;
      border-radius: 14px;
      padding: 2.5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .coming-card:hover { border-color: #444; }

    .coming-ribbon {
      position: absolute;
      top: 0.9rem;
      right: -1.8rem;
      background: #222;
      color: #555;
      font-size: 0.55rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      padding: 0.2rem 2.5rem;
      transform: rotate(35deg);
      text-transform: uppercase;
    }

    .coming-icon { font-size: 1.75rem; margin-bottom: 1rem; color: rgba(255,224,0,0.25); }

    .coming-name {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #555;
    }

    /* ── EMAIL CTA ── */
    .email-section {
      padding: 6rem 2rem;
      background: var(--yellow);
    }

    .email-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
    }

    .email-inner h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--black);
      text-transform: uppercase;
      letter-spacing: -0.025em;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .email-inner p {
      color: rgba(0,0,0,0.55);
      margin-bottom: 2rem;
      font-size: 1rem;
    }

    .email-form {
      display: flex;
      gap: 0.75rem;
      max-width: 460px;
      margin: 0 auto;
    }

    .email-form input {
      flex: 1;
      background: rgba(0,0,0,0.1);
      border: 2px solid rgba(0,0,0,0.15);
      color: var(--black);
      padding: 0.9rem 1.2rem;
      font-size: 0.875rem;
      border-radius: 4px;
      outline: none;
      transition: border-color 0.2s;
    }
    .email-form input::placeholder { color: rgba(0,0,0,0.35); }
    .email-form input:focus { border-color: rgba(0,0,0,0.4); }

    .email-form button {
      background: var(--black);
      color: var(--yellow);
      border: none;
      padding: 0.9rem 1.5rem;
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 4px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .email-form button:hover { opacity: 0.8; }


    /* ── REVIEWS ── */
    .reviews-section {
      background: #0d0d0d;
      padding: 80px 24px;
    }
    .reviews-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .reviews-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .reviews-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .reviews-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .reviews-avg-score {
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .reviews-avg-stars {
      font-size: 1.4rem;
      color: #f5c518;
      line-height: 1;
    }
    .reviews-count {
      color: #888;
      font-size: 0.9rem;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 56px;
    }
    .review-card {
      background: #1a1a1a;
      border: 1px solid #2a2a2a;
      border-radius: 16px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: border-color 0.2s;
    }
    .review-card:hover { border-color: #444; }
    .review-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #5c6bc0, #26c6da);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }
    .review-meta { flex: 1; }
    .review-name {
      font-weight: 600;
      color: #fff;
      font-size: 0.95rem;
    }
    .review-date {
      color: #666;
      font-size: 0.8rem;
    }
    .review-stars { color: #f5c518; font-size: 1rem; letter-spacing: 1px; }
    .review-title {
      font-weight: 600;
      color: #eee;
      font-size: 1rem;
    }
    .review-body {
      color: #bbb;
      font-size: 0.92rem;
      line-height: 1.6;
    }
    .review-product-tag {
      display: inline-block;
      background: #252525;
      border: 1px solid #333;
      color: #888;
      font-size: 0.78rem;
      padding: 3px 10px;
      border-radius: 20px;
      width: fit-content;
    }
    .review-photo {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
      max-height: 220px;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .review-photo:hover { opacity: 0.9; }
    .reviews-empty {
      text-align: center;
      color: #555;
      padding: 40px 0;
    }
    /* Write a Review Form */
    .write-review-wrap {
      background: #141414;
      border: 1px solid #2a2a2a;
      border-radius: 20px;
      padding: 40px;
      max-width: 640px;
      margin: 0 auto;
    }
    .write-review-wrap h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 24px;
      text-align: center;
    }
    .review-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    @media (max-width: 540px) {
      .review-form-row { grid-template-columns: 1fr; }
      .write-review-wrap { padding: 24px 16px; }
    }
    .review-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }
    .review-field label {
      color: #aaa;
      font-size: 0.85rem;
      font-weight: 500;
    }
    .review-field input,
    .review-field select,
    .review-field textarea {
      background: #1e1e1e;
      border: 1px solid #333;
      border-radius: 10px;
      color: #fff;
      padding: 12px 14px;
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      box-sizing: border-box;
    }
    .review-field input:focus,
    .review-field select:focus,
    .review-field textarea:focus { border-color: #5c6bc0; }
    .review-field textarea { resize: vertical; min-height: 110px; }
    .review-field select option { background: #1e1e1e; }
    /* Star picker */
    .star-picker {
      display: flex;
      gap: 6px;
      flex-direction: row-reverse;
      justify-content: flex-end;
    }
    .star-picker input { display: none; }
    .star-picker label {
      font-size: 1.8rem;
      color: #444;
      cursor: pointer;
      transition: color 0.15s;
    }
    .star-picker input:checked ~ label,
    .star-picker label:hover,
    .star-picker label:hover ~ label { color: #f5c518; }
    /* Photo upload */
    .photo-upload-label {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #1e1e1e;
      border: 1px dashed #444;
      border-radius: 10px;
      padding: 14px;
      cursor: pointer;
      color: #888;
      font-size: 0.88rem;
      transition: border-color 0.2s;
    }
    .photo-upload-label:hover { border-color: #5c6bc0; color: #bbb; }
    .photo-upload-label svg { flex-shrink: 0; }
    #review-photo-input { display: none; }
    #photo-preview { width: 100%; border-radius: 10px; margin-top: 10px; display: none; max-height: 180px; object-fit: cover; }
    .review-submit-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #5c6bc0, #26c6da);
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      margin-top: 8px;
      transition: opacity 0.2s;
      letter-spacing: 0.5px;
    }
    .review-submit-btn:hover { opacity: 0.88; }
    .review-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    #review-form-msg {
      text-align: center;
      margin-top: 14px;
      font-size: 0.95rem;
      min-height: 24px;
    }
    /* Lightbox */
    #review-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    #review-lightbox.open { display: flex; }
    #review-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 12px; }
    #review-lightbox-close {
      position: absolute;
      top: 20px; right: 28px;
      color: #fff; font-size: 2rem;
      cursor: pointer; line-height: 1;
    }


    /* ── HERO IMAGE ── */
    .hero-visual {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
    }
    .hero-product-img-wrap {
      position: relative;
      width: clamp(240px, 38vw, 420px);
    }
    .hero-product-img-wrap::before {
      content: '';
      position: absolute;
      inset: -18px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(92,107,192,0.18) 0%, transparent 70%);
      z-index: 0;
    }
    .hero-product-img {
      width: 100%;
      border-radius: 24px;
      object-fit: cover;
      position: relative;
      z-index: 1;
      box-shadow: 0 24px 60px rgba(0,0,0,0.6);
      animation: heroFloat 4s ease-in-out infinite;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }
    @media (max-width: 768px) {
      .hero-product-img-wrap { width: clamp(180px, 60vw, 300px); margin: 0 auto; }
    }

    /* ── FOOTER ── */
    footer {
      background: #080808;
      border-top: 1px solid #181818;
      padding: 2.5rem 2rem;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-copy { font-size: 0.75rem; color: #444; }

    .footer-links { display: flex; gap: 1.5rem; }

    .footer-links a {
      font-size: 0.75rem;
      color: #444;
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }

    /* ── NAV RIGHT GROUP ── */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .account-btn {
      display: flex;
      align-items: center;
      gap: 7px;
      background: transparent;
      color: var(--gray);
      border: 1px solid #2e2e2e;
      padding: 0.45rem 1rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .account-btn:hover { border-color: #555; color: var(--white); }

    /* ── CART BUTTON ── */
    .cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      border: 1px solid #2e2e2e;
      padding: 0.45rem 1rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .cart-btn:hover { border-color: var(--yellow); color: var(--yellow); }

    .cart-count {
      background: var(--yellow);
      color: var(--black);
      font-size: 0.65rem;
      font-weight: 900;
      min-width: 18px;
      height: 18px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
    }

    /* ── SNIPCART DARK THEME ── */
    #snipcart {
      --color-default: #ffffff;
      --color-alt: #888888;
      --color-badge: #FFE000;
      --color-badge-active: #FFE000;
      --color-link: #FFE000;
      --bgColor-default: #0f0f0f;
      --bgColor-alt: #1a1a1a;
      --bgColor-modal: #141414;
      --bgColor-badge: rgba(255,224,0,0.12);
      --bgColor-badge-active: #FFE000;
      --bgColor-buttonPrimary: #FFE000;
      --bgColor-buttonPrimary-active: #e6ca00;
      --bgColor-buttonPrimary-hover: #e6ca00;
      --color-buttonPrimary: #0f0f0f;
      --color-buttonPrimary-hover: #0f0f0f;
      --bgColor-buttonSecondary: #1a1a1a;
      --borderColor-default: #222222;
      --borderColor-alt: #2a2a2a;
      --borderRadius-default: 4px;
      --shadow-default: 0 8px 48px rgba(0,0,0,0.9);
      --bgColor-input: #1a1a1a;
      --borderColor-input: #2a2a2a;
      --color-input: #ffffff;
      --color-inputLabel: #888888;
      --color-inputPlaceholder: #444444;
      --bgColor-cartHeader: #0f0f0f;
      --bgColor-cart: #0f0f0f;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--dark);
      border-top: 1px solid #1e1e1e;
      border-bottom: 1px solid #1e1e1e;
      padding: 1.25rem 2rem;
    }

    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #aaa;
    }

    .trust-icon {
      color: var(--yellow);
      font-size: 1rem;
    }

    /* ── SHIPPING ── */
    .shipping-section {
      padding: 7rem 2rem;
      background: var(--dark);
      border-top: 1px solid #1c1c1c;
      border-bottom: 1px solid #1c1c1c;
    }

    .shipping-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .shipping-card {
      background: var(--card);
      border: 1px solid #222;
      border-radius: 14px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .shipping-card-icon {
      font-size: 1.75rem;
    }

    .shipping-card-title {
      font-size: 0.85rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
    }

    .shipping-card-body {
      font-size: 0.83rem;
      color: var(--gray);
      line-height: 1.65;
    }

    /* ── FAQ ── */
    .faq-section { padding: 7rem 2rem; }

    .faq-list {
      margin-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      max-width: 800px;
    }

    .faq-item {
      background: var(--card);
      border: 1px solid #222;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item[open] { border-color: var(--yellow); }
    .faq-item summary { list-style: none; }
    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.9rem;
      font-weight: 700;
      text-align: left;
      cursor: pointer;
      gap: 1rem;
    }

    .faq-chevron {
      color: var(--yellow);
      font-size: 1.1rem;
      transition: transform 0.25s;
      flex-shrink: 0;
    }
    .faq-item[open] .faq-chevron { transform: rotate(180deg); }

    .faq-answer {
      font-size: 0.85rem;
      color: #cccccc;
      line-height: 1.75;
      padding: 0 1.5rem 1.25rem;
    }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      /* Nav */
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(15,15,15,0.98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: 0.5rem 2rem 1.5rem;
        gap: 0;
        border-bottom: 1px solid #222;
        z-index: 99;
      }
      .nav-links.open { display: flex; }
      .nav-links li { border-bottom: 1px solid #1e1e1e; }
      .nav-links a { padding: 1rem 0; display: block; font-size: 0.9rem; color: var(--white); }
      .account-btn { display: none; }

      /* Hero — stack image above text */
      .hero {
        padding-top: 90px;
        padding-bottom: 3.5rem;
      }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .hero-visual {
        display: flex;
        order: -1;
      }
      .hero-visual img {
        max-width: 260px;
        border-radius: 14px;
      }
      .hero h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
      .hero-stats { gap: 1.5rem; }

      /* Product grid — single column, arrows always visible */
      .products { padding: 4rem 1.25rem; }
      .products-grid { grid-template-columns: 1fr; }
      .slide-arrow {
        opacity: 1 !important;
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        background: rgba(0,0,0,0.65) !important;
      }

      /* About */
      .about { padding: 4rem 1.25rem; }
      .about-grid { grid-template-columns: 1fr; }
      .about-visual {
        display: block;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
      }

      /* Sections */
      .shipping-section { padding: 4rem 1.25rem; }
      .faq-section { padding: 4rem 1.25rem; }
      .coming-soon { padding: 4rem 1.25rem; }

      /* Trust bar */
      .trust-bar-inner {
        gap: 1rem;
        justify-content: flex-start;
      }
      .trust-item { font-size: 0.72rem; }

      /* Email form */
      .email-form { flex-direction: column; }
      .email-section { padding: 4rem 1.25rem; }

      /* Footer */
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }
  
/* ── STOCK BADGES ──────────────────────────────────────────────── */
.stock-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.stock-badge--low {
  background: #fff3cd;
  color: #92400e;
  border: 1px solid #f6ad55;
}
.stock-badge--out {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #f87171;
}
.btn-disabled {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}

/* ── MOBILE OPTIMIZATIONS ──────────────────────────────────────── */
@media (max-width: 768px) {

  /* Prevent iOS auto-zoom on any input/select under 16px */
  input, select, textarea {
    font-size: 16px !important;
  }

  /* Bigger Add to Cart buttons — easy thumb tap */
  .btn-sm {
    padding: 0.85rem 1.25rem;
    font-size: 0.78rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Stack price + button vertically on mobile */
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .product-footer .btn-sm {
    width: 100%;
    text-align: center;
  }

  /* Bigger cart button tap area */
  .cart-btn {
    padding: 0.65rem 1.1rem;
    min-height: 44px;
  }

  /* Bigger hamburger tap area */
  .hamburger {
    padding: 10px;
    margin-right: -10px;
  }

  /* Color select — taller for easy tapping */
  .color-select {
    padding: 0.8rem 2rem 0.8rem 1rem;
    min-height: 48px;
  }

  /* Bundle section — full width selects */
  .bundle-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .bundle-color-select {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 2rem 0.8rem 1rem;
  }

  /* Make trust bar items wrap nicely */
  .trust-bar-inner {
    gap: 0.75rem 1.5rem;
  }

  /* Popup modal — full width on small screens */
  .popup-box {
    padding: 32px 20px;
    width: 92vw;
  }

  /* Reviews form — bigger inputs */
  .review-field input,
  .review-field select,
  .review-field textarea {
    padding: 14px;
    min-height: 48px;
  }

  /* Contact form inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
  }

  /* Nav — account accessible via menu on mobile */
  .nav-links .mobile-account-link {
    display: block;
  }
}

/* Show mobile account link only on small screens */
.mobile-account-link { display: none; }
