/* ============================================================
   VIP BEACH TENNIS — Design System
   Preto · Branco · Vermelho · Carmim
   ============================================================ */

/* ── Google Fonts import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --bg:          #09090B;
  --bg-2:        #111114;
  --bg-3:        #1A1A1F;
  --bg-card:     #141418;
  --red:         #E8192C;
  --red-light:   #FF3D4F;
  --red-dark:    #8B0018;
  --red-glow:    rgba(232, 25, 44, 0.10);
  --text:        #F5F5F5;
  --text-muted:  #737373;
  --text-dim:    #A3A3A3;
  --border:      rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.06);
  --nav-h:       72px;

  --font-display: 'Outfit', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) var(--bg-2);
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Custom Scrollbar (webkit) ───────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 9999px; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, box-shadow 0.5s;
}
.navbar.scrolled {
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}
.nav-logo .logo-vip {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--red);
}
.nav-logo .logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Center nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Destaque para link de página (ex: Comparar) */
.nav-links a.nav-link-highlight {
  color: var(--red);
  border: 1px solid rgba(232, 25, 44, 0.35);
  border-radius: 100px;
  padding: 5px 14px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav-links a.nav-link-highlight::after { display: none; }
.nav-links a.nav-link-highlight:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Link home (VIP) */
.nav-links a.nav-link-home {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.nav-links a.nav-link-home:hover { color: var(--red); }
.nav-links a.nav-link-home::after { background: var(--red); }

/* Drawer: home link */
.nav-drawer-links a.nav-link-home { color: var(--red); }

/* Nav actions (icons) */
.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  border-radius: 50%;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-icon-btn:hover { color: var(--text); background: var(--bg-3); }
.nav-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.cart-badge {
  position: absolute;
  top: 6px; right: 6px;
  width: 16px; height: 16px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: var(--text);
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   ══════════════════════════════════════════════════════════ */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--bg-2);
  z-index: 950;
  padding: 80px 40px 40px;
  transition: right 0.45s var(--ease-out);
  border-left: 1px solid var(--border);
}
.nav-drawer.open { right: 0; }
.nav-drawer-links { display: flex; flex-direction: column; gap: 32px; }
.nav-drawer-links a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dim);
  transition: color 0.25s;
}
.nav-drawer-links a:hover { color: var(--red); }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 940;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.nav-overlay.visible { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════════════
   HERO — Full viewport split
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-image-side {
  position: relative;
  overflow: hidden;
}
.hero-image-side .hero-visual {
  position: absolute; inset: 0;
  background: #0a0a0a;
}

/* Real photo inside hero */
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Subtle dark gradient over hero photo for readability */
.hero-image-side::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(9,9,11,0.1) 0%, rgba(9,9,11,0.2) 100%);
  pointer-events: none;
}

/* (grid overlay removido) */

/* Floating racket illustration (CSS art) */
.hero-racket-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-racket-art svg {
  width: 280px;
  opacity: 0.18;
  filter: drop-shadow(0 0 60px rgba(232, 25, 44, 0.25));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-18px) rotate(-6deg); }
}

/* Brand label on image */
.hero-image-label {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-image-label .label-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 25, 44, 0.12);
  border: 1px solid rgba(232, 25, 44, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-light);
  width: fit-content;
}
.hero-image-label .label-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Hero text side */
.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 64px;
  position: relative;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out) 0.2s, transform 0.8s var(--ease-out) 0.2s;
}
.hero-eyebrow.visible { opacity: 1; transform: none; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 4.8vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out) 0.35s, transform 0.9s var(--ease-out) 0.35s;
}
.hero-headline em {
  font-style: normal;
  color: var(--red-light);
}
.hero-headline.visible { opacity: 1; transform: none; }

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out) 0.5s, transform 0.9s var(--ease-out) 0.5s;
}
.hero-desc.visible { opacity: 1; transform: none; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out) 0.65s, transform 0.9s var(--ease-out) 0.65s;
}
.hero-actions.visible { opacity: 1; transform: none; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 1s var(--ease-out) 1s;
}
.hero-scroll.visible { opacity: 1; }
.hero-scroll-line {
  width: 40px; height: 1px;
  background: var(--text-muted);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scroll-line 2s ease-in-out infinite;
}
/* (hardcoded gold color removed) */
@keyframes scroll-line {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  background: var(--red);
  color: #fff;
}
.btn-gold:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232, 25, 44, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 14px 0;
  letter-spacing: 0.1em;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 0;
  width: 100%; height: 1px;
  background: var(--text-muted);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out), background 0.35s;
}
.btn-ghost:hover { color: var(--red); }
.btn-ghost:hover::after { transform: scaleX(1); background: var(--red); }

/* ══════════════════════════════════════════════════════════
   ALTERNATING FEATURE SECTIONS
   ══════════════════════════════════════════════════════════ */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  overflow: hidden;
}
.feature-section.reverse { direction: rtl; }
.feature-section.reverse > * { direction: ltr; }

/* Image panel */
.feature-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.feature-image-inner {
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease-out);
}
.feature-section:hover .feature-image-inner {
  transform: scale(1.03);
}

/* Unique gradient per section */
.feat-raquetes .feature-image-inner {
  background:
    radial-gradient(ellipse at 40% 55%, rgba(139, 0, 24, 0.25) 0%, transparent 65%),
    #0a0a0a;
}
.feat-vestuario .feature-image-inner {
  background:
    radial-gradient(ellipse at 55% 40%, rgba(139, 0, 24, 0.2) 0%, transparent 60%),
    #0a0a0a;
}
.feat-acessorios .feature-image-inner {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 0, 24, 0.22) 0%, transparent 65%),
    #0a0a0a;
}

/* Real photo inside feature panels */
.feature-image-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.feature-section:hover .feature-image-inner img {
  transform: scale(1.04);
}

/* Dark overlay on top of image for depth */
.feature-image-inner::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(9,9,11,0.15) 0%, rgba(9,9,11,0.35) 100%);
  pointer-events: none;
}

/* (grid overlay removido) */

/* Feature image icon */
.feature-icon-art {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-art svg {
  width: 200px;
  opacity: 0.12;
  filter: drop-shadow(0 0 80px rgba(232, 25, 44, 0.3));
}

/* Feature number watermark */
.feature-number {
  position: absolute;
  bottom: 32px; right: 32px; z-index: 3;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  user-select: none;
}

/* Feature text panel */
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  background: var(--bg-2);
}
.feature-content::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}
.feature-section:not(.reverse) .feature-content::before { left: 0; }
.feature-section.reverse .feature-content::before { right: 0; }

.feature-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.feature-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 3.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}
.feature-headline em { font-style: normal; color: var(--red-light); }
.feature-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 48px;
}
.feature-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}
.feature-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.feature-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════════════════════════ */
.products-section {
  padding: 120px 40px;
  background: var(--bg);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.section-title-group {}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
}
.section-title em { font-style: normal; color: var(--red-light); }

/* Product filter tabs */
.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-glow);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Product card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-out);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,169,110,0.08);
  transform: translateY(-6px);
}
.product-card-link {
  position: absolute; inset: 0; z-index: 1;
}

/* Card image */
.product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.product-image-bg {
  position: absolute; inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-image-bg { transform: scale(1.06); }

/* Unique card backgrounds */
.card-bg-1 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(139, 0, 24, 0.35) 0%, transparent 65%),
    #0d0d0d;
}
.card-bg-2 {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(100, 0, 16, 0.3) 0%, transparent 65%),
    #0d0d0d;
}
.card-bg-3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 0, 24, 0.28) 0%, transparent 65%),
    #0d0d0d;
}
.card-bg-4 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(80, 0, 12, 0.32) 0%, transparent 65%),
    #0d0d0d;
}

/* Real photo in product card */
.product-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

/* Card icon */
.product-card-icon {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.product-card-icon svg {
  width: 100px;
  opacity: 0.15;
  filter: drop-shadow(0 0 30px rgba(232, 25, 44, 0.25));
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}
.product-card:hover .product-card-icon svg {
  opacity: 0.22;
  transform: scale(1.1);
}

/* Card badge */
.product-badge {
  position: absolute;
  top: 16px; left: 16px; z-index: 3;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-new    { background: var(--red); color: #fff; }
.badge-sale   { background: var(--red-dark); color: #fff; }
.badge-hot    { background: #fff; color: #000; }

/* Card quick actions (on hover) */
.product-quick-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex;
  gap: 1px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover .product-quick-actions { transform: none; }
.quick-action-btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: var(--red);
  transition: background 0.2s;
}
.quick-action-btn:hover { background: var(--red-light); }
.quick-action-btn.wishlist-btn {
  flex: 0 0 52px;
  background: rgba(139, 0, 24, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.quick-action-btn.wishlist-btn svg { width: 16px; stroke: #fff; fill: none; stroke-width: 1.5; }

/* Card info */
.product-info {
  padding: 20px;
}
.product-category {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
}
.product-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ══════════════════════════════════════════════════════════
   BRAND BANNER — divider section
   ══════════════════════════════════════════════════════════ */
.brand-banner {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232, 25, 44, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.brand-banner-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.brand-banner-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 40px;
}
.brand-banner-headline em { font-style: normal; color: var(--red-light); }

/* Marquee scrolling text */
.marquee-wrap {
  overflow: hidden;
  margin: 80px 0 0;
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: '·';
  color: var(--red);
  font-size: 24px;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════ */
.newsletter-section {
  padding: 120px 40px;
  background: var(--bg);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--red);
}
.newsletter-icon svg { width: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.newsletter-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--red); }
.newsletter-input {
  flex: 1;
  background: var(--bg-2);
  color: var(--text);
  border: none;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input.is-invalid {
  box-shadow: inset 0 0 0 1px rgba(232, 25, 44, 0.7);
}
.newsletter-submit {
  padding: 16px 28px;
  background: var(--red);
  color: #000;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.newsletter-submit:hover { background: var(--red-light); }
.newsletter-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}
.newsletter-feedback {
  min-height: 22px;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.newsletter-feedback.is-success { color: #4ade80; }
.newsletter-feedback.is-error { color: #ff6b7a; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-soft);
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
}
.footer-brand {}
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-vip {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.12em;
}
.footer-logo .logo-sub {
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 32px;
}
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }
.social-btn svg { width: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════
   CURSOR (custom)
   ══════════════════════════════════════════════════════════ */
.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: -3px; left: -3px;
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  position: fixed;
  top: -18px; left: -18px;
  transition: transform 0.15s, width 0.3s, height 0.3s, opacity 0.3s;
}
body:has(a:hover, button:hover, .product-card:hover) .cursor-ring {
  width: 60px; height: 60px;
  top: -30px; left: -30px;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 50vh; }
  .hero-content-side { padding: 60px 32px 80px; }

  .feature-section      { grid-template-columns: 1fr; }
  .feature-section.reverse { direction: ltr; }
  .feature-image { min-height: 50vh; }
  .feature-content { padding: 60px 32px; }
  .feature-content::before { display: none; }

  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }

  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .products-section { padding: 80px 20px; }
  .hero-content-side { padding: 48px 24px 60px; }
  .footer-bottom { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-submit { padding: 14px; }
}
