/* ===== Elite Noir & Champagne Design System ===== */
:root {
  --ink: #090b0f;
  --ink-raised: #11141b;
  --ink-card: #181c25;
  --ink-surface: #1f2430;
  --ivory: #f4f1ec;
  --ivory-muted: rgba(244, 241, 236, 0.62);
  --ivory-dim: rgba(244, 241, 236, 0.38);
  --champagne: #c4a574;
  --champagne-bright: #d9bc8a;
  --champagne-dim: rgba(196, 165, 116, 0.14);
  --pack-kraft: #e8dfd0;
  --pack-kraft-dark: #cfc3ae;

  --bg: var(--ink);
  --bg-elevated: var(--ink-raised);
  --bg-card: var(--ink-card);
  --bg-subtle: rgba(255, 255, 255, 0.04);
  --bg-dark: #050608;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: var(--ivory);
  --text-muted: var(--ivory-muted);
  --text-dim: var(--ivory-dim);
  --accent: var(--champagne);
  --accent-hover: var(--champagne-bright);
  --accent-light: var(--champagne-bright);
  --accent-muted: var(--champagne-dim);
  --accent-glow: rgba(196, 165, 116, 0.22);
  --accent-secondary: var(--champagne-bright);
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.5);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 100%; padding-inline: clamp(1.25rem, 3.5vw, 3.5rem); margin-inline: auto; }

#products,
#customize,
#cart,
#why-us,
#track-order,
#contact {
  scroll-margin-top: 5.5rem;
}

/* ===== Typography ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin-inline: auto; }

.text-gradient {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--champagne-bright) 50%, var(--champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne-bright), var(--champagne));
  color: var(--ink);
  box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--accent-light);
  color: var(--accent);
}

.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(9, 11, 15, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover .logo-mark {
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 12px var(--accent-glow));
}

.logo-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: translateY(2px);
}

.logo-icon__frame {
  fill: var(--ink-card);
  stroke: rgba(196, 165, 116, 0.55);
  stroke-width: 1.2;
}

.logo-icon__box {
  fill: var(--pack-kraft);
  stroke: rgba(196, 165, 116, 0.7);
  stroke-width: 0.9;
  stroke-linejoin: round;
}

.logo-icon__lid {
  fill: rgba(242, 235, 224, 0.55);
  stroke: rgba(196, 165, 116, 0.45);
  stroke-width: 0.7;
  stroke-linejoin: round;
}

.logo-icon__edge {
  stroke: rgba(196, 165, 116, 0.35);
  stroke-width: 0.7;
}

.logo-icon__tape {
  fill: var(--champagne-bright);
  opacity: 0.9;
}

.logo-icon__seal {
  fill: var(--champagne);
  opacity: 0.85;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: lowercase;
  font-variant-ligatures: none;
}

.logo-text__name {
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: -0.03em;
}

.logo-text__tld {
  font-weight: 800;
  background: linear-gradient(120deg, var(--champagne-bright) 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
}

.logo-text--admin {
  font-size: 1.35rem;
}

.logo-text--compact {
  font-size: 0.98rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  background: var(--bg-card);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  height: 34px;
  box-sizing: border-box;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  transition: var(--transition);
}

.cart-btn:hover { color: var(--accent); border-color: var(--accent-light); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 165, 116, 0.08), transparent),
    linear-gradient(165deg, var(--bg-dark) 0%, var(--bg) 60%, var(--ink-raised) 100%);
  color: var(--text);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob--1 {
  width: 500px; height: 500px;
  background: rgba(196, 165, 116, 0.07);
  top: -10%; right: -5%;
}

.hero-blob--2 {
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.03);
  bottom: 10%; left: -10%;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 3rem;
  align-items: center;
}

.hero-text { grid-column: 1; grid-row: 1; }

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--accent-muted);
  border: 1px solid rgba(196, 165, 116, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--champagne-bright);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.hero-visual__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 165, 116, 0.16);
  pointer-events: none;
  animation: heroOrbitSpin 24s linear infinite;
}

.hero-visual__orbit--1 {
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.hero-visual__orbit--2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-style: dashed;
  opacity: 0.5;
  animation-direction: reverse;
  animation-duration: 32s;
}

.hero-visual__scene {
  --px: 0;
  --py: 0;
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 400 / 360;
  transform: perspective(1000px) rotateY(calc(var(--px) * 10deg)) rotateX(calc(var(--py) * -8deg));
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-visual__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 52% 40%, rgba(196, 165, 116, 0.26), transparent 55%),
    radial-gradient(ellipse at 28% 68%, rgba(107, 154, 148, 0.12), transparent 42%),
    radial-gradient(ellipse at 78% 62%, rgba(232, 212, 168, 0.08), transparent 38%);
  animation: heroGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
  filter: blur(3px);
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero-orbit-ring {
  transform-origin: 200px 180px;
  animation: heroOrbitSpin 20s linear infinite, heroDashFlow 3s linear infinite;
}

.hero-orbit-ring--2 {
  animation-direction: reverse, normal;
  animation-duration: 28s, 4.5s;
}

.hero-layer {
  transition: filter 0.25s ease;
}

.hero-layer--box {
  transform-origin: 220px 128px;
  animation: heroFloat 7s ease-in-out infinite, heroTilt 9s ease-in-out infinite;
}

.hero-layer--bubble {
  transform-origin: 86px 122px;
  animation: heroFloat 6s -2s ease-in-out infinite, heroDrift 8s -1s ease-in-out infinite;
}

.hero-layer--mailer {
  transform-origin: 200px 189px;
  animation: heroFloat 5.5s -1s ease-in-out infinite, heroMailerSway 6s ease-in-out infinite;
}

.hero-layer--tape {
  transform-origin: 84px 196px;
  animation: heroFloat 6.5s -3s ease-in-out infinite, heroTapeRoll 10s linear infinite;
}

.hero-badge {
  animation: heroBadgeFloat 5s ease-in-out infinite;
}

.hero-badge--1 { animation-delay: -1s; }
.hero-badge--2 { animation-delay: -2.5s; }
.hero-badge--3 { animation-delay: -0.5s; }
.hero-badge--4 { animation-delay: -3.2s; }
.hero-badge--5 { animation-delay: -1.8s; }

.hero-orbit-dot--1 {
  transform-origin: 200px 180px;
  animation: heroOrbitSpin 20s linear infinite;
}

.hero-orbit-dot--2 {
  transform-origin: 200px 180px;
  animation: heroOrbitSpin 20s -10s linear infinite reverse;
}

.hero-visual:hover .hero-layer--mailer {
  filter: url(#heroShadow) brightness(1.08) saturate(1.05);
}

.hero-visual:hover .hero-layer--box {
  filter: url(#heroShadow) brightness(1.06) saturate(1.04);
}

.hero-visual:hover .hero-layer--bubble {
  filter: url(#heroGlow) brightness(1.06);
}

.hero-visual:hover .hero-badge {
  filter: url(#heroSoftGlow) brightness(1.15);
}

.hero-mailer-flap {
  transform-origin: 200px 148px;
  animation: heroFlap 5s ease-in-out infinite;
}

.hero-seal {
  animation: heroSealShine 2.8s ease-in-out infinite;
}

.hero-tape-strip {
  animation: heroTapeExtend 3.5s ease-in-out infinite;
}

.hero-sparkle {
  opacity: 0.55;
  animation: heroSparkle 2.4s ease-in-out infinite;
}

.hero-sparkle--2 { animation-delay: -0.8s; }
.hero-sparkle--3 { animation-delay: -1.6s; }
.hero-sparkle--4 { animation-delay: -2.2s; }

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0.35rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.55;
}

.hero-stats__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  transition: var(--transition);
  position: relative;
}

.hero-stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}

.hero-stats__item:hover {
  background: rgba(196, 165, 116, 0.06);
}

.hero-stats__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-muted);
  border: 1px solid rgba(196, 165, 116, 0.22);
  color: var(--champagne-bright);
  transition: var(--transition);
}

.hero-stats__item:hover .hero-stats__icon {
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow: 0 0 20px var(--accent-glow);
}

.hero-stats__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.hero-stats__value {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--champagne-bright), var(--champagne));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes heroOrbitSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes heroDashFlow {
  to { stroke-dashoffset: -40; }
}

@keyframes heroBadgeFloat {
  0%, 100% { translate: 0 0; opacity: 0.85; }
  50% { translate: 0 -5px; opacity: 1; }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes heroTilt {
  0%, 100% { rotate: 0deg; }
  50% { rotate: 1.5deg; }
}

@keyframes heroDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 4px -6px; }
}

@keyframes heroMailerSway {
  0%, 100% { rotate: 0deg; }
  35% { rotate: -1.2deg; }
  65% { rotate: 1deg; }
}

@keyframes heroTapeRoll {
  0%, 100% { rotate: 0deg; }
  50% { rotate: 6deg; }
}

@keyframes heroFlap {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes heroSealShine {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; filter: brightness(1.25); }
}

@keyframes heroTapeExtend {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; transform: translateX(6px); }
}

@keyframes heroSparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual__orbit,
  .hero-visual__glow,
  .hero-orbit-ring,
  .hero-orbit-dot,
  .hero-badge,
  .hero-layer--box,
  .hero-layer--bubble,
  .hero-layer--mailer,
  .hero-layer--tape,
  .hero-mailer-flap,
  .hero-seal,
  .hero-tape-strip,
  .hero-sparkle {
    animation: none;
  }

  .hero-visual__scene { transition: none; }
}

/* ===== Products ===== */
.categories {
  padding: 4rem 0 5rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: fit-content;
}

.category-tab {
  padding: 0.55rem 1.15rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-tab:hover { color: var(--text); }

.category-tab.active {
  background: var(--bg-card);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card));
}

.product-icon { width: 70%; max-width: 140px; transition: transform 0.4s ease; }
.product-icon svg { width: 100%; height: auto; display: block; }
.product-card:hover .product-icon { transform: scale(1.06) translateY(-3px); }

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.4s ease;
}

.product-card:hover .product-photo { transform: scale(1.04); }

.product-photo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.product-photo-btn:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

/* ===== Image Lightbox ===== */
.image-lightbox {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 1.25rem;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: visible;
}

.image-lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox::backdrop {
  background: rgba(5, 6, 8, 0.88);
  backdrop-filter: blur(8px);
}

.image-lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  background: rgba(24, 28, 37, 0.92);
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.image-lightbox__close:hover {
  color: var(--champagne-bright);
  border-color: rgba(196, 165, 116, 0.45);
}

.image-lightbox__figure {
  margin: 0;
  width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.image-lightbox__figure img {
  max-width: 100%;
  max-height: calc(90vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--ink-card);
}

.image-lightbox__figure figcaption {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ivory);
  text-align: center;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 0.65rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  line-height: 1;
}

.product-body { padding: 1.25rem; }

.product-category {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

/* ===== Deep Midnight Obsidian Glass Badge with Champagne Gold Border & Text ===== */
.product-deal-ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 24px;
  padding: 0 0.65rem;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(217, 188, 138, 0.65);
  color: var(--champagne-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), 0 0 10px rgba(217, 188, 138, 0.2);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.product-deal-ribbon:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7), 0 0 14px rgba(217, 188, 138, 0.4);
}

/* ===== Price Strikethrough & Effective Price ===== */
.product-price .price-strikethrough {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: normal;
}

.product-price .price-discounted {
  font-size: 1.15rem;
  font-weight: 800;
  color: #34d399;
}

.product-price .price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: normal;
  margin-left: 0.2rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}

.product-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.product-price span { font-size: 0.75rem; color: var(--text-dim); font-weight: 500; }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-variant {
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c4a574' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.product-variant:hover,
.product-variant:focus {
  outline: none;
  border-color: var(--accent-light);
}

.product-btn {
  width: 100%;
  padding: 0.55rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.product-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

/* ===== Customization ===== */
.customize {
  padding: 5rem 0;
  background: var(--bg);
}

.studio {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.studio-controls {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

.product-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.type-btn .type-icon { font-size: 1.2rem; }

.type-btn:hover { border-color: var(--border-strong); color: var(--text); }

.type-btn.active {
  background: var(--accent-muted);
  border-color: var(--accent-light);
  color: var(--accent);
}

.control-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.control-panel[hidden] {
  display: none !important;
}

.control-group { display: flex; flex-direction: column; gap: 0.45rem; }

.control-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.label-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.label-toggle-row > label:first-child {
  margin-bottom: 0;
}

/* Toggle switch */
.toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--ivory);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-input {
  margin-top: 0.35rem;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-header label { margin-bottom: 0; }

.control-group select,
.control-group input[type="text"] {
  padding: 0.7rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.control-group select:focus,
.control-group input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.control-group input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
  height: 6px;
}

.range-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.studio-summary {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.summary-row.total {
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
}

.summary-row strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.studio-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  border-top-left-radius: calc(var(--radius-xl) - 1px);
  border-top-right-radius: calc(var(--radius-xl) - 1px);
  flex-shrink: 0;
}

.preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.preview-dims { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.preview-stage {
  position: relative;
  flex: 1;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--ink-surface) 0%, var(--ink-raised) 100%);
  overflow: visible;
}

.preview-viewport {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.5rem;
  overflow: visible;
}

.preview-viewport .model { position: absolute; inset: 0; }

.model { display: none; align-items: center; justify-content: center; }
.model.is-active { display: flex; }

/* SVG technical spec drawings (isometric product illustrations) */
.spec-preview {
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.spec-svg {
  width: 100%;
  max-height: 300px;
  overflow: visible;
}

.spec-face {
  stroke: rgba(0, 0, 0, 0.14);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.spec-face--top { filter: brightness(1.06); }
.spec-face--side { filter: brightness(0.88); }

.spec-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: #5a4a38;
  font-family: var(--font-sans);
}

.spec-tape-print {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: #b54545;
  font-family: var(--font-sans);
}

.spec-tape-roll {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
}

.spec-cover-seal {
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 1;
}

.spec-cover-lip {
  pointer-events: none;
}

.spec-cover-tear {
  stroke: rgba(0, 0, 0, 0.14);
  stroke-width: 1;
  stroke-dasharray: 4 3;
}

.spec-cover-crease {
  stroke: rgba(0, 0, 0, 0.07);
  stroke-width: 1;
}

.spec-cover-weld {
  fill: none;
  stroke: rgba(0, 0, 0, 0.1);
  stroke-width: 1;
}

.spec-dim-line {
  stroke: var(--champagne-bright);
  stroke-width: 1.2;
  fill: none;
}

.spec-dim-arrow {
  fill: var(--champagne-bright);
}

.spec-dim-text {
  font-size: 11px;
  font-weight: 600;
  fill: var(--champagne-bright);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
}

.preview-specs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border-bottom-left-radius: calc(var(--radius-xl) - 1px);
  border-bottom-right-radius: calc(var(--radius-xl) - 1px);
  flex-shrink: 0;
}

.preview-specs span::before { content: '·'; margin-right: 1.5rem; color: var(--border-strong); }
.preview-specs span:first-child::before,
.preview-specs span.preview-type-tag::before { content: none; margin: 0; }

.preview-type-tag {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ===== Cart ===== */
.cart-section {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
}

.cart-items-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  min-height: 260px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 2rem;
  color: var(--text-dim);
  text-align: center;
}

.cart-empty[hidden] {
  display: none !important;
}

.cart-empty svg { opacity: 0.35; color: var(--text-muted); }

.cart-items { list-style: none; }

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-type {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.cart-item-name { font-size: 0.95rem; font-weight: 600; margin: 0.2rem 0; }
.cart-item-detail { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-qty { font-size: 0.75rem; color: var(--text-dim); }

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.cart-item-price { font-weight: 700; color: var(--accent-secondary); }

.cart-remove {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-remove:hover { border-color: #c9a07a; color: #8b4513; background: rgba(184, 149, 106, 0.15); }

.cart-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow);
}

.cart-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cart-summary-row.grand {
  margin: 0.75rem 0 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.cart-summary-row.grand strong {
  font-size: 1.25rem;
  color: var(--accent-secondary);
}

.cart-summary .btn { margin-bottom: 0.5rem; }
.cart-summary .btn:last-child { margin-bottom: 0; }

/* ===== Why Us ===== */
.why-us {
  padding: 5rem 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-muted);
  border-radius: var(--radius);
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Contact ===== */
.contact {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info p { color: var(--text-muted); margin-bottom: 1.5rem; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

.contact-details li {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-details svg { color: var(--accent); flex-shrink: 0; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== Footer ===== */
.footer {
  padding: 3.5rem 0 2.25rem;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.85rem;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.footer-links a:hover {
  color: var(--champagne-bright);
  transform: translateX(2px);
}

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ===== Quantity Modal ===== */
.qty-modal {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 1.25rem;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}

.qty-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

body:has(dialog[open]) {
  overflow: hidden !important;
}

.qty-modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.qty-modal__panel {
  position: relative;
  width: min(360px, 90vw);
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.5rem 1.5rem 1.35rem;
  background: linear-gradient(165deg, rgba(31, 36, 48, 0.98), rgba(24, 28, 37, 0.98));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 32px rgba(196, 165, 116, 0.1);
  animation: qty-modal-in 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.qty-modal__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

@keyframes qty-modal-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.qty-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.qty-modal__close:hover {
  color: var(--text);
  border-color: var(--accent-light);
}

.qty-modal__header {
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.qty-modal__tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.5rem;
  background: var(--accent-muted);
  border: 1px solid rgba(196, 165, 116, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne-bright);
}

.qty-modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ivory);
  letter-spacing: -0.02em;
}

.qty-modal__product {
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.qty-modal__product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.qty-modal__product-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.qty-modal__price-row,
.qty-modal__total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.qty-modal__price-row {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.qty-modal__price-label,
.qty-modal__total-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.qty-modal__price-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--champagne-bright);
}

.qty-modal__total-row {
  margin-bottom: 1.15rem;
  padding: 0.75rem 0.85rem;
  background: rgba(196, 165, 116, 0.08);
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: var(--radius);
}

.qty-modal__total-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--champagne-bright);
  letter-spacing: -0.02em;
}

.qty-modal__field {
  margin-bottom: 1rem;
}

.qty-modal__field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.qty-modal__field input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--ink-raised);
  border: 1px solid rgba(196, 165, 116, 0.3);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.qty-modal__field input:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.qty-modal__field input::-webkit-inner-spin-button,
.qty-modal__field input::-webkit-outer-spin-button {
  opacity: 0.7;
}

.qty-modal__actions {
  display: flex;
  gap: 0.65rem;
}

.qty-modal__actions .btn {
  flex: 1;
}

.checkout-modal .qty-modal__panel {
  max-width: 520px;
}

.checkout-modal__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
  background: var(--ink-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkout-modal__summary strong {
  font-size: 1.05rem;
  color: var(--champagne-bright);
}

.checkout-modal__form .qty-modal__field {
  margin-bottom: 0.85rem;
}

.checkout-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-modal__optional {
  font-weight: 500;
  color: var(--text-dim);
}

.qty-modal__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--ink-raised);
  border: 1px solid rgba(196, 165, 116, 0.3);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
  resize: vertical;
  min-height: 88px;
}

.qty-modal__field textarea:focus {
  outline: none;
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.checkout-modal__form .qty-modal__field input[type="text"],
.checkout-modal__form .qty-modal__field input[type="tel"],
.checkout-modal__form .qty-modal__field input[type="email"],
.checkout-modal__form .qty-modal__field input[type="date"] {
  font-size: 0.92rem;
  font-weight: 500;
}

.checkout-modal__form .qty-modal__field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

@media (max-width: 560px) {
  .checkout-modal__row { grid-template-columns: 1fr; }
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 5.5rem;
  right: 1.5rem;
  left: auto;
  bottom: auto;
  max-width: min(92vw, 420px);
  transform: translateX(calc(100% + 2rem));
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 200;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast--info {
  color: #f4f1ec;
  background: linear-gradient(135deg, rgba(37, 43, 56, 0.97), rgba(24, 28, 37, 0.97));
  border: 1px solid rgba(217, 188, 138, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(196, 165, 116, 0.15);
}

.toast--success {
  max-width: min(92vw, 380px);
  padding: 1.05rem 1.35rem;
  font-size: 0.92rem;
  color: #fff8ef;
  background: linear-gradient(135deg, rgba(196, 165, 116, 0.42), rgba(31, 36, 48, 0.97));
  border: 1px solid #d9bc8a;
  box-shadow: 0 12px 40px rgba(196, 165, 116, 0.32), 0 0 28px rgba(196, 165, 116, 0.18);
}

/* ===== Track Order ===== */
.track-order {
  padding: 5rem 0;
  background: var(--ink-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.track-order__header {
  margin-bottom: 2.25rem;
}

.track-order__tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.35rem;
  background: var(--ink-raised);
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: var(--radius-full);
  color: var(--champagne-bright);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.track-order__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.track-order__desc {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.track-form {
  max-width: 44rem;
}

.track-form__input-group {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
}

.track-form__input-group input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ink-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.track-form__input-group input::placeholder {
  color: var(--text-dim);
}

.track-form__input-group input:focus {
  outline: none;
  border-color: rgba(196, 165, 116, 0.45);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.12);
}

.track-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.95rem 1.75rem;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--champagne-bright), var(--champagne));
  color: var(--ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow), 0 0 0 1px rgba(196, 165, 116, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.track-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196, 165, 116, 0.35), 0 0 0 1px rgba(196, 165, 116, 0.35);
}

.track-form__btn:active {
  transform: translateY(0);
}

.track-modal__panel {
  max-width: 560px;
  width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

#trackModalBody {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.25rem;
}

.track-modal__count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.track-modal__order-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.track-modal__order-card:last-child {
  margin-bottom: 0;
}

.track-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.track-modal__order-id {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ivory);
}

.track-modal__date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-modal__items {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.track-modal__items h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.track-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--ivory);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.track-modal__item-name {
  flex: 1;
}

.track-modal__item-qty {
  color: var(--text-muted);
  margin-left: 1rem;
  white-space: nowrap;
}

.track-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 1.5rem 0;
}

.track-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}

.track-timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0.5rem;
}

.track-timeline__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.track-timeline__step.completed .track-timeline__dot {
  background: var(--champagne);
  border-color: var(--champagne);
}

.track-timeline__step.completed .track-timeline__dot::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translateY(-1px);
}

.track-timeline__step.active .track-timeline__dot {
  background: var(--champagne);
  border-color: var(--champagne-bright);
  box-shadow: 0 0 12px rgba(196, 165, 116, 0.45);
}

.track-timeline__step.active .track-timeline__dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.track-timeline__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  max-width: 70px;
}

.track-timeline__step.completed .track-timeline__label,
.track-timeline__step.active .track-timeline__label {
  color: var(--champagne);
}

.track-result__status-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 20px;
  background: rgba(196, 165, 116, 0.15);
  color: var(--champagne);
  border: 1px solid rgba(196, 165, 116, 0.3);
}

.track-result__status-badge--cancelled {
  background: rgba(220, 80, 80, 0.15);
  color: #f08080;
  border-color: rgba(220, 80, 80, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { grid-column: 1; grid-row: 2; min-height: 280px; max-width: 420px; margin-inline: auto; }
  .hero-stats { grid-column: 1; }
  .studio { grid-template-columns: 1fr; }
  .studio-preview { position: static; max-height: 520px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }

  /* Tighten section vertical padding on tablet */
  .categories,
  .customize,
  .cart-section,
  .why-us,
  .contact,
  .track-order { padding: 3.5rem 0; }
  .offers-section { padding: 3.5rem 0; }

  /* Offer banner: reduce inner padding */
  .ecom-banner-slide { padding: 2.25rem 2.5rem; min-height: 260px; }
  .ecom-banner-title { font-size: 1.85rem; }

  /* Preview specs: allow wrapping without collision */
  .preview-specs { gap: 0.65rem 1rem; }
}

@media (max-width: 768px) {
  /* ---- Navigation ---- */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav { position: relative; flex-wrap: wrap; }
  .nav-toggle { display: flex; }

  /* ---- Hero ---- */
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero-visual { min-height: 260px; max-width: 340px; }
  .hero-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .hero-stats__item:not(:last-child)::after { display: none; }
  .hero-stats__item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }
  .hero-stats__item { padding: 1rem 1.25rem; }

  /* Disable heavy SVG infinite animations on mobile to save CPU/GPU */
  .hero-visual__orbit,
  .hero-visual__glow,
  .hero-orbit-ring,
  .hero-orbit-dot,
  .hero-badge,
  .hero-layer--box,
  .hero-layer--bubble,
  .hero-layer--mailer,
  .hero-layer--tape,
  .hero-mailer-flap,
  .hero-seal,
  .hero-tape-strip,
  .hero-sparkle {
    animation: none !important;
  }
  .hero-visual__scene {
    transform: none !important;
    transition: none !important;
  }

  /* ---- Offers Carousel ---- */
  .ecom-banner-slide { padding: 1.5rem 1.25rem; min-height: auto; gap: 1.5rem; }
  .ecom-banner-title { font-size: 1.5rem; line-height: 1.25; }
  .ecom-banner-subtitle { font-size: 0.92rem; }
  .ecom-banner-voucher { flex: none; width: 100%; padding: 1.2rem 1rem; }
  .ecom-banner-badge { font-size: 1rem; padding: 0.5rem 1rem; }

  /* ---- Products ---- */
  .category-tabs { width: 100%; border-radius: var(--radius-lg); }
  .category-tab { flex: 1; text-align: center; }

  /* ---- Customization Studio ---- */
  .product-type-selector { grid-template-columns: repeat(3, 1fr); }

  /* ---- Cart ---- */
  .cart-item { flex-direction: column; gap: 0.65rem; }
  .cart-item-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* ---- Contact ---- */
  .contact-form { padding: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ---- Track Order ---- */
  .track-form__input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .track-form__btn { width: 100%; justify-content: center; }

  /* ---- Sections general ---- */
  .categories,
  .customize,
  .cart-section,
  .why-us,
  .contact,
  .track-order { padding: 3rem 0; }
  .section-header { margin-bottom: 1.75rem; }

  /* ---- Preview Specs ---- */
  .preview-specs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .preview-specs span::before {
    content: none !important;
  }

  /* ---- Modals ---- */
  .checkout-modal .qty-modal__panel,
  .qty-modal__panel {
    width: min(520px, 94vw);
    max-width: 94vw;
  }

  /* ---- Toast ---- */
  .toast {
    top: 5rem;
    right: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Responsive Track Order Timeline for Mobile Screens */
@media (max-width: 600px) {
  .track-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    margin: 1.5rem 0 1.5rem 0.5rem;
  }

  .track-timeline::before {
    top: 14px;
    bottom: 14px;
    left: 13px;
    right: auto;
    width: 2px;
    height: calc(100% - 28px);
    transform: none;
  }

  .track-timeline__step {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }

  .track-timeline__dot {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .track-timeline__label {
    font-size: 0.85rem;
    font-weight: 600;
    max-width: none;
    text-align: left;
    white-space: nowrap;
    letter-spacing: 0.03em;
  }

  .checkout-modal__row { grid-template-columns: 1fr; }
}

/* Stacking select and buttons on narrow product cards & mobile screens */
@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 0.85rem;
  }
  .product-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .product-variant {
    width: 100%;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-desc {
    font-size: 0.92rem;
  }
  .hero {
    padding-top: 5.5rem;
  }
  .hero-title { font-size: 1.65rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  /* Offers banner small-screen tightening */
  .ecom-banner-slide { padding: 1.25rem 1rem; }
  .ecom-banner-title { font-size: 1.3rem; }
  .ecom-banner-subtitle { font-size: 0.85rem; }
  .ecom-banner-timer { font-size: 0.78rem; padding: 0.35rem 0.75rem; }
  .ecom-banner-voucher { padding: 1rem 0.85rem; gap: 0.85rem; }
  .ecom-banner-badge { font-size: 0.92rem; }

  /* Coupon input stacking */
  .cart-coupon-input-group {
    flex-direction: column;
  }
  .btn-coupon-apply { width: 100%; }

  /* Features grid single column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Footer spacing */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-inner { gap: 2rem; }

  /* Studio controls tighter on small screens */
  .studio-controls { padding: 1.25rem; }
  .product-type-selector { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .type-btn { padding: 0.65rem 0.35rem; font-size: 0.68rem; }
}

/* Very small phone safety net (iPhone SE, older devices) */
@media (max-width: 360px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-title { font-size: 1.45rem; }
  .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
  .hero-stats__value { font-size: 1.3rem; }
  .hero-stats__label { font-size: 0.72rem; }
  .section-title { font-size: 1.35rem; }
  .ecom-banner-title { font-size: 1.15rem; }
  .ecom-banner-badge { font-size: 0.82rem; padding: 0.4rem 0.8rem; }
  .container { padding-inline: 1rem; }
}

/* ==========================================================================
   OFFERS & PROMOS SECTION STYLES (Modern Glassmorphism & High-Impact Visuals)
   ========================================================================== */
.nav-offers-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--champagne);
}

.nav-deals-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  height: 16px;
  padding: 0 0.4rem;
  border-radius: 99px;
  background: linear-gradient(135deg, #e65100, #ff9800);
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 0 10px rgba(255, 152, 0, 0.4);
  animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

.offers-section {
  padding: 5rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(217, 188, 138, 0.06) 0%, transparent 70%),
              radial-gradient(circle at 10% 80%, rgba(107, 154, 148, 0.05) 0%, transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-tag--deals {
  background: rgba(217, 188, 138, 0.12);
  color: #e8d4a8;
  border: 1px solid rgba(217, 188, 138, 0.35);
  box-shadow: 0 0 15px rgba(217, 188, 138, 0.15);
}

/* Famous E-Commerce Hero Banner Container */
.ecom-banner-wrapper {
  position: relative;
  max-width: 1040px;
  margin: 2.5rem auto 0 auto;
  padding: 0 0.5rem;
}

.ecom-banner-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 188, 138, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f172a;
}

.ecom-banner-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Slide Cards */
.ecom-banner-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 3.5rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.ecom-banner-slide::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Left Content Column */
.ecom-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.ecom-banner-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.ecom-banner-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ecom-banner-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.ecom-banner-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ecom-banner-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.45rem 1.05rem;
  border-radius: 99px;
  font-size: 0.85rem;
  color: #ffffff;
  backdrop-filter: blur(8px);
  width: fit-content;
}

.ecom-banner-timer-clock {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fde047;
  font-variant-numeric: tabular-nums;
}

/* Right Voucher Badge Column */
.ecom-banner-voucher {
  flex: 0 0 280px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.ecom-banner-badge {
  font-size: 1.15rem;
  font-weight: 900;
  padding: 0.6rem 1.3rem;
  border-radius: 12px;
  background: #ffffff;
  color: #090b0f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ecom-banner-btn {
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #090b0f;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.ecom-banner-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  background: #ffffff;
  color: #000000;
}

/* Nav Arrows & Dots */
.ecom-banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.ecom-banner-arrow--prev {
  left: -20px;
}

.ecom-banner-arrow--next {
  right: -20px;
}

.ecom-banner-arrow:hover {
  background: #ffffff;
  color: #090b0f;
  transform: translateY(-50%) scale(1.1);
}

.ecom-banner-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.ecom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.ecom-dot.active {
  width: 28px;
  border-radius: 99px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .ecom-banner-slide {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
  }
  .ecom-banner-voucher {
    flex: none;
    width: 100%;
  }
  .ecom-banner-arrow--prev {
    left: 4px;
  }
  .ecom-banner-arrow--next {
    right: 4px;
  }
}

@media (max-width: 860px) {
  .offers-spotlight-card {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
  }
  .offer-spotlight__ticket {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .offer-slide {
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
  }
  .offer-slide__ticket {
    flex: none;
    width: 100%;
  }
}

/* Nav arrows */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.carousel-nav-btn:hover {
  background: var(--champagne, #d9bc8a);
  color: #090b0f;
  transform: translateY(-50%) scale(1.1);
  border-color: var(--champagne, #d9bc8a);
}

.carousel-nav-btn--prev { left: -24px; }
.carousel-nav-btn--next { right: -24px; }

/* Pagination dots */
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-dot.active {
  width: 32px;
  background: var(--champagne, #d9bc8a);
  box-shadow: 0 0 12px rgba(217, 188, 138, 0.5);
}

/* Offer Reveal Modal Styles */
.offer-reveal-panel {
  max-width: 480px !important;
  text-align: center;
  background: rgba(17, 24, 39, 0.98) !important;
  border: 1px solid rgba(217, 188, 138, 0.3) !important;
}

.offer-reveal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.offer-reveal-code-card {
  background: rgba(0, 0, 0, 0.5);
  border: 2px dashed rgba(217, 188, 138, 0.5);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.offer-reveal-code-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  display: block;
  margin-bottom: 0.6rem;
}

.offer-reveal-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-reveal-code-val {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.offer-reveal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .offer-slide {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  .offer-slide__title {
    font-size: 1.45rem;
  }
  .offer-slide__subtitle {
    font-size: 0.9rem;
  }
  .carousel-nav-btn--prev { left: 0px; }
  .carousel-nav-btn--next { right: 0px; }
}

/* Ensure hidden attribute is never overridden by flex display */
[hidden],
.cart-summary-row[hidden] {
  display: none !important;
}

/* ===== Promo / Coupon Code Section ===== */
.cart-coupon-box {
  margin: 1rem 0;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}

.cart-coupon-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--champagne-bright);
  margin-bottom: 0.6rem;
}

.cart-coupon-input-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.cart-coupon-input-group input {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--ink-raised);
  color: #ffffff;
  box-sizing: border-box;
}

.cart-coupon-input-group input::placeholder {
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.cart-coupon-input-group input:focus {
  outline: none;
  border-color: var(--champagne-bright);
  box-shadow: 0 0 0 3px rgba(217, 188, 138, 0.15);
}

.btn-coupon-apply {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--champagne-bright), var(--champagne));
  color: #0f141d;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-coupon-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 188, 138, 0.25);
}

/* Applied Coupon Card */
.cart-coupon-applied-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: rgba(52, 211, 153, 0.08);
  border: 1px dashed rgba(52, 211, 153, 0.4);
  border-radius: var(--radius);
  margin-top: 0.35rem;
}

.cart-coupon-applied-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-coupon-badge {
  font-weight: 700;
  font-size: 0.85rem;
  color: #34d399;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.cart-coupon-savings {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-coupon-remove {
  padding: 0.25rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-coupon-remove:hover {
  background: rgba(239, 68, 68, 0.2);
}

/* ===== Legal & Policy Modals ===== */
.legal-modal__panel {
  max-width: 720px;
  width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.legal-modal__body {
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
}

.legal-meta-banner {
  background: rgba(217, 188, 138, 0.08);
  border: 1px solid rgba(217, 188, 138, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--champagne-bright);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-section h4 {
  color: var(--champagne-bright);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.5rem;
}

.legal-section p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.legal-section ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.legal-section li {
  margin-bottom: 0.35rem;
}

.legal-section strong {
  color: var(--text);
}

.legal-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.legal-table th,
.legal-table td {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(255, 255, 255, 0.05);
  color: var(--champagne-bright);
}

.legal-alert-box {
  background: rgba(251, 191, 36, 0.08);
  border: 1px dashed rgba(251, 191, 36, 0.4);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #fbbf24;
  font-size: 0.83rem;
  line-height: 1.55;
}


