
    /* ─── VARIABLES ─────────────────────────────────────── */
    :root {
      --bg:          #161616;
      --bg2:         #212121;
      --bg3:         #2a2a2a;
      --surface:     #242424;
      --border:      rgba(255,255,255,0.08);
      --orange:      #f27c1e;
      --orange-glow: rgba(242,124,30,0.35);
      --orange-dim:  rgba(242,124,30,0.12);
      --red:         #c0392b;
      --text:        #e8e4dc;
      --text-muted:  #7a7a8c;
      --gold:        #e8c57a;
      --font-display: 'Cinzel Decorative', serif;
      --font-body:    'Rajdhani', sans-serif;
      --nav-h:       72px;
      --radius:      12px;
      --transition:  0.3s cubic-bezier(.4,0,.2,1);
    }

    /* ─── RESET ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 17px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ─── SCROLLBAR ──────────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

    /* ─── GRAIN OVERLAY ─────────────────────────────────── */
    body::before {
      content:'';
      position: fixed; inset: 0; z-index: 99;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.022;
    }

    /* ─── UTILITY ────────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 900;
      line-height: 1.15;
      color: var(--text);
    }
    .section-title span { color: var(--orange); }
    .divider {
      display: block;
      width: 52px; height: 3px;
      background: linear-gradient(90deg, var(--orange), transparent);
      border-radius: 2px;
      margin: 18px 0 32px;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 28px;
      border-radius: 6px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }
    .btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 0 22px var(--orange-glow);
    }
    .btn-primary:hover {
      background: #ff9030;
      box-shadow: 0 0 40px var(--orange-glow);
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      color: var(--orange);
      border: 1.5px solid var(--orange);
    }
    .btn-outline:hover {
      background: var(--orange-dim);
      transform: translateY(-2px);
    }

    /* ─── NAVBAR ─────────────────────────────────────────── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: var(--nav-h);
      background: rgba(22,22,22,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center;
      transition: background var(--transition);
    }
    .navbar .container {
      width: 100%;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 25px;
    }
    .nav-logo img {
      width: 70px; height: 70px;
      border-radius: 50%;
      border: 1.5px solid var(--orange);
      object-fit: cover;
    }
    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 900;
      letter-spacing: 0.05em;
    }
    .nav-logo-text span { color: var(--orange); }
    .nav-links {
      display: flex; align-items: center; gap: 36px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content:'';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1.5px;
      background: var(--orange);
      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: 16px; }
    .nav-cart {
      background: none; border: none; cursor: pointer;
      color: var(--text-muted); font-size: 20px;
      transition: color var(--transition);
      position: relative;
    }
    .nav-cart:hover { color: var(--orange); }
    .cart-badge {
      position: absolute; top: -6px; right: -6px;
      background: var(--orange); color: #fff;
      font-size: 10px; font-weight: 700;
      width: 18px; height: 18px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-body);
    }
    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 26px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: var(--transition);
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(10,10,12,0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 24px;
      z-index: 899;
      flex-direction: column; gap: 20px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 16px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }

    /* ─── HERO SLIDER ────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh; min-height: 600px;
      overflow: hidden;
      margin-top: 0;
    }
    .hero-slides {
      position: absolute; inset: 0;
    }
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1s ease;
      display: flex; align-items: center;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
    }
    .hero-slide-bg::after {
      content:'';
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,10,12,0.92) 0%,
        rgba(10,10,12,0.7) 50%,
        rgba(10,10,12,0.2) 100%
      );
    }
    /* Slide backgrounds */
    .hero-slide:nth-child(1) .hero-slide-bg {
      background-image:
        linear-gradient(135deg, #1a0a00 0%, #2d1600 40%, #0a0a1a 100%);
    }
    .hero-slide:nth-child(2) .hero-slide-bg {
      background-image:
        linear-gradient(135deg, #0a0a1a 0%, #1a0010 40%, #0d1a00 100%);
    }
    .hero-slide:nth-child(3) .hero-slide-bg {
      background-image:
        linear-gradient(135deg, #0a0a0c 0%, #1c0a00 40%, #0a0a1a 100%);
    }
    /* decorative card shapes */
    .hero-slide .card-deco {
      position: absolute; right: 5%; top: 50%;
      transform: translateY(-50%) rotate(8deg);
      width: clamp(380px, 45vw, 620px);
      aspect-ratio: 1 / 1.4;
      opacity: 1;
      pointer-events: none;
      z-index: 1;
      display: flex; align-items: center; justify-content: center;
      filter: drop-shadow(0 0 50px var(--orange-glow));
      animation: card-float 6s ease-in-out infinite;
      transition: opacity var(--transition);
    }
    .card-deco img {
      width: 100%; height: 100%;
      object-fit: contain;
      border-radius: 20px;
      /* subtle bottom mask to blend with bg */
      mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
    }
    @keyframes card-float {
      0%, 100% { transform: translateY(-56%) rotate(8deg); }
      50% { transform: translateY(-44%) rotate(10deg); }
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 680px;
      padding: 0 24px;
      margin: 0 auto 0 calc((100vw - 1200px) / 2 + 24px);
      padding-top: var(--nav-h);
    }
    @media (max-width: 1248px) { .hero-content { margin-left: 24px; } }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content:''; display: block;
      width: 28px; height: 1.5px;
      background: var(--orange);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5.5vw, 4.4rem);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 22px;
    }
    .hero-title .highlight {
      color: var(--orange);
      text-shadow: 0 0 40px var(--orange-glow);
    }
    .hero-desc {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 460px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Slider controls */
    .hero-dots {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      z-index: 10; display: flex; gap: 10px;
    }
    .hero-dot {
      width: 8px; height: 8px;
      border-radius: 4px;
      background: rgba(255,255,255,0.25);
      border: none; cursor: pointer;
      transition: width var(--transition), background var(--transition);
    }
    .hero-dot.active {
      width: 28px;
      background: var(--orange);
    }
    .hero-arrows {
      position: absolute; bottom: 28px; right: 36px;
      z-index: 10; display: flex; gap: 10px;
    }
    .hero-arrow {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      color: var(--text); font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .hero-arrow:hover { background: var(--orange); border-color: var(--orange); }

    /* ─── SECTION COMMON ─────────────────────────────────── */
    section { padding: 96px 0; }

    /* ─── COLECCIONES SLIDER ─────────────────────────────── */
    .collections { background: var(--bg2); }
    .collections-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
    }
    .collections-track-wrap {
      position: relative; overflow: hidden;
    }
    .collections-track {
      display: flex; gap: 24px;
      transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    }
    .collection-card {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }
    .collection-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--orange);
    }
    .collection-img {
      width: 100%; aspect-ratio: 4/3;
      overflow: hidden; position: relative;
    }
    .collection-img-inner {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 4rem;
      transition: transform 0.5s ease;
    }
    .collection-card:hover .collection-img-inner { transform: scale(1.06); }
    .collection-img-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    /* Placeholder gradient backgrounds */
    .coll-bg-1 { background: linear-gradient(135deg,#212121,#1a1a1a,rgba(242,124,30,0.06)); }
    .coll-bg-2 { background: linear-gradient(135deg,#212121,#1a1a1a,rgba(242,124,30,0.06)); }
    .coll-bg-3 { background: linear-gradient(135deg,#212121,#1a1a1a,rgba(242,124,30,0.06)); }
    .coll-bg-4 { background: linear-gradient(135deg,#212121,#1a1a1a,rgba(242,124,30,0.06)); }
    .coll-bg-5 { background: linear-gradient(135deg,#212121,#1a1a1a,rgba(242,124,30,0.06)); }
    .collection-body { padding: 22px; }
    .collection-tag {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 8px;
    }
    .collection-name {
      font-family: var(--font-display);
      font-size: 1.05rem; font-weight: 700;
      margin-bottom: 8px;
    }
    .collection-desc {
      font-size: 14px; color: var(--text-muted); line-height: 1.5;
    }
    .collections-nav {
      display: flex; justify-content: center; gap: 10px; margin-top: 32px;
    }
    .coll-dot {
      width: 8px; height: 8px; border-radius: 4px;
      background: rgba(255,255,255,0.2);
      border: none; cursor: pointer;
      transition: width var(--transition), background var(--transition);
    }
    .coll-dot.active { width: 24px; background: var(--orange); }
    .coll-arrows { display: flex; gap: 10px; margin-top: 32px; justify-content: flex-end; }
    .coll-arrow {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border);
      color: var(--text); font-size: 16px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    .coll-arrow:hover { background: var(--orange); border-color: var(--orange); }

    /* ─── MYSTERY BOXES ──────────────────────────────────── */
    .mystery { background: var(--bg); position: relative; overflow: hidden; }
    .mystery::before {
      content:'';
      position: absolute; top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,124,30,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .mystery-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .mystery-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .mystery-box-gfx {
      width: 300px; height: 300px;
      position: relative;
    }
    .mystery-box-gfx .box-glow {
      position: absolute; inset: -40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(242,124,30,0.18) 0%, transparent 70%);
      animation: pulse-glow 3s ease-in-out infinite;
    }
    @keyframes pulse-glow {
      0%,100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.12); opacity: 0.6; }
    }
    .mystery-box-gfx .box-main {
      position: absolute; inset: 20px;
      border: 2px solid var(--orange);
      border-radius: 18px;
      background: var(--surface);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }
    .box-question { font-size: 5rem; animation: spin-slow 8s linear infinite; }
    @keyframes spin-slow {
      0% { transform: rotate(0deg) scale(1); }
      25% { transform: rotate(-8deg) scale(1.1); }
      75% { transform: rotate(8deg) scale(0.95); }
      100% { transform: rotate(0deg) scale(1); }
    }
    .box-label {
      font-family: var(--font-display); font-size: 0.75rem; color: var(--orange);
      letter-spacing: 0.15em;
    }
    .mystery-particles {
      position: absolute; inset: 0;
      pointer-events: none;
    }
    .mystery-particles span {
      position: absolute;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--orange);
      animation: particle-float linear infinite;
      opacity: 0;
    }
    @keyframes particle-float {
      0% { transform: translate(0,0) scale(0); opacity: 0; }
      10% { opacity: 0.8; transform: scale(1); }
      100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
    }

    .mystery-features { margin: 32px 0; display: flex; flex-direction: column; gap: 18px; }
    .mystery-feat {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .feat-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--orange-dim);
      border: 1px solid rgba(242,124,30,0.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .feat-text h4 {
      font-size: 15px; font-weight: 700; margin-bottom: 3px;
      font-family: var(--font-body);
    }
    .feat-text p { font-size: 13px; color: var(--text-muted); }
    .mystery-price-note {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 20px;
      background: var(--orange-dim);
      border: 1px solid rgba(242,124,30,0.25);
      border-radius: 8px;
      font-size: 14px; font-weight: 600;
      color: var(--orange);
      margin-bottom: 24px;
    }

    /* ─── ENHANCEMENTS (CRO) ─────────────────────────────── */
    .top-bar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 901;
      height: 38px;
      background: linear-gradient(90deg, #ff4c00, #ff8c00);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-align: center;
      box-shadow: 0 2px 10px rgba(255,76,0,0.3);
    }
    body.has-topbar .navbar { top: 38px; }
    
    .trust-bar {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 30px 0;
      position: relative;
      z-index: 10;
    }
    .trust-flex {
      display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    }
    .trust-badge {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--text);
    }
    .trust-icon { font-size: 1.6rem; }

    .fomo-badge {
      display: inline-block;
      background: rgba(255, 76, 0, 0.15);
      color: var(--orange);
      border: 1px solid var(--orange);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-top: 10px;
      margin-bottom: 20px;
      animation: pulse-border 2s infinite;
    }
    @keyframes pulse-border {
      0% { box-shadow: 0 0 0 0 rgba(255, 76, 0, 0.4); }
      70% { box-shadow: 0 0 0 8px rgba(255, 76, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 76, 0, 0); }
    }

    /* ─── ABOUT ──────────────────────────────────────────── */
    .about { background: var(--bg3); }
    .about-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-frame {
      width: 100%; aspect-ratio: 1;
      max-width: 440px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      font-size: 6rem;
      position: relative;
    }
    .about-img-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(242,124,30,0.08), transparent 60%);
    }
    .about-img-badge {
      position: absolute; bottom: -16px; right: -16px;
      width: 110px; height: 110px;
      border-radius: 50%;
      background: var(--orange);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-size: 0.6rem; font-weight: 700;
      color: #fff;
      text-align: center;
      line-height: 1.3;
      box-shadow: 0 0 32px var(--orange-glow);
      padding: 10px;
    }
    .about-img-badge strong { font-size: 1.4rem; }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
      margin: 32px 0;
    }
    .stat-card {
      padding: 20px;
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      text-align: center;
    }
    .stat-value {
      font-family: var(--font-display);
      font-size: 2rem; font-weight: 900;
      color: var(--orange);
      display: block;
    }
    .stat-label {
      font-size: 12px; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.12em;
    }
    .about-text p {
      color: var(--text-muted); line-height: 1.8;
      margin-bottom: 16px;
    }

    /* ─── PAYMENTS ───────────────────────────────────────── */
    .payments { background: var(--bg2); }
    .payments-inner { text-align: center; }
    .payments-inner .divider { margin: 18px auto 40px; }
    .payments-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 860px;
      margin: 0 auto 40px;
    }
    .payment-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 20px;
      display: flex; flex-direction: column; align-items: center; gap: 12px;
      transition: var(--transition);
    }
    .payment-card:hover {
      border-color: rgba(242,124,30,0.4);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .payment-icon { font-size: 2.4rem; }
    .payment-name { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
    .payment-desc { font-size: 11px; color: var(--text-muted); text-align: center; }
    .trust-badges {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
      margin-top: 32px;
    }
    .trust-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--text-muted);
      padding: 8px 16px;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: var(--surface);
    }
    .trust-badge .icon { color: var(--orange); font-size: 15px; }

    /* ─── NEWSLETTER ─────────────────────────────────────── */
    .newsletter {
      background: linear-gradient(135deg, #1a1a1a 0%, #212121 50%, #121212 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .newsletter-inner {
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 24px;
    }
    .newsletter .section-title { max-width: 520px; }
    .newsletter-sub { color: var(--text-muted); max-width: 440px; }
    .newsletter-form, .cta-form {
      display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
      width: 100%;
    }
    .cta-form input[type="email"] {
      flex: 1; min-width: 260px; max-width: 380px;
      padding: 13px 20px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      border-radius: 6px;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 15px;
      outline: none;
      transition: border-color var(--transition);
    }
    .cta-form input[type="email"]:focus { border-color: var(--orange); }
    .cta-form input[type="email"]::placeholder { color: var(--text-muted); }

    /* ─── UX FEATURES ────────────────────────────────────── */
    #scrollProgress {
      position: fixed; top: 0; left: 0; width: 0%; height: 3px;
      background: var(--orange); z-index: 1000;
      transition: width 0.1s ease-out;
    }
    body.has-topbar #scrollProgress { top: 38px; }
    .whatsapp-float {
      position: fixed; bottom: 30px; right: 30px;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25d366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(37,211,102,0.4);
      z-index: 999; transition: var(--transition);
      text-decoration: none;
    }
    .whatsapp-float:hover { transform: scale(1.1) rotate(6deg); background: #128c7e; }
    .whatsapp-float svg { width: 30px; height: 30px; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      background: #121212;
      border-top: 1px solid var(--border);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .footer-brand .nav-logo { margin-bottom: 16px; }
    .footer-brand p {
      font-size: 14px; color: var(--text-muted); line-height: 1.7;
      max-width: 280px; margin-bottom: 24px;
    }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      transition: var(--transition); cursor: pointer;
    }
    .social-btn:hover {
      background: var(--orange-dim);
      border-color: var(--orange);
      transform: translateY(-2px);
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 14px; color: var(--text-muted);
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom-left {
      font-size: 13px; color: var(--text-muted);
    }
    .footer-bottom-right {
      display: flex; gap: 24px;
    }
    .footer-bottom-right a {
      font-size: 13px; color: var(--text-muted);
      transition: color var(--transition);
    }
    .footer-bottom-right a:hover { color: var(--text); }

    /* ─── INNER PAGES ────────────────────────────────────── */
    .page-header {
      padding: 160px 24px 80px;
      text-align: center;
      background: linear-gradient(135deg, #161616 0%, #212121 50%, #161616 100%);
      border-bottom: 1px solid var(--border);
    }
    .page-header h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.5rem);
      margin-bottom: 16px;
      color: var(--text);
    }
    .page-header h1 span { color: var(--orange); }
    .page-header p {
      color: var(--text-muted);
      font-size: 18px;
    }
    .page-content {
      padding: 80px 24px;
      max-width: 860px;
      margin: 0 auto;
    }
    .page-content h2 {
      font-family: var(--font-display);
      color: var(--orange);
      font-size: 2rem;
      margin-top: 48px;
      margin-bottom: 24px;
    }
    .page-content h3 {
      font-size: 1.4rem;
      margin-top: 32px;
      margin-bottom: 16px;
      color: var(--text);
    }
    .page-content p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 24px;
      font-size: 17px;
    }
    .page-content ul {
      margin-bottom: 24px;
      padding-left: 24px;
      list-style-type: disc;
      color: var(--text-muted);
    }
    .page-content li { margin-bottom: 12px; line-height: 1.6; }
    .page-content a { color: var(--orange); text-decoration: underline; }
    .page-content a:hover { color: #fff; }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 1024px) {
      .nav-links { gap: 24px; }
      .mystery-inner, .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .mystery-visual { max-width: 300px; margin: 0 auto; }
      .about-img-wrap { max-width: 400px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .payments-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-slide .card-deco { width: 340px; right: 2%; opacity: 0.8; }
    }
    @media (max-width: 768px) {
      :root { --nav-h: 64px; }
      .nav-logo-text { display: none; }
      .nav-links, .nav-cart { display: none; }
      .nav-hamburger { display: flex; }
      .collection-card {
        flex: 0 0 calc((100% - 24px) / 2);
      }
      section { padding: 64px 0; }
      .hero-title { font-size: clamp(1.9rem, 8vw, 3rem); }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .hero-slide .card-deco {
        width: 300px; right: 4%; top: 65%;
        opacity: 0.4;
        filter: blur(2px) drop-shadow(0 0 30px var(--orange-glow));
      }
    }
    @media (max-width: 540px) {
      .collection-card { flex: 0 0 calc(100% - 0px); }
      .payments-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; justify-content: center; }
      .collections-header { flex-direction: column; align-items: flex-start; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-slide .card-deco { width: 220px; right: -5%; top: 70%; opacity: 0.25; }
    }