/* ═══════════════════════════════════════════
   AXP HUB — Premium Grooming Store
   Design System + Full Styles
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f5f0eb;
  --text-muted: rgba(245, 240, 235, 0.55);
  --text-dim: rgba(245, 240, 235, 0.35);
  --red: #c93028;
  --red-glow: rgba(201, 48, 40, 0.25);
  --blue: #1a7fd4;
  --blue-glow: rgba(26, 127, 212, 0.25);
  --orange: #d4711a;
  --orange-glow: rgba(212, 113, 26, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
body.cart-open, body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px var(--red-glow);
}
.btn-primary:hover {
  background: #d4382f;
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--border-hover);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.24);
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all 300ms ease;
}
.header.is-scrolled {
  padding: 10px 24px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 56px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(24px) saturate(1.2);
  transition: all 300ms ease;
}
.header.is-scrolled .header-inner {
  height: 50px;
  background: rgba(10, 10, 10, 0.88);
  border-color: rgba(255,255,255,0.1);
}

.logo img {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 200ms ease;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-muted);
  transition: all 200ms ease;
}
.btn-cart:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.btn-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.btn-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 200ms ease;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: background 200ms ease;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 88px 16px 16px;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  aspect-ratio: 16 / 8;
  min-height: 520px;
  max-height: 80vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,10,10,0.7) 0%, transparent 50%),
    linear-gradient(90deg, rgba(10,10,10,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px, 5vw, 56px);
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 600px;
}

.hero-desc {
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════════ */
.section {
  padding: clamp(64px, 10vw, 120px) clamp(16px, 4vw, 48px);
}
.section-header {
  max-width: 1280px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   PRODUCT GRID
   ═══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  will-change: transform;
  z-index: 1;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.product-card:hover {
  border-color: color-mix(in srgb, var(--border-hover) 70%, var(--card-glow, transparent));
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px var(--card-glow, transparent);
}

/* Image area */
.product-card-img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3 / 4.5;
}
.product-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06) translateY(-5px);
}

/* Info area */
.product-card-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.product-card-label {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 0 18px var(--card-color),
    0 0 6px var(--card-color),
    0 2px 24px var(--card-color);
}
.product-card-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--card-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.product-card-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-card-price {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 14px var(--card-color);
}
.product-card-buy .btn {
  height: 44px;
  padding: 0 20px;
  font-size: 13px;
}

/* ── Discount badge ── */
.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 6px;
  box-shadow: 0 2px 10px var(--red-glow);
}

/* ── Old / sale prices ── */
.product-card-prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-card-price-old {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
  letter-spacing: 0;
}

/* ─── BUNDLE CARD ─── */
.product-card-bundle {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 280px;
  overflow: hidden;
  cursor: default;
}
.product-card-bundle:hover {
  border-color: rgba(201,48,40,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35),
              0 0 0 1px rgba(201,48,40,0.15),
              0 0 80px rgba(26,127,212,0.08),
              0 0 80px rgba(212,113,26,0.08);
}
.bundle-img {
  width: 52%;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.bundle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.34,1.56,0.64,1);
}
.product-card-bundle:hover .bundle-img img { transform: scale(1.04); }

.bundle-info {
  flex: 1;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
/* Corner tag */
.bundle-corner-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 20px var(--red-glow), 0 0 0 3px rgba(201,48,40,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 1px;
  pointer-events: none;
}
.bct-pct {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.bct-off {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bundle-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.bundle-name {
  margin-bottom: 14px;
  line-height: 1.1;
}
.bundle-name span {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.bn-red {
  text-shadow:
    0 0 18px rgb(201, 48, 40),
    0 0 6px rgb(201, 48, 40),
    0 2px 24px rgb(201, 48, 40);
}
.bn-blue {
  text-shadow:
    0 0 18px rgb(26, 127, 212),
    0 0 6px rgb(26, 127, 212),
    0 2px 24px rgb(26, 127, 212);
}
.bn-orange {
  text-shadow:
    0 0 18px rgb(212, 113, 26),
    0 0 6px rgb(212, 113, 26),
    0 2px 24px rgb(212, 113, 26);
}
.bundle-products-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.bundle-products-list span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bundle-products-list .bn-red   { color: var(--text); text-shadow: 0 0 14px rgb(201,48,40), 0 0 5px rgb(201,48,40); }
.bundle-products-list .bn-blue  { color: var(--text); text-shadow: 0 0 14px rgb(26,127,212), 0 0 5px rgb(26,127,212); }
.bundle-products-list .bn-orange{ color: var(--text); text-shadow: 0 0 14px rgb(212,113,26), 0 0 5px rgb(212,113,26); }
.bundle-dot { color: var(--text-dim); font-weight: 400; }
.bundle-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.bundle-price-old {
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: line-through;
}
.bundle-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.bundle-price .bn-red   { font-size: 36px; font-weight: 800; text-shadow: 0 0 14px rgb(201,48,40), 0 0 5px rgb(201,48,40); -webkit-text-fill-color: unset; background: none; }
.bundle-price .bn-blue  { font-size: 36px; font-weight: 800; text-shadow: 0 0 14px rgb(26,127,212), 0 0 5px rgb(26,127,212); -webkit-text-fill-color: unset; background: none; }
.bundle-price .bn-orange{ font-size: 36px; font-weight: 800; text-shadow: 0 0 14px rgb(212,113,26), 0 0 5px rgb(212,113,26); -webkit-text-fill-color: unset; background: none; }
.bundle-save {
  font-size: 12px;
  font-weight: 700;
  color: #3bb77e;
  background: rgba(59,183,126,0.1);
  border: 1px solid rgba(59,183,126,0.25);
  padding: 4px 10px;
  border-radius: 6px;
}
.bundle-buy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bundle-btn {
  align-self: flex-start;
  height: 52px;
  padding: 0 32px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .product-card-bundle { flex-direction: column; }
  .bundle-img { width: 100%; height: 260px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .bundle-name { font-size: clamp(52px, 15vw, 80px); }
  .bundle-btn { width: 100%; }
}

/* ── Relief pop animation ── */
@keyframes card-relief {
  0%   { transform: perspective(1000px) translateY(0)    translateZ(0)   scale(1);    box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
  16%  { transform: perspective(1000px) translateY(5px)  translateZ(-12px) scale(0.97); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  52%  { transform: perspective(1000px) translateY(-26px) translateZ(70px) scale(1.07); box-shadow: 0 70px 90px rgba(0,0,0,0.45), 0 0 70px var(--card-glow, rgba(255,255,255,0.1)); }
  78%  { transform: perspective(1000px) translateY(-10px) translateZ(24px) scale(1.02); box-shadow: 0 32px 52px rgba(0,0,0,0.28), 0 0 30px var(--card-glow, rgba(255,255,255,0.05)); }
  100% { transform: perspective(1000px) translateY(0)    translateZ(0)   scale(1);    box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
}

.product-card.is-popped {
  animation: card-relief 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
  z-index: 10;
}

/* ═══════════════════════════════════════════
   SHOWCASE (3D Product Sections)
   ═══════════════════════════════════════════ */
.showcase {
  position: relative;
  padding: 0 16px;
}

.showcase-track {
  max-width: 1400px;
  margin: 0 auto;
}

.showcase-slide {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(24px, 4vw, 64px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 24px;

  /* transition state */
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-slide.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Color themes */
.slide-red   { --accent: var(--red);    --accent-glow: var(--red-glow);    }
.slide-blue  { --accent: var(--blue);   --accent-glow: var(--blue-glow);   }
.slide-orange{ --accent: var(--orange); --accent-glow: var(--orange-glow); }

.slide-red, .slide-blue, .slide-orange {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
}

.slide-blue .showcase-info   { order: 2; }
.slide-blue .showcase-visual { order: 1; }


/* Ghost background text via data-bg */
.showcase-slide::after {
  content: attr(data-bg);
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26vw;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  right: -2vw;
  bottom: -4vw;
  white-space: nowrap;
  letter-spacing: -0.02em;
  z-index: 0;
  user-select: none;
}

/* ── Barbershop fade — dens pe zona de text (vizibil), dispare spre modelul 3D (acoperit) */
.showcase-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--accent) 1px, transparent 1px),
    radial-gradient(circle, var(--accent) 1px, transparent 1px),
    radial-gradient(circle, var(--accent) 1px, transparent 1px);
  background-size:  4px 4px, 5px 5px, 7px 7px;
  background-position: 0 0, 2px 2px, 1px 3.5px;
  opacity: 0.5;
  /* Red/orange: dens la stânga (text) → benzi → dispare la dreapta (3D model) */
  -webkit-mask-image: linear-gradient(to right,
    black            0%,
    black            14%,
    rgba(0,0,0,0.58) 20%,
    rgba(0,0,0,0.58) 34%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.28) 54%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.08) 75%,
    transparent      88%
  );
  mask-image: linear-gradient(to right,
    black            0%,
    black            14%,
    rgba(0,0,0,0.58) 20%,
    rgba(0,0,0,0.58) 34%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.28) 54%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.08) 75%,
    transparent      88%
  );
}

/* Blue: dens la dreapta (text) → benzi → dispare la stânga (3D model) */
.slide-blue::before {
  -webkit-mask-image: linear-gradient(to left,
    black            0%,
    black            14%,
    rgba(0,0,0,0.58) 20%,
    rgba(0,0,0,0.58) 34%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.28) 54%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.08) 75%,
    transparent      88%
  );
  mask-image: linear-gradient(to left,
    black            0%,
    black            14%,
    rgba(0,0,0,0.58) 20%,
    rgba(0,0,0,0.58) 34%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.28) 54%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.08) 75%,
    transparent      88%
  );
}

/* Info side — peliculă întunecată în spate ca textul să iasă peste dots */
.showcase-info {
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.45) 60%, transparent 100%);
  border-radius: 4px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
}
.slide-blue .showcase-info {
  background: linear-gradient(to left, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.45) 60%, transparent 100%);
}

.showcase-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.showcase-bar {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.showcase-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent), 0 0 6px var(--accent);
}
.showcase-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* Titlul mare devine culoarea accentului — diferit față de carduri unde textul rămâne alb */
.showcase-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--accent);
  text-shadow:
    0 0 80px var(--accent),
    0 0 30px var(--accent),
    0 0 8px var(--accent);
  margin-bottom: 28px;
}

/* Tagline — bară editorială stânga, text luminos */
.showcase-tagline {
  max-width: 400px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  box-shadow: -6px 0 18px -4px var(--accent);
}

/* Features — pill badges cu border accent */
.showcase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.showcase-features li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  padding: 5px 12px;
  line-height: 1.5;
}
.showcase-features li:last-child { }

/* Visual side */
.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-self: stretch;
}

/* 3D model slot — placeholder pentru slide-urile fără model încă */
.showcase-3d-slot {
  width: min(440px, 100%);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid var(--accent);
  background: rgba(255,255,255,0.01);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px 24px;
}
.slot-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.15);
}

/* model-viewer live — umple coloana vizuală complet */
model-viewer.showcase-model {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: color-mix(in srgb, var(--accent) 6%, rgba(6, 6, 8, 0.75));
  border: 1px solid rgba(255,255,255,0.06);
  border-bottom: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  --poster-color: transparent;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  margin-top: 80px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 28px;
  width: auto;
  opacity: 0.6;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 200ms ease;
}
.footer-links a:hover { color: var(--text); }
.footer-copy p {
  font-size: 12px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════ */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 300ms ease;
}
.cart-drawer.is-open .cart-backdrop { opacity: 1; }

.cart-panel {
  position: relative;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.is-open .cart-panel { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h4 {
  font-size: 16px;
  font-weight: 700;
}
.btn-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 200ms ease;
}
.btn-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }

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

.cart-items { display: flex; flex-direction: column; }

/* ── Cart item row ── */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item:first-child { padding-top: 4px; }

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.cart-item-img img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3px;
}
.cart-item-type {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.cart-item-remove {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-top: -2px;
  transition: all 150ms;
}
.cart-item-remove:hover {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

/* ── Qty controls ── */
.qty-controls {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}
.qty-controls button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--text);
  transition: background 150ms;
}
.qty-controls button:hover { background: rgba(255,255,255,0.1); }
.qty-controls span {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.cart-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.cart-total-row span { color: var(--text-muted); }
.cart-total-row strong { font-size: 20px; font-weight: 800; }

.cart-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 9px;
}
.cart-shipping-note svg { flex-shrink: 0; opacity: 0.7; }

.btn-checkout {
  width: 100%;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  max-width: 320px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(12px);
  transition: all 300ms ease;
  pointer-events: none;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════
   CHECKOUT (eMAG-style)
   ═══════════════════════════════════════════ */

body.checkout-open { overflow: hidden; }

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.checkout-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Page ── */
.ck-page { min-height: 100%; display: flex; flex-direction: column; }

/* ── Header ── */
.ck-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 64px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  gap: 16px;
}
.ck-logo img { height: 28px; width: auto; opacity: 0.85; }
.ck-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.ck-breadcrumb svg { opacity: 0.45; flex-shrink: 0; }
.ck-breadcrumb-active { color: var(--text); font-weight: 600; }
.ck-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 200ms;
}
.ck-close:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* ── Main two-column ── */
.ck-main {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 28px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 48px) 64px;
  flex: 1;
  align-items: flex-start;
}

/* ── Steps column ── */
.ck-steps-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* ── Step card ── */
.ck-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ck-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.ck-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ck-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.ck-step-body { padding: 20px 22px 24px; }

/* ── Option cards ── */
.ck-option-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ck-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.ck-option-card:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}
.ck-option-card.is-active {
  border-color: var(--red);
  background: rgba(201,48,40,0.06);
}
.ck-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.ck-option-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: background 180ms, color 180ms;
}
.ck-option-card.is-active .ck-option-icon {
  background: rgba(201,48,40,0.12);
  color: var(--red);
}
.ck-option-info { flex: 1; min-width: 0; }
.ck-option-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.ck-option-info span {
  font-size: 12px;
  color: var(--text-muted);
}
.ck-option-info span b { color: var(--text); font-weight: 700; }
.ck-option-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: transparent;
  transition: all 180ms;
}
.ck-option-card.is-active .ck-option-check {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── Delivery panel ── */
.ck-delivery-panel { animation: fadeIn 180ms ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ── Form inputs ── */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  width: 100%;
  transition: border-color 200ms, background 200ms;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07);
}
.form-group input.is-error {
  border-color: rgba(201,48,40,0.7);
  background: rgba(201,48,40,0.06);
}
.form-group textarea { resize: vertical; min-height: 72px; }

/* ── EasyBox SDK styles ── */
.eb-sdk-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 14px 0 10px;
}
.eb-sdk-info {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 13px;
}
.eb-open-btn {
  display: flex; align-items: center; gap: 7px;
  background: #3bb77e; color: #fff; border: none;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font);
  transition: background 0.18s, transform 0.12s;
  white-space: nowrap;
}
.eb-open-btn:hover { background: #32a06e; transform: translateY(-1px); }
.eb-selected-card {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  background: rgba(59,183,126,0.07);
  border: 1px solid rgba(59,183,126,0.35);
  border-radius: 10px; margin-top: 10px;
}
.eb-selected-check {
  width: 28px; height: 28px;
  background: rgba(59,183,126,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #3bb77e;
}
.eb-selected-info { flex: 1; min-width: 0; }
.eb-selected-name { display: block; font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eb-selected-addr { font-size: 11px; color: var(--text-muted); }
.eb-change-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 6px 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; white-space: nowrap;
  font-family: var(--font);
  transition: all 150ms;
}
.eb-change-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }

/* ── Summary column ── */
.ck-summary-col {
  position: sticky;
  top: 88px;
}
.ck-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.ck-summary-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.ck-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ck-order-item:last-of-type { border-bottom: none; }
.ck-order-img {
  width: 52px; height: 52px;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.ck-order-img img { width: 100%; height: 100%; object-fit: contain; }
.ck-order-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ck-order-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); }
.ck-order-sub { font-size: 11px; color: var(--text-muted); }
.ck-order-price { font-size: 13px; font-weight: 700; color: var(--text); flex-shrink: 0; }
.ck-summary-sep { height: 1px; background: var(--border); margin: 14px 0; }
.ck-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 8px;
}
.ck-summary-row span:first-child { color: var(--text-muted); }
.ck-summary-row span:last-child { color: var(--text); font-weight: 600; }
.ck-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
}
.ck-summary-total span { font-size: 14px; font-weight: 700; color: var(--text); }
.ck-summary-total strong { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.ck-pay-btn {
  width: 100%;
  height: 52px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 700;
}
.ck-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 860px) {
  .ck-main {
    grid-template-columns: 1fr;
    padding: 20px 16px 48px;
    gap: 20px;
  }
  .ck-summary-col { position: static; order: -1; }
  .ck-step-body { padding: 16px 16px 20px; }
  .ck-step-head { padding: 14px 16px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ck-breadcrumb { display: none; }
  .form-row-3 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
  .showcase-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: clamp(28px, 6vw, 48px);
    gap: 28px;
  }
  /* Pe mobil totul stivuit vertical: textul mereu sus, modelul jos */
  .showcase-info,
  .slide-blue .showcase-info { order: 1; }
  .showcase-visual,
  .slide-blue .showcase-visual { order: 2; }

  /* Pattern de puncte: mască verticală (dens sus la text → dispare jos la model),
     în loc de masca orizontală care nu are sens când e stivuit */
  .showcase-slide::before,
  .slide-blue::before {
    opacity: 0.32;
    -webkit-mask-image: linear-gradient(to bottom,
      black 0%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.12) 62%, transparent 88%);
    mask-image: linear-gradient(to bottom,
      black 0%, rgba(0,0,0,0.45) 38%, rgba(0,0,0,0.12) 62%, transparent 88%);
  }

  /* Gradientul din spatele textului devine vertical (sus întunecat → dispare jos),
     ca să fie lizibil indiferent de coloană */
  .showcase-info,
  .slide-blue .showcase-info {
    background: linear-gradient(to bottom,
      rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.32) 70%, transparent 100%);
    padding: 4px 0 0;
  }

  /* Textul fantomă uriaș (26vw) e prea mare pe mobil — îl reducem și-l ducem sus */
  .showcase-slide::after {
    font-size: 34vw;
    right: -3vw;
    bottom: auto;
    top: -2vw;
    opacity: 1;
    color: rgba(255,255,255,0.03);
  }

  .showcase-name {
    font-size: clamp(56px, 16vw, 84px);
    margin-bottom: 20px;
    /* Glow mult mai discret pe mobil — pe ecran mic triplul glow era prea aprins */
    text-shadow: 0 0 18px var(--accent-glow), 0 1px 12px rgba(0,0,0,0.9);
  }
  .showcase-num { text-shadow: 0 0 6px var(--accent); }
  .showcase-index { margin-bottom: 20px; }
  .showcase-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 100%; }

  /* Modelul 3D: încadrat curat, centrat, înălțime rezonabilă pe telefon */
  .showcase-visual { width: 100%; }
  model-viewer.showcase-model {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
  .showcase-3d-slot {
    width: min(360px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .btn-hamburger { display: flex; }

  .header { padding: 10px 12px; }
  .header-inner { padding: 0 14px; height: 50px; }

  .hero { padding: 72px 10px 10px; }
  .hero-video-wrap {
    aspect-ratio: auto;
    min-height: 500px;
    max-height: 70vh;
    border-radius: var(--radius-lg);
  }
  .hero h1 { font-size: clamp(28px, 8vw, 44px); }

  .section { padding: 56px 16px; }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
