
    /* ===================================================
       CSS CUSTOM PROPERTIES — DARK ZEN PALETTE
    =================================================== */
    :root {
      --bg:           #0a0807;
      --bg-card:      #1c1714;
      --bg-card-hover:#251f1b;
      --bg-subtle:    #130f0d;
      --primary:      #1a637a;
      --primary-light:#2480a0;
      --primary-glow: rgba(26,99,122,0.35);
      --accent:       #cc9966;
      --accent-light: #ddb07d;
      --accent-glow:  rgba(204,153,102,0.3);
      --text:         #f5f7f8;
      --text-muted:   #9a8e87;
      --text-dim:     #5c524d;
      --border:       rgba(245,247,248,0.07);
      --border-glow:  rgba(26,99,122,0.4);
      --shadow-deep:  0 24px 64px rgba(0,0,0,0.8);
      --shadow-card:  0 8px 32px rgba(0,0,0,0.6);
      --radius-card:  18px;
      --radius-btn:   50px;
      --transition:   0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    }

    /* ===================================================
       RESET & BASE
    =================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--bg);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 400;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Grain overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      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='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.35;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

    .container {
      width: 100%;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===================================================
       UTILITIES
    =================================================== */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      clip: rect(0,0,0,0); overflow: hidden;
    }

    .tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(204,153,102,0.35);
      border-radius: 4px;
      padding: 3px 9px;
    }

    .stars {
      display: inline-flex;
      gap: 2px;
      color: var(--accent);
      font-size: 0.8rem;
    }

    /* ===================================================
       BUTTONS
    =================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 30px;
      border-radius: var(--radius-btn);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--text);
      box-shadow: 0 0 24px var(--primary-glow);
    }
    .btn-primary:hover {
      background: var(--primary-light);
      box-shadow: 0 0 36px rgba(26,99,122,0.55);
      transform: translateY(-2px);
    }

    .btn-accent {
      background: var(--accent);
      color: #1a120c;
      box-shadow: 0 0 24px var(--accent-glow);
    }
    .btn-accent:hover {
      background: var(--accent-light);
      box-shadow: 0 0 36px rgba(204,153,102,0.5);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary-light);
      box-shadow: 0 0 16px var(--primary-glow);
    }

    .btn-ghost {
      background: rgba(245,247,248,0.06);
      color: var(--text);
      border: 1px solid var(--border);
      padding: 11px 22px;
      font-size: 0.8rem;
    }
    .btn-ghost:hover {
      background: rgba(26,99,122,0.18);
      border-color: var(--primary);
    }

    /* ===================================================
       HEADER / NAV
    =================================================== */
    header {
      position: sticky;
      top: 0;
      z-index: 900;
      background: rgba(10,8,7,0.85);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 24px;
      height: 72px;
    }

    /* Logo */
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
    }
    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      line-height: 1;
    }
    .logo-text span { color: var(--accent); }

    /* Main nav */
    nav { flex: 1; display: flex; justify-content: center; }
    nav ul {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    nav a {
      display: block;
      padding: 8px 16px;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      border-radius: 8px;
      transition: var(--transition);
    }
    nav a:hover { color: var(--text); background: rgba(245,247,248,0.05); }
    nav a.active { color: var(--accent); }

    /* Search */
    .search-wrap {
      position: relative;
      flex-shrink: 0;
    }
    .search-wrap input {
      background: rgba(245,247,248,0.06);
      border: 1px solid var(--border);
      border-radius: 40px;
      padding: 8px 16px 8px 38px;
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.82rem;
      width: 200px;
      outline: none;
      transition: var(--transition);
    }
    .search-wrap input::placeholder { color: var(--text-dim); }
    .search-wrap input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 12px var(--primary-glow);
      width: 240px;
    }
    .search-wrap svg {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 15px;
      height: 15px;
      color: var(--text-dim);
      pointer-events: none;
    }

    /* Header actions */
    .header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

    .icon-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(245,247,248,0.05);
      border: 1px solid var(--border);
      color: var(--text-muted);
      transition: var(--transition);
    }
    .icon-btn:hover { color: var(--text); border-color: var(--primary); background: rgba(26,99,122,0.12); }
    .icon-btn svg { width: 18px; height: 18px; }

    .cart-badge {
      position: absolute;
      top: -4px; right: -4px;
      background: var(--accent);
      color: #1a120c;
      font-size: 0.6rem;
      font-weight: 700;
      width: 16px; height: 16px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }

    /* Mobile menu toggle */
    .menu-toggle { display: none; }
    #mobile-account-btn { display: none; }

    /* ===================================================
       HERO
    =================================================== */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 80px 0 60px;
    }

    /* Atmospheric background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 75% 50%, rgba(26,99,122,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(204,153,102,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(26,99,122,0.06) 0%, transparent 50%),
        var(--bg);
    }

    /* Animated mist wisps */
    .hero-mist {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .mist-wisp {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0;
      animation: mist-rise 14s ease-in-out infinite;
    }
    .mist-wisp:nth-child(1) {
      width: 300px; height: 500px;
      background: radial-gradient(ellipse, rgba(245,247,248,0.06) 0%, transparent 70%);
      left: 62%; bottom: -100px;
      animation-delay: 0s;
    }
    .mist-wisp:nth-child(2) {
      width: 200px; height: 400px;
      background: radial-gradient(ellipse, rgba(245,247,248,0.04) 0%, transparent 70%);
      left: 68%; bottom: -80px;
      animation-delay: 4s;
    }
    .mist-wisp:nth-child(3) {
      width: 160px; height: 320px;
      background: radial-gradient(ellipse, rgba(26,99,122,0.08) 0%, transparent 70%);
      left: 57%; bottom: -60px;
      animation-delay: 8s;
    }

    @keyframes mist-rise {
      0%   { opacity: 0; transform: translateY(0) scaleX(1); }
      20%  { opacity: 1; }
      80%  { opacity: 0.6; }
      100% { opacity: 0; transform: translateY(-600px) scaleX(1.4); }
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      width: 100%;
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero-content { max-width: 560px; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .hero-eyebrow-line {
      width: 32px; height: 1px;
      background: var(--accent);
    }
    .hero-eyebrow-text {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--text);
    }
    .hero h1 em {
      font-style: italic;
      color: var(--primary-light);
    }

    .hero-lead {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 440px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-value span { color: var(--accent); }
    .stat-label {
      font-size: 0.72rem;
      color: var(--text-dim);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* -----------------------------------------------
       HERO VISUAL — video/image holder
    ----------------------------------------------- */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* Container that holds the video and floating badges */
    .hero-media-wrap {
      position: relative;
      width: 100%;
      max-width: 480px;
    }

    /* Ambient glow ring behind media */
    .hero-media-wrap::before {
      content: '';
      position: absolute;
      inset: -30px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(26,99,122,0.22) 0%, transparent 65%);
      animation: glow-pulse 4s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }
    @keyframes glow-pulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50%       { opacity: 1;   transform: scale(1.06); }
    }

    /* Image holder (replaces video) */
    .hero-image-holder {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 3 / 4;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-deep), 0 0 60px rgba(26,99,122,0.15);
      background: var(--bg-card);
    }

    /* Placeholder shown when no image is set */
    .hero-img-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 28px;
      background: var(--bg-card);
      border: 1px dashed rgba(26,99,122,0.4);
      color: var(--text-dim);
    }

    /* Floating badges on hero */
    .hero-badge {
      position: absolute;
      background: rgba(28,23,20,0.9);
      border: 1px solid var(--border);
      backdrop-filter: blur(16px);
      border-radius: 14px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float-badge 6s ease-in-out infinite;
      box-shadow: var(--shadow-card);
      z-index: 3;
    }
    .hero-badge-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .hero-badge-text { line-height: 1.3; }
    .hero-badge-title { font-size: 0.8rem; font-weight: 600; color: var(--text); }
    .hero-badge-sub   { font-size: 0.68rem; color: var(--text-muted); }

    .badge-1 { top: 30px;  left: -20px;  animation-delay: 0s; }
    .badge-2 { bottom: 60px; right: -24px; animation-delay: 2.5s; }

    @keyframes float-badge {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }

    /* ===================================================
       SECTION HEADING
    =================================================== */
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    .section-eyebrow::before,
    .section-eyebrow::after {
      content: '';
      width: 24px; height: 1px;
      background: var(--accent);
      opacity: 0.6;
    }
    .section-eyebrow span {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 600;
      color: var(--text);
      margin-bottom: 16px;
    }
    .section-header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ===================================================
       PRODUCT GRID SECTION
    =================================================== */
    .products-section {
      padding: 100px 0;
      position: relative;
    }
    .products-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    }

    .filter-bar {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .filter-btn {
      padding: 8px 20px;
      border-radius: 40px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      background: rgba(245,247,248,0.04);
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .filter-btn:hover, .filter-btn.active {
      background: rgba(26,99,122,0.18);
      border-color: var(--primary);
      color: var(--text);
    }
    .filter-btn.active { color: var(--primary-light); }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .product-card {
      background: transparent;
      border-radius: var(--radius-card);
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      position: relative;
    }
    .product-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(26,99,122,0.4);
      transform: translateY(-6px);
      box-shadow: var(--shadow-deep), 0 0 40px rgba(26,99,122,0.12);
    }

    .product-card-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 6px;
    }
    .badge-new        { background: var(--primary); color: var(--text); }
    .badge-bestseller { background: var(--accent);  color: #1a120c; }
    .badge-sale       { background: #7a2e1a;        color: var(--text); }

    .product-wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 32px; height: 32px;
      border-radius: 8px;
      background: rgba(10,8,7,0.7);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-dim);
      transition: var(--transition);
      font-size: 0.85rem;
    }
    .product-wishlist:hover { color: #e87070; border-color: #e87070; }

    /* -----------------------------------------------
       PRODUCT IMAGE — img holder
    ----------------------------------------------- */
    .product-img {
      aspect-ratio: 1 / 1;
      position: relative;
      overflow: hidden;
      background: transparent;   /* fallback colour */
    }

    /* The actual <img> tag — replace src with your photo URL */
    .product-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image {
      transform: scale(1.04);
    }

    /* Shown when src is empty / image fails to load */
    .product-img-fallback {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--text-dim);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      pointer-events: none;
    }
    .product-img-fallback svg {
      width: 32px; height: 32px;
      opacity: 0.35;
      color: var(--primary);
    }
    /* Hide fallback once a real image is loaded */
    .product-image[src]:not([src=""]) ~ .product-img-fallback { display: none; }

    /* Subtle gradient overlay on product image */
    .product-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(10,8,7,0.55) 100%);
      pointer-events: none;
    }

    .product-body { padding: 18px 18px 22px; display: flex; flex-direction: column; flex: 1; }

    .product-cat {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 6px;
    }

    .product-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 14px;
    }
    .rating-count {
      font-size: 0.72rem;
      color: var(--text-dim);
    }

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

    .product-price {
      display: flex;
      flex-direction: column;
    }
    .price-current {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
    }
    .price-old {
      font-size: 0.78rem;
      color: var(--text-dim);
      text-decoration: line-through;
    }

    .add-to-cart {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px; height: 42px;
      border-radius: 12px;
      background: var(--primary);
      color: var(--text);
      font-size: 1.2rem;
      transition: var(--transition);
      box-shadow: 0 0 16px var(--primary-glow);
      flex-shrink: 0;
    }
    .add-to-cart:hover {
      background: var(--primary-light);
      box-shadow: 0 0 24px rgba(26,99,122,0.6);
      transform: scale(1.08);
    }
    .add-to-cart svg { width: 18px; height: 18px; }

    /* ===================================================
       SHOWCASE / FEATURED PRODUCT
    =================================================== */
    .showcase-section {
      padding: 100px 0;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-subtle) 50%, var(--bg) 100%);
      position: relative;
      overflow: hidden;
    }

    .showcase-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(26,99,122,0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .showcase-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }

    /* Large showcase visual */
    .showcase-visual {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    /* -----------------------------------------------
       SHOWCASE FRAME — img or video holder
    ----------------------------------------------- */
    .showcase-frame {
      width: 460px;
      height: 520px;
      background: var(--bg-card);
      border-radius: 28px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-deep), 0 0 80px rgba(26,99,122,0.1);
    }

    /* Atmospheric gradient overlaid on top of the image */
    .showcase-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(26,99,122,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 20% at 50% 0%,   rgba(204,153,102,0.06) 0%, transparent 50%);
      pointer-events: none;
      z-index: 1;
    }

    /* The showcase <img> — replace src with your photo */
    .showcase-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      position: relative;
      z-index: 0;
    }

    /* Fallback shown when no src provided */
    .showcase-img-fallback {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: var(--text-dim);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .showcase-img-fallback svg {
      width: 48px; height: 48px;
      color: var(--primary);
      opacity: 0.5;
    }
    .showcase-image[src]:not([src=""]) ~ .showcase-img-fallback { display: none; }

    /* Decorative corner lines */
    .frame-corner {
      position: absolute;
      width: 20px; height: 20px;
      border-color: var(--accent);
      border-style: solid;
      opacity: 0.4;
      z-index: 2;
    }
    .fc-tl { top: 16px;    left: 16px;  border-width: 1px 0 0 1px; }
    .fc-tr { top: 16px;    right: 16px; border-width: 1px 1px 0 0; }
    .fc-bl { bottom: 16px; left: 16px;  border-width: 0 0 1px 1px; }
    .fc-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

    /* Showcase info */
    .showcase-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 0.75rem;
      color: var(--text-dim);
    }
    .showcase-breadcrumb span { color: var(--text-muted); }
    .showcase-breadcrumb svg { width: 12px; height: 12px; }

    .showcase-info h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 600;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.15;
    }
    .showcase-info h2 span { color: var(--primary-light); font-style: italic; }

    .showcase-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
    }
    .showcase-rating-count { font-size: 0.8rem; color: var(--text-muted); }

    .showcase-desc {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 28px;
    }

    /* Color options */
    .option-group { margin-bottom: 28px; }
    .option-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 12px;
    }
    .color-options { display: flex; gap: 10px; flex-wrap: wrap; }
    .color-opt {
      width: 40px; height: 40px;
      border-radius: 10px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
    }
    .color-opt.active {
      border-color: var(--text);
      box-shadow: 0 0 12px rgba(245,247,248,0.2);
    }
    .color-opt:hover { transform: scale(1.1); }
    .color-opt-ocean { background: linear-gradient(135deg, #1e5570, #1a3f50); }
    .color-opt-amber { background: linear-gradient(135deg, #5a4a20, #3a2d0f); }
    .color-opt-ivory { background: linear-gradient(135deg, #d4c8b4, #b8a990); }
    .color-opt-onyx  { background: linear-gradient(135deg, #2a2a2a, #111); }
    .color-opt-sage  { background: linear-gradient(135deg, #2a4a30, #1a3020); }

    /* Size options */
    .size-options { display: flex; gap: 8px; }
    .size-opt {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--text-muted);
      border: 1px solid var(--border);
      background: transparent;
      cursor: pointer;
      transition: var(--transition);
    }
    .size-opt.active,
    .size-opt:hover {
      border-color: var(--primary);
      color: var(--text);
      background: rgba(26,99,122,0.14);
    }

    .showcase-price {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 32px;
    }
    .sp-current {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--text);
    }
    .sp-old {
      font-size: 1rem;
      color: var(--text-dim);
      text-decoration: line-through;
    }
    .sp-save {
      font-size: 0.75rem;
      font-weight: 600;
      color: #5eba6e;
      background: rgba(94,186,110,0.12);
      padding: 3px 8px;
      border-radius: 6px;
    }

    .showcase-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .qty-control {
      display: flex;
      align-items: center;
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }
    .qty-btn {
      width: 42px; height: 52px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      color: var(--text-muted);
      background: transparent;
      transition: var(--transition);
    }
    .qty-btn:hover { color: var(--text); background: rgba(245,247,248,0.05); }
    .qty-input {
      width: 44px;
      text-align: center;
      background: transparent;
      border: none;
      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      height: 52px;
      outline: none;
    }

    .showcase-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .feature-item svg {
      width: 16px; height: 16px;
      color: var(--primary-light);
      flex-shrink: 0;
    }

    /* ===================================================
       TESTIMONIALS / AMBIENT STRIP
    =================================================== */
    .ambient-section {
      padding: 80px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--bg-subtle);
      overflow: hidden;
    }
    .ambient-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
    }
    .ambient-card {
      padding: 32px;
      background: var(--bg-card);
      border-radius: 20px;
      border: 1px solid var(--border);
    }
    .ambient-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .ambient-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--bg);
    }
    .av-1 { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
    .av-2 { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
    .av-3 { background: linear-gradient(135deg, #5a3a8a, #8060b0); }
    .author-name { font-size: 0.82rem; font-weight: 600; color: var(--text); }
    .author-role { font-size: 0.72rem; color: var(--text-dim); }

    /* ===================================================
       FOOTER
    =================================================== */
    footer {
      background: var(--bg-subtle);
      border-top: 1px solid var(--border);
    }

    .footer-top { padding: 80px 0 60px; }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 60px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    .footer-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 28px;
      max-width: 280px;
    }
    .social-links { display: flex; gap: 8px; }
    .social-btn {
      width: 36px; height: 36px;
      border-radius: 9px;
      background: rgba(245,247,248,0.05);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted);
      font-size: 0.85rem;
      transition: var(--transition);
    }
    .social-btn:hover {
      background: rgba(26,99,122,0.15);
      border-color: var(--primary);
      color: var(--text);
    }
    .social-btn svg { width: 14px; height: 14px; }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 18px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 0.84rem;
      color: var(--text-dim);
      transition: var(--transition);
    }
    .footer-col a:hover { color: var(--text); }

    .newsletter-text {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .newsletter-input {
      background: rgba(245,247,248,0.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 16px;
      color: var(--text);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.84rem;
      outline: none;
      transition: var(--transition);
    }
    .newsletter-input::placeholder { color: var(--text-dim); }
    .newsletter-input:focus { border-color: var(--primary); box-shadow: 0 0 10px var(--primary-glow); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 0;
    }
    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .copyright { font-size: 0.78rem; color: var(--text-dim); }
    .copyright span { color: var(--accent); }

    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a {
      font-size: 0.78rem;
      color: var(--text-dim);
      transition: var(--transition);
    }
    .footer-legal a:hover { color: var(--text-muted); }

    .payment-icons { display: flex; gap: 6px; align-items: center; }
    .pay-icon {
      padding: 4px 10px;
      background: rgba(245,247,248,0.05);
      border: 1px solid var(--border);
      border-radius: 5px;
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--text-dim);
      letter-spacing: 0.04em;
    }

    /* ===================================================
       RESPONSIVE — RWD
    =================================================== */
    @media (max-width: 1100px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid  { grid-template-columns: 1fr 1fr; gap: 40px; }
      .showcase-inner { gap: 50px; }
      .showcase-frame { width: 380px; height: 440px; }
    }

    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
      .hero-content { max-width: 100%; margin: 0 auto; }
      .hero-eyebrow { justify-content: center; }
      .hero-cta   { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { order: -1; }
      .badge-1, .badge-2 { display: none; }
      .hero-media-wrap { max-width: 360px; }

      .showcase-inner { grid-template-columns: 1fr; }
      .showcase-visual { order: -1; }
      .showcase-frame { width: 100%; max-width: 480px; height: 380px; }

      .ambient-inner { grid-template-columns: 1fr; }

      nav { display: none; }
      .menu-toggle { display: flex; }
      .search-wrap input { width: 160px; }
    }

    @media (max-width: 640px) {
      /* Header — compact mobile bar */
      .header-inner {
        height: 60px;
        gap: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
      }

      /* Logo tylko ikona + tekst, bez ucinania */
      .logo { gap: 8px; }
      .logo-text { font-size: 1rem; }

      /* Schowaj szukajkę i nav-login na małych ekranach */
      .search-wrap { display: none; }
      nav { display: none; }
      #nav-login-btn { display: none !important; }
      #nav-logout-btn { display: none !important; }

      /* Prawa strona: tylko koszyk */
      .header-actions {
        gap: 6px;
        flex-shrink: 0;
      }

      /* Koszyk zawsze widoczny i czytelny */
      #cart-btn {
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
      }

      /* Ikonka konta na mobile */
      #mobile-account-btn {
        width: 44px;
        height: 44px;
        display: flex !important;
        align-items: center;
        justify-content: center;
      }

      .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
      .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom-inner { flex-direction: column; text-align: center; }
      .hero-stats   { flex-wrap: wrap; gap: 24px; }
      .showcase-price   { flex-wrap: wrap; }
      .showcase-actions { flex-direction: column; }
      .showcase-actions .btn { justify-content: center; }
      .showcase-features { grid-template-columns: 1fr; }
      .color-options { gap: 8px; }
    }

    /* ===================================================
       FAQ SECTION
    =================================================== */
    .faq-section {
      padding: 90px 0;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 56px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color var(--transition);
    }
    .faq-item:hover { border-color: rgba(26,99,122,0.4); }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 22px 26px;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      user-select: none;
      -webkit-user-select: none;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(26,99,122,0.15);
      border: 1px solid rgba(26,99,122,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-light);
      font-size: 1.1rem;
      line-height: 1;
      transition: transform 0.3s ease, background 0.3s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(26,99,122,0.3);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.25,0.46,0.45,0.94), padding 0.35s;
      padding: 0 26px;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.75;
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
      padding: 0 26px 22px;
    }

    @media (max-width: 760px) {
      .faq-grid { grid-template-columns: 1fr; }
    }
    /* ===================================================
   LEGAL PAGES (Regulamin & Polityka Prywatności)
=================================================== */
.legal-section {
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px 48px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  color: var(--text-muted);
}

.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 760px) {
  .legal-content {
    padding: 30px 24px;
  }
}
  