/* =========================================
   3D Magic Print — Modern, vibrant, single page
   ========================================= */

:root {
  --bg: #0a0a18;
  --bg-2: #11112a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f5ff;
  --text-dim: #a8a8c8;
  --text-muted: #6e6e8e;

  --pink: #ff3d8b;
  --purple: #8b5cf6;
  --cyan: #06d6f9;
  --mint: #4ade80;
  --yellow: #fbbf24;

  --grad: linear-gradient(135deg, #ff3d8b 0%, #8b5cf6 50%, #06d6f9 100%);
  --grad-warm: linear-gradient(135deg, #ff3d8b 0%, #fbbf24 100%);
  --grad-cool: linear-gradient(135deg, #8b5cf6 0%, #06d6f9 100%);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-glow: 0 20px 60px -20px rgba(139, 92, 246, 0.4);
  --shadow-pink: 0 20px 60px -20px rgba(255, 61, 139, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad);
  z-index: 999;
  box-shadow: 0 0 20px rgba(255, 61, 139, 0.8);
  transition: width 0.1s linear;
}

/* ========== CURSOR GLOW ========== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.3s, height 0.3s;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform;
}
.cursor-glow.active { opacity: 1; }
.cursor-glow.hover-link {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 61, 139, 0.3), transparent 70%);
}
@media (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ========== PARTICLES CANVAS ========== */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* ========== GRID OVERLAY ========== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* ========== BACKGROUND BLOBS ========== */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: #ff3d8b;
  top: -10%; left: -10%;
}
.blob-2 {
  width: 700px; height: 700px;
  background: #8b5cf6;
  top: 30%; right: -15%;
  animation-delay: -7s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: #06d6f9;
  bottom: -10%; left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ========== NAVBAR ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 10, 24, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.logo-mark {
  font-size: 28px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: spin 8s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.logo-3d {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  background-size: 200% 200%;
  color: white;
  box-shadow: var(--shadow-pink);
  position: relative;
  overflow: hidden;
  animation: gradShift 4s ease infinite;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 30px 80px -20px rgba(255, 61, 139, 0.7);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.btn-block { width: 100%; }

/* ========== NAV ACTIONS / CART BUTTON ========== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover {
  background: var(--surface-2);
  transform: translateY(-2px);
}
.cart-badge {
  background: var(--pink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 61, 139, 0.6);
  transition: transform 0.2s;
}
.cart-badge.bump { animation: bump 0.4s; }
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 48px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}

.hero-inner {
  flex: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.strike {
  position: relative;
  display: inline-block;
  color: var(--text-dim);
}
.strike::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%;
  top: 55%;
  height: 6px;
  background: var(--pink);
  transform: rotate(-3deg);
  border-radius: 4px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 4s ease infinite;
}
.wobble {
  display: inline-block;
  animation: gradShift 4s ease infinite, wobble 6s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  25% { transform: rotate(1deg) scale(1.02); }
  50% { transform: rotate(-1deg) scale(1); }
  75% { transform: rotate(1deg) scale(1.02); }
}

/* hero title — word-by-word reveal */
.word-in {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-3deg);
  filter: blur(8px);
  animation: wordIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}
.word-in.punct {
  transform: scale(0) rotate(-180deg);
  animation-name: punctPop;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.5, 1.8, 0.5, 1);
  color: var(--pink);
}
@keyframes punctPop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
  }
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 6px;
}
.muted { color: var(--text-muted); font-size: 11px; }

/* ========== HERO VISUAL — Rotating 3D Cube + Orbits ========== */
.hero-visual {
  flex: 0 0 380px;
  height: 380px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1.5px dashed rgba(139, 92, 246, 0.4);
  animation: ringRotate 25s linear infinite;
  pointer-events: none;
}
.hero-ring-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(6, 214, 249, 0.3);
  animation-direction: reverse;
  animation-duration: 35s;
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.orbit {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.orbit > span { display: inline-block; animation: counterSpin 12s linear infinite; }

.orbit-1 { animation: orbit1 12s linear infinite; }
.orbit-2 { animation: orbit2 16s linear infinite; }
.orbit-3 { animation: orbit3 14s linear infinite; }
.orbit-4 { animation: orbit4 18s linear infinite; }

@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(170px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(90deg) translateX(150px) rotate(-90deg); }
  to   { transform: rotate(450deg) translateX(150px) rotate(-450deg); }
}
@keyframes orbit3 {
  from { transform: rotate(180deg) translateX(180px) rotate(-180deg); }
  to   { transform: rotate(540deg) translateX(180px) rotate(-540deg); }
}
@keyframes orbit4 {
  from { transform: rotate(270deg) translateX(160px) rotate(-270deg); }
  to   { transform: rotate(630deg) translateX(160px) rotate(-630deg); }
}
@keyframes counterSpin {
  to { transform: rotate(-360deg); }
}
.cube {
  width: 220px;
  height: 220px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 18s infinite linear;
}
@keyframes rotateCube {
  0% { transform: rotateX(-20deg) rotateY(0); }
  100% { transform: rotateX(-20deg) rotateY(360deg); }
}
.face {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.3), rgba(139, 92, 246, 0.3), rgba(6, 214, 249, 0.3));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.1);
}
.face.front  { transform: translateZ(110px); }
.face.back   { transform: rotateY(180deg) translateZ(110px); }
.face.right  { transform: rotateY(90deg) translateZ(110px); }
.face.left   { transform: rotateY(-90deg) translateZ(110px); }
.face.top    { transform: rotateX(90deg) translateZ(110px); }
.face.bottom { transform: rotateX(-90deg) translateZ(110px); }

/* ========== STRIP / TICKER ========== */
.strip {
  background: var(--grad);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  color: white;
  font-weight: 600;
  font-size: 18px;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.04), transparent);
  max-width: none;
  padding-left: max(48px, calc((100vw - 1400px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1400px) / 2 + 48px));
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* ========== SHOP / MAGAZIN ========== */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--grad);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px -6px var(--purple);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}
.product-image, .product-info { transform: translateZ(20px); }
.product::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(255, 61, 139, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: var(--radius-lg);
}
.product:hover::after { opacity: 1; }
.product:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 30px 60px -20px rgba(139, 92, 246, 0.4);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-badge.hot {
  background: var(--grad-warm);
}
.product-badge.new {
  background: var(--mint);
  color: #0a0a18;
}

.product-image {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  overflow: hidden;
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
}
.product:hover .product-image {
  transform: scale(1.05);
}
.product-image > span {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s;
}
.product:hover .product-image > span {
  transform: rotate(-8deg) scale(1.1);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}
.product-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.product-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 4px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}
.product-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-price small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  -webkit-text-fill-color: var(--text-muted);
}
.add-to-cart {
  padding: 10px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.add-to-cart:hover {
  background: var(--grad);
  border-color: transparent;
  color: white;
  transform: scale(1.05);
}
.add-to-cart.added {
  background: var(--mint);
  color: #0a0a18;
  border-color: transparent;
}

.product.hidden {
  display: none;
}

/* ========== CART PANEL ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--bg-2);
  border-left: 1px solid var(--border-strong);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.4);
}
.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
}
.cart-close {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover {
  background: var(--surface-2);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: var(--text-dim);
  padding: 40px 20px;
}
.cart-empty-icon {
  font-size: 60px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.cart-empty p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}
.cart-empty span {
  font-size: 14px;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 13px;
  color: var(--text-dim);
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border-radius: 999px;
  padding: 4px;
}
.cart-qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--surface-2);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.cart-qty button:hover { background: var(--purple); }
.cart-qty span {
  font-size: 13px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-dim);
}
.cart-total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cart-total span:last-child {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.cart-footer .btn { margin-top: 16px; }
.cart-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ========== WHATSAPP ========== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: waPulseRing 2.4s infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 20px 50px -8px rgba(37, 211, 102, 0.9);
}
.whatsapp-fab:hover .whatsapp-label {
  opacity: 1;
  transform: translateY(-50%) translateX(-12px);
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite;
  pointer-events: none;
}
.whatsapp-label {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background: rgba(10, 10, 24, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  margin-right: 8px;
}
.whatsapp-label::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: rgba(10, 10, 24, 0.95);
  border-right: 1px solid var(--border-strong);
  border-top: 1px solid var(--border-strong);
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes waPulseRing {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0); }
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.6);
}
.btn-whatsapp:hover {
  background: #1fb358;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.8);
}

.form-submit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit-row .btn { width: 100%; }

.footer-wa {
  color: #25D366 !important;
  font-weight: 600 !important;
}
.footer-wa:hover { color: #1fb358 !important; }

@media (max-width: 600px) {
  .form-submit-row { grid-template-columns: 1fr; }
  .whatsapp-fab {
    width: 56px; height: 56px;
    bottom: 16px; right: 16px;
  }
  .whatsapp-fab svg { width: 28px; height: 28px; }
}

/* ========== CONFETTI ========== */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 500;
  border-radius: 2px;
  will-change: transform, opacity;
}
@keyframes confettiFly {
  to {
    transform: translate(var(--tx), var(--ty)) rotate(var(--tr));
    opacity: 0;
  }
}

/* ========== SECTION TITLE UNDERLINE ========== */
.section-title {
  position: relative;
  display: inline-block;
}
.section-head { display: flex; flex-direction: column; align-items: center; }

/* card hover gradient border */
.card { transition: transform 0.35s, background 0.3s, border-color 0.3s; }
.card:hover { transform: translateY(-8px) scale(1.01); }

/* magnetic button base */
.magnetic { transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); }

/* eyebrow shimmer */
.eyebrow {
  position: relative;
  overflow: hidden;
}
.eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(6, 214, 249, 0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* hero-badge breathing */
.hero-badge {
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* gallery items — tilt subtle */
.gallery-item {
  transform-style: preserve-3d;
  transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-item:hover {
  box-shadow: 0 30px 60px -20px rgba(139, 92, 246, 0.5);
}

/* step number glow */
.step:hover .step-num {
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
  transition: filter 0.3s;
}

/* feature bounce */
.feature > span {
  display: inline-block;
  transition: transform 0.3s;
}
.feature:hover > span {
  animation: bounce 0.6s ease;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px) rotate(-10deg); }
  70% { transform: translateY(-4px) rotate(5deg); }
}

/* testimonial stars twinkle */
.stars {
  background: linear-gradient(90deg, #fbbf24, #ff9f43, #fbbf24);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

/* logo mark glow on hover */
.logo:hover .logo-mark {
  animation-duration: 1s;
  filter: drop-shadow(0 0 12px rgba(255, 61, 139, 0.8));
}

/* navigation underline already there — keep */

/* product image — animated grain */
.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15), transparent 30%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product:hover .product-image::before { opacity: 1; }

/* sticky nav backdrop intensifies on scroll */
.nav.scrolled {
  background: rgba(10, 10, 24, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.2s;
}
.legal-back:hover {
  color: var(--text);
  background: var(--surface-2);
  transform: translateX(-2px);
}
.legal-page h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
  line-height: 1.15;
}
.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
  display: block;
}
.legal-page h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  margin: 40px 0 12px;
  color: var(--cyan);
}
.legal-page h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  margin: 24px 0 8px;
}
.legal-page p,
.legal-page li {
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.7;
}
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-page strong { color: var(--text); }
.legal-page a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px dashed var(--cyan);
}
.legal-page a:hover { border-bottom-style: solid; }
.legal-page .placeholder {
  background: rgba(251, 191, 36, 0.15);
  color: var(--yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9em;
}
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0 40px;
}
.legal-toc h3 {
  margin-top: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
}
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { border: none; }

/* ANPC widget */
.anpc-widgets {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.anpc-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  flex: 1;
  min-width: 220px;
  border-bottom: 1px solid var(--border) !important;
}
.anpc-widget:hover {
  border-color: var(--cyan);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.anpc-widget-icon {
  font-size: 28px;
}
.anpc-widget-text strong {
  display: block;
  font-size: 14px;
}
.anpc-widget-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 440px;
  background: rgba(17, 17, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 500;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5);
  transform: translateY(calc(100% + 40px));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-banner p {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner p a { color: var(--cyan); text-decoration: none; }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 13px;
  flex: 1;
  min-width: max-content;
}
@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 18px;
  }
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--grad);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  z-index: 300;
  box-shadow: 0 20px 50px -10px rgba(255, 61, 139, 0.5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ========== CARDS — Servicii ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
}
.card-2 .card-icon { background: var(--grad-warm); }
.card-3 .card-icon { background: var(--grad-cool); }

.card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card p {
  color: var(--text-dim);
  margin-bottom: 20px;
}
.card-list {
  list-style: none;
  margin-bottom: 24px;
}
.card-list li {
  padding: 6px 0;
  color: var(--text-dim);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}
.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}
.card-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--grad);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* ========== STEPS ========== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  position: relative;
}
.step:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p { color: var(--text-dim); font-size: 14px; }

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover {
  transform: scale(1.03) translateY(-4px);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.gallery-meta {
  padding: 24px;
  position: relative;
  z-index: 2;
  color: white;
}
.gallery-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.gallery-item h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.gallery-item p { font-size: 14px; opacity: 0.9; }

/* ========== CALCULATOR ========== */
.calc {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}
.calc-field {
  margin-bottom: 28px;
}
.calc-field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text-dim);
}
.seg {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.seg-btn {
  flex: 1;
  min-width: max-content;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.seg-btn:hover {
  border-color: var(--border-strong);
  color: var(--text);
}
.seg-btn.active {
  background: var(--grad);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px -8px var(--purple);
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-2);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  box-shadow: 0 0 12px var(--pink);
  border: 3px solid white;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  cursor: pointer;
  border: 3px solid white;
}

.calc-result {
  background: var(--grad);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-pink);
}
.calc-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 12px;
}
.calc-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.calc-currency { font-size: 1.5rem; opacity: 0.8; }
.calc-disclaimer {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 24px;
}
.calc-result .btn {
  background: white;
  color: var(--pink);
}
.calc-result .btn:hover { transform: translateY(-2px) scale(1.02); }

/* ========== FEATURES ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}
.feature:hover {
  transform: translateX(4px);
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.feature > span {
  font-size: 32px;
  flex-shrink: 0;
}
.feature h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.feature p { color: var(--text-dim); font-size: 14px; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq details[open] {
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.3s;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  padding: 0 24px 20px;
  color: var(--text-dim);
}

/* ========== CTA / ORDER FORM ========== */
.cta-section { padding-bottom: 120px; }
.cta-card {
  background: linear-gradient(135deg, rgba(255, 61, 139, 0.1), rgba(139, 92, 246, 0.1), rgba(6, 214, 249, 0.1));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 60px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--grad);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}
.cta-card .section-head { margin-bottom: 40px; }

.order-form {
  max-width: 720px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--purple);
  background: var(--surface-2);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field select { cursor: pointer; }
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-2);
  padding: 60px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto 48px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 16px;
}
.footer h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}
.footer a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1400px;
  margin: 0 auto;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .cart-panel { width: 100vw; }
  .products { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .product-image { font-size: 70px; }

  .hero {
    flex-direction: column;
    padding: 40px 20px 60px;
    text-align: center;
    gap: 32px;
  }
  .hero-inner { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-visual { flex: 0 0 280px; height: 280px; }
  .cube { width: 160px; height: 160px; }
  .face { width: 160px; height: 160px; }
  .face.front  { transform: translateZ(80px); }
  .face.back   { transform: rotateY(180deg) translateZ(80px); }
  .face.right  { transform: rotateY(90deg) translateZ(80px); }
  .face.left   { transform: rotateY(-90deg) translateZ(80px); }
  .face.top    { transform: rotateX(90deg) translateZ(80px); }
  .face.bottom { transform: rotateX(-90deg) translateZ(80px); }

  .section { padding: 60px 20px; }
  .section-alt { padding-left: 20px; padding-right: 20px; }

  .calc { grid-template-columns: 1fr; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 48px 20px 24px; }
  .mobile-br { display: none; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats .stat { flex: 1 1 100%; }
  .hero-title { font-size: 2.5rem; }
}

/* ========== SELECTION & SCROLLBAR ========== */
::selection {
  background: var(--purple);
  color: white;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--purple); }
