﻿/* ═══════════════════════════════════════════════════════════
   SHOQAI — Premium Footwear Brand
   Design: Dark Luxury + Gold Accents
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --surface:   #141414;
  --surface2:  #1c1c1c;
  --border:    #2a2a2a;
  --gold:      #c9a96e;
  --gold-lt:   #e8c98a;
  --gold-dk:   #a07840;
  --white:     #f5f5f0;
  --gray:      #888;
  --gray-lt:   #aaa;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; }

/* ─── Section Labels ────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 60px 0 32px;
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-lt);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.cart-btn {
  position: relative;
  color: var(--white);
  padding: 4px;
  transition: color 0.2s;
}
.cart-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s var(--ease-out);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 2px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.lang-toggle:hover { color: var(--white); }

.lang-opt {
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 1px;
}
.lang-opt.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-sep {
  color: var(--border);
  font-size: 10px;
  user-select: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  gap: 0;
}
.mobile-nav.open { display: flex; }

.mobile-link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-lt);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(201,169,110,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(201,169,110,0.04) 0%, transparent 60%),
    var(--bg);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 820px;
  margin-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  color: var(--gray-lt);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════════════════════
   POSTER CAROUSEL
═══════════════════════════════════════════════════════════ */
.posters-section {
  background: var(--bg);
  padding-bottom: 80px;
}

.poster-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21/9;
  min-height: 320px;
  max-height: 640px;
  background: var(--surface);
}

.poster-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}

.poster-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.poster-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 6vw, 100px);
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, transparent 70%);
}

.poster-slide-content.center {
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.45);
}

.poster-badge {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.poster-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.poster-heading em { color: var(--gold); font-style: italic; }

.poster-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
  margin-bottom: 32px;
}

/* Placeholder poster (when no image) */
.poster-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 6vw, 100px);
}

/* Arrows */
.poster-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.poster-arrow:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.1); }
.poster-arrow--prev { left: 24px; }
.poster-arrow--next { right: 24px; }

/* Dots */
.poster-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.poster-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.poster-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════════
   CATALOG
═══════════════════════════════════════════════════════════ */
.catalog-section {
  padding: 100px 0;
  background: var(--bg);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.filter-tab:hover { color: var(--white); }
.filter-tab.active {
  color: var(--gold);
  border-color: rgba(201,169,110,0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

/* Product Card */
.product-card {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card.hidden { display: none; }

.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-card:hover .product-overlay { opacity: 1; }

.product-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--surface2);
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

/* ─── Card Gallery (multiple images) ──────────────────── */
.card-gallery {
  position: relative;
  width: 100%; height: 100%;
}

.card-gal-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.card-gal-slide {
  min-width: 100%; height: 100%;
  flex-shrink: 0;
}

.card-gal-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.product-card:hover .card-gal-slide img { transform: scale(1.06); }

.card-gal-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  z-index: 6;
  cursor: pointer;
}
.card-gal-btn:hover { background: rgba(0,0,0,0.8); }
.product-img-wrap:hover .card-gal-btn { opacity: 1; }
.card-gal-prev { left: 8px; }
.card-gal-next { right: 8px; }

.card-gal-dots {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
  z-index: 6;
}

.card-gal-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.card-gal-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Placeholder image */
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  position: relative;
}

.product-img-placeholder svg {
  width: 80px; height: 80px;
  opacity: 0.15;
}

.product-img-placeholder .placeholder-num {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--font-serif);
  font-size: 64px;
  color: rgba(255,255,255,0.04);
  font-weight: 300;
  line-height: 1;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.badge-new { background: var(--gold); color: #000; }
.badge-sale { background: #c0392b; color: #fff; }
.badge-hot { background: var(--surface2); color: var(--white); border: 1px solid var(--border); }

.product-info {
  padding: 20px 20px 24px;
  border-top: 1px solid var(--border);
}

.product-category {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
}

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

.product-price {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.product-price .old-price {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 8px;
}

.add-to-cart-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--surface);
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-img-wrap {
  position: relative;
}

.about-logo-wrap {
  aspect-ratio: 4/5;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.about-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-title em { color: var(--gold); font-style: italic; }

.about-text p {
  color: var(--gray-lt);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gold); }
.stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 120px 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 36px; }

.contact-item { display: flex; align-items: flex-start; gap: 20px; }

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--white); transition: color 0.2s; }
a.contact-value:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: #555; }
.form-input:focus { border-color: var(--gold); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: 12px; color: var(--gray); text-align: center; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.06);
  color: var(--gold-lt);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-tagline { font-size: 14px; color: var(--gray); line-height: 1.7; }

.footer-links { display: flex; gap: 80px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a { font-size: 14px; color: var(--gray); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}

.cart-title { font-family: var(--font-serif); font-size: 24px; font-weight: 400; }

.cart-close { color: var(--gray); transition: color 0.2s; }
.cart-close:hover { color: var(--white); }

.cart-body { flex: 1; overflow-y: auto; padding: 24px 32px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  gap: 16px;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 80px; height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface2);
}

.cart-item-info { flex: 1; }

.cart-item-name { font-family: var(--font-serif); font-size: 17px; margin-bottom: 4px; }
.cart-item-size { font-size: 12px; color: var(--gray); letter-spacing: 0.08em; margin-bottom: 12px; }
.cart-item-price { font-size: 15px; color: var(--gold); }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.qty-num { font-size: 14px; min-width: 20px; text-align: center; }

.cart-item-remove {
  align-self: flex-start;
  color: var(--gray);
  font-size: 18px;
  padding: 2px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}
.cart-total-price { font-family: var(--font-serif); font-size: 22px; color: var(--gold); }
.cart-note { font-size: 11px; color: var(--gray); text-align: center; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════════════════════════
   MODAL (Quick View)
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.96) translateY(20px);
  transition: transform 0.3s var(--ease-out);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  color: var(--gray);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img-wrap {
  aspect-ratio: 3/4;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Modal Gallery ──────────────────────────────────── */
.modal-gallery {
  position: relative;
  width: 100%; height: 100%;
}

.modal-gal-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-gal-slide {
  min-width: 100%; height: 100%;
  flex-shrink: 0;
}
.modal-gal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-gal-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-gal-btn:hover { background: rgba(0,0,0,0.85); }
.modal-gal-prev { left: 12px; }
.modal-gal-next { right: 12px; }

.modal-gal-dots {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.modal-gal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.modal-gal-dot.active { background: var(--gold); transform: scale(1.3); }

.modal-gal-counter {
  position: absolute;
  top: 12px; right: 14px;
  font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4);
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 5;
}

.modal-info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.modal-category { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.modal-name { font-family: var(--font-serif); font-size: 32px; font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.modal-price { font-size: 26px; color: var(--gold); margin-bottom: 32px; }

.size-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.size-btn {
  padding: 8px 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--white);
  background: transparent;
  transition: all 0.2s;
}
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 16px 24px;
  font-size: 14px;
  z-index: 2000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s var(--ease-out);
  pointer-events: none;
  max-width: 320px;
  border-left: 3px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Stagger delay for children */
.stagger-children > * { opacity: 0; transform: translateY(30px); }
.stagger-children.in-view > *:nth-child(1) { animation: fadeUp 0.6s 0s var(--ease-out) forwards; }
.stagger-children.in-view > *:nth-child(2) { animation: fadeUp 0.6s 0.1s var(--ease-out) forwards; }
.stagger-children.in-view > *:nth-child(3) { animation: fadeUp 0.6s 0.2s var(--ease-out) forwards; }
.stagger-children.in-view > *:nth-child(4) { animation: fadeUp 0.6s 0.3s var(--ease-out) forwards; }
.stagger-children.in-view > *:nth-child(5) { animation: fadeUp 0.6s 0.4s var(--ease-out) forwards; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-content { padding: 0 20px; }
  .poster-arrow { width: 40px; height: 40px; }
  .poster-arrow--prev { left: 12px; }
  .poster-arrow--next { right: 12px; }
  .catalog-section { padding: 60px 0; }
  .about-section { padding: 80px 0; }
  .about-inner { padding: 0 20px; }
  .contact-section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cart-drawer { width: 100vw; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .toast { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; gap: 1px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .poster-carousel { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  overflow-y: auto;
}
.checkout-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 1000px;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.4s var(--ease-out);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.checkout-overlay.open .checkout-modal {
  transform: translateY(0) scale(1);
}

.checkout-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  color: var(--gray);
  transition: color 0.2s;
  padding: 4px;
}
.checkout-close:hover { color: var(--white); }

.checkout-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 600px;
}

/* ─── Summary (left) ─────────────────────────────────────── */
.checkout-summary {
  background: var(--surface2);
  border-right: 1px solid var(--border);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checkout-section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.checkout-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.co-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.co-item:first-child { border-top: 1px solid var(--border); }

.co-item-thumb {
  width: 54px; height: 62px;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.co-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.co-item-info { flex: 1; }
.co-item-name { font-family: var(--font-serif); font-size: 16px; margin-bottom: 4px; line-height: 1.2; }
.co-item-meta { font-size: 11px; color: var(--gray); letter-spacing: 0.08em; }
.co-item-meta span + span::before { content: ' · '; }
.co-item-price { font-size: 14px; color: var(--white); text-align: right; white-space: nowrap; }

.checkout-total-wrap {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-lt);
}

.checkout-grand {
  font-size: 18px;
  color: var(--white);
  font-family: var(--font-serif);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.checkout-grand span:last-child { color: var(--gold); }

/* ─── Form (right) ───────────────────────────────────────── */
.checkout-form-wrap {
  padding: 48px 48px 48px 40px;
  overflow-y: auto;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.co-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.co-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.co-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.co-input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
}
.co-input::placeholder { color: #444; }
.co-input:focus { border-color: var(--gold); }
.co-input.error { border-color: #c0392b; }

.co-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Step blocks */
.co-step-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.co-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.co-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.co-step-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

/* Animated fields wrapper */
.co-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1),
              opacity 0.4s ease,
              margin-top 0.4s ease;
  margin-top: 0;
}
.co-fields-wrap.visible {
  max-height: 1200px;
  opacity: 1;
  margin-top: 0;
}

/* Method-specific fields */
.co-method-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
}
.co-method-fields.visible {
  max-height: 400px;
  opacity: 1;
}

.co-hint {
  font-size: 11px;
  color: var(--gray);
  padding: 8px 12px;
  border-left: 2px solid rgba(201,169,110,0.4);
  line-height: 1.5;
}

.co-optional {
  font-size: 10px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

/* Select */
.co-select {
  cursor: pointer;
  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'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
}
.co-select option { background: #1c1c1c; color: var(--white); }

/* Delivery options */
.co-delivery-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.co-radio-card { cursor: pointer; }
.co-radio-card input[type="radio"] { display: none; }

.co-radio-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.25s, background 0.25s, transform 0.15s;
}
.co-radio-card:hover .co-radio-body {
  border-color: rgba(201,169,110,0.4);
  transform: translateX(2px);
}
.co-radio-card input:checked + .co-radio-body {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.co-radio-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.co-radio-text { flex: 1; }
.co-radio-title { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.co-radio-sub { font-size: 11px; color: var(--gray); }
.co-radio-price { font-size: 13px; color: var(--gray-lt); white-space: nowrap; flex-shrink: 0; }
.co-radio-free { color: #4caf50; font-weight: 500; }

.co-submit { height: 52px; font-size: 13px; margin-top: 6px; }

.co-legal {
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

/* Success state */
.co-success {
  text-align: center;
  padding: 32px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.co-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
}
.co-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
}
.co-success p { font-size: 14px; color: var(--gray-lt); max-width: 320px; }
.co-success-num {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  margin-top: 8px;
}

/* ─── Responsive checkout ────────────────────────────────── */
@media (max-width: 820px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .checkout-form-wrap { padding: 32px 24px; }
  .co-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .checkout-overlay { padding: 0; align-items: flex-end; }
  .checkout-modal { border-radius: 0; max-height: 95vh; }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
