/* =================================================================
   SATIER FIT - E-commerce & Funil de Vendas
   Design System: Roxo Profundo, Ouro Metálico & Glassmorphism
   Tipografia: Space Grotesk (Títulos), Archivo (Corpo), Space Mono (Tech/Preços)
   ================================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700,500,400&f[]=general-sans@600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Archivo:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Archivo+Black&display=swap');

/* --- VARIÁVEIS / TOKENS --- */
:root {
  --bg-darker: #080410;    
  --bg-dark: #110c1c;      /* Unified dark background for modals and overlays */
  --bg-card: rgba(30, 14, 60, 0.55); 
  --bg-glass: rgba(255, 255, 255, 0.9); /* Premium light glass for mobile top bar */
  --primary: #FFD60A;      /* Brand Yellow */
  --primary-hover: #e5b800;
  --accent: #a78bfa;       /* Light purple */
  --accent-vivid: #7C3AED; /* Brand Purple */
  --accent-glow: rgba(124, 58, 237, 0.25);
  --text: #1a1a1a;         /* High-contrast dark text for light pages */
  --text-light: #f9fafb;   /* Light text color */
  --text-muted: #6b7280;   
  --border: rgba(124, 58, 237, 0.15); 
  --border-focus: rgba(124, 58, 237, 0.6);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  --font-display: 'Cabinet Grotesk', 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'General Sans', 'Archivo', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-logo: 'Cabinet Grotesk', 'Archivo Black', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- RESET & ESTRUTURA BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-darker);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fcfcfc;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
}

.nav-link-hover {
  position: relative;
}

.nav-link-hover::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
  width: 100%;
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(124, 58, 237, 0.4) 50%, transparent 100%);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.section-divider {
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.02), transparent);
}

html.lock-scroll,
body.lock-scroll {
  overflow: hidden !important;
  height: 100% !important;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: inherit;
  outline: none;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- INTRO PRELOADER TRANSITION (Nitex Inspired Dual-Phase Reveal) --- */
#intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000000; /* Pure black, identical to Nitex */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#intro-curtain.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Skewed Neon Shape in Center (Nitex style) */
.preloader-neon-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vmax;
  height: 100vmax;
  background: var(--primary); /* Neon/Gold yellow */
  transform: translate(-50%, -50%) skewX(-20deg) scale(0);
  filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.45));
}

#intro-curtain.animating .preloader-neon-shape {
  animation: shapeGrow 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes shapeGrow {
  0% {
    transform: translate(-50%, -50%) skewX(-20deg) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) skewX(-20deg) scale(4.5);
  }
}

/* Yellow background behind reveal wrapper */
#intro-yellow-bg {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--primary);
  display: none;
  pointer-events: none;
}

/* Website Reveal Wrapper */
#reveal-wrapper {
  position: relative;
  z-index: 9999;
  width: 100%;
  min-height: 100vh;
  will-change: clip-path;
}

#reveal-wrapper.clip-start {
  clip-path: polygon(47% 45%, 57% 45%, 53% 55%, 43% 55%);
  -webkit-clip-path: polygon(47% 45%, 57% 45%, 53% 55%, 43% 55%);
}

#reveal-wrapper.clip-reveal {
  clip-path: polygon(-50% 0%, 150% 0%, 130% 100%, -70% 100%);
  -webkit-clip-path: polygon(-50% 0%, 150% 0%, 130% 100%, -70% 100%);
  transition: clip-path 1.4s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* --- CATEGORY TRANSITION OVERLAY (Nitex Inspired Diagonal Sweep) --- */
#category-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005; /* Must sit on top of everything, including preloader */
  background: var(--primary); /* Neon yellow / Gold */
  pointer-events: none;
  clip-path: polygon(-120% 0, -20% 0, -20% 100%, -120% 100%); /* Off-screen left */
  -webkit-clip-path: polygon(-120% 0, -20% 0, -20% 100%, -120% 100%);
  transition: clip-path 0.4s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

#category-transition-overlay.sweep-in {
  clip-path: polygon(-20% 0, 120% 0, 100% 100%, -20% 100%); /* Covers screen completely */
  -webkit-clip-path: polygon(-20% 0, 120% 0, 100% 100%, -20% 100%);
}

#category-transition-overlay.sweep-out {
  clip-path: polygon(100% 0, 120% 0, 100% 100%, 100% 100%); /* Slides off-screen right */
  -webkit-clip-path: polygon(100% 0, 120% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes letterSpread {
  0% {
    letter-spacing: -0.1em;
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    letter-spacing: 0.05em;
    filter: blur(0);
    opacity: 1;
  }
}





/* --- REVELAÇÃO NO SCROLL (REVEAL) --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition), filter 0.8s var(--transition);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- CONTÊINER PRINCIPAL --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER / NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.intro-closed .brand {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary);
  display: block;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--text);
  box-shadow: 0 0 12px rgba(234, 179, 8, 0.45);
}

.brand {
  color: var(--text);
}

.brand span span {
  color: var(--accent-vivid);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

body.intro-closed .nav-menu {
  opacity: 1;
  transform: translateY(0);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

body.intro-closed .nav-actions {
  opacity: 1;
  transform: translateY(0);
}

.nav-cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}

.nav-cart-btn:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--primary);
}

.nav-cart-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--accent-vivid);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* --- SCROLL PROGRESS INDICATOR --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  z-index: 10005;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* --- HERO INTRO SECTION (Brutalist Landing Screen) --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--bg-darker);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Glowing mesh background blobs */
.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  border-radius: 50%;
  background: var(--accent-vivid); /* Purple */
  filter: blur(120px);
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
  animation: floatGlow1 20s infinite alternate ease-in-out;
}

.hero-glow-2 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  border-radius: 50%;
  background: var(--primary); /* Gold */
  filter: blur(120px);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  animation: floatGlow2 25s infinite alternate ease-in-out;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease 0.5s;
}

body.intro-closed .hero-grid-pattern {
  opacity: 1;
}

@keyframes floatGlow1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
  100% { transform: translate(-30px, -50px) scale(0.9); }
}

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

.hero-intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
}

.hero-intro-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  margin-bottom: 8px;
}

.title-word-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 0.85;
  width: 100%;
}

.hero-intro-title h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 13vw, 8.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s ease, -webkit-text-stroke-color 0.4s ease;
  cursor: default;
  z-index: 2;
}

.hero-intro-title h1.text-solid {
  color: var(--text);
  text-shadow: none;
}

.hero-intro-title h1.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  text-shadow: none;
}

/* Organic background glows */
.title-glow-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  height: 80%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

/* Purple Theme (SATIER) */
.purple-theme .title-glow-blob {
  background: radial-gradient(
    circle,
    rgba(191, 90, 242, 0.8) 0%,
    rgba(147, 51, 234, 0.35) 45%,
    rgba(168, 85, 247, 0) 70%
  );
  filter: blur(40px);
  opacity: 0.45;
}

/* Yellow Theme (FIT) */
.yellow-theme .title-glow-blob {
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.6) 0%,
    rgba(251, 191, 36, 0.2) 45%,
    rgba(255, 215, 0, 0) 75%
  );
  filter: blur(40px);
  opacity: 0.25;
}

/* Interaction Effects (Hover & Touch Active) */
.title-word-wrap:hover h1,
.title-word-wrap.active h1 {
  transform: scale(1.04);
}

.title-word-wrap.purple-theme:hover .title-glow-blob,
.title-word-wrap.purple-theme.active .title-glow-blob {
  opacity: 0.95;
  transform: translate(-50%, -50%) scale(1.18);
  filter: blur(45px);
}

.title-word-wrap.yellow-theme:hover h1.text-outline,
.title-word-wrap.yellow-theme.active h1.text-outline {
  -webkit-text-stroke-color: #ffffff;
}

.title-word-wrap.yellow-theme:hover .title-glow-blob,
.title-word-wrap.yellow-theme.active .title-glow-blob {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1.18);
  filter: blur(45px);
}

/* Glassmorphic tagline tech-pill */
.hero-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 14, 60, 0.35);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 100px;
  padding: 10px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease 1.1s, transform 0.8s ease 1.1s, border-color 0.3s, box-shadow 0.3s;
}

.hero-tagline-wrap:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.08);
}

.hero-tagline-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 1.5s infinite alternate ease-in-out;
}

@keyframes pulseDot {
  0% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.25); box-shadow: 0 0 12px var(--primary); }
}

.hero-tagline {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  color: var(--text);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}

body.intro-closed .hero-tagline-wrap {
  opacity: 1;
  transform: translateY(0);
}

/* Modern Circular Scroll Down Indicator (Tech style) */
.scroll-indicator-wrap {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  opacity: 0;
  transition: opacity 0.8s ease 1.3s, transform 0.3s;
}

body.intro-closed .scroll-indicator-wrap {
  opacity: 1;
}

.scroll-indicator-wrap:hover {
  transform: translateX(-50%) scale(1.08);
}

.scroll-indicator-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: rotateRing 15s linear infinite;
  transition: border-color 0.3s;
}

.scroll-indicator-wrap:hover .scroll-indicator-ring {
  border-color: var(--primary);
  border-style: dotted;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-indicator-mouse {
  position: relative;
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  background: rgba(8, 4, 16, 0.4);
  backdrop-filter: blur(2px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.scroll-indicator-wrap:hover .scroll-indicator-mouse {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.scroll-indicator-dot {
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDotAnim 1.8s infinite ease-in-out;
  box-shadow: 0 0 4px var(--primary);
}

@keyframes scrollDotAnim {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translateY(12px); opacity: 1; }
  75%, 100% { transform: translateY(16px); opacity: 0; }
}

/* Entrance Animations for Hero Intro text characters */
.hero-intro-title h1 {
  opacity: 1;
  transform: none;
  filter: none;
}

body.intro-closed .hero-intro-title h1.text-solid .reveal-char {
  transition-delay: calc(var(--delay, 0s) + 0.4s);
}

body.intro-closed .hero-intro-title h1.text-outline .reveal-char {
  transition-delay: calc(var(--delay, 0s) + 0.75s);
}

body.intro-closed .hero-intro-title h1 .reveal-char {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* --- HERO ACCORDION SECTION (Seção do Acordeão) --- */
.hero-accordion-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--bg-darker);
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* Letreiro Infinito (Marquee) */
.hero-marquee {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.25;
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: scrollMarquee 28s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  padding-right: 3rem;
}

@keyframes scrollMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Acordeão de Colunas */
.hero-accordion {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-panel {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 32px;
  transition: flex 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-right: 1px solid var(--border);
  cursor: pointer;
}

.hero-panel:last-child {
  border-right: none;
}

.hero-panel .panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.65;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover e Active */
.hero-panel:hover, .hero-panel.active {
  flex: 1.8;
}

.hero-panel:hover .panel-bg, .hero-panel.active .panel-bg {
  opacity: 0.95;
  transform: scale(1.03);
}

/* Conteúdo do Painel */
.panel-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  pointer-events: none;
}

.panel-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light); /* Light text for dark panels */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.panel-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75); /* Highly readable semi-transparent white */
  max-width: 260px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
  margin: 0;
  line-height: 1.4;
}

.panel-graphic {
  width: 110px;
  height: 110px;
  margin-top: 10px;
  opacity: 0.12;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s, transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s;
}

.panel-svg {
  width: 100%;
  height: 100%;
}

.hero-panel:hover .panel-desc, .hero-panel.active .panel-desc {
  opacity: 1;
  transform: translateY(0);
}

.hero-panel:hover .panel-graphic, .hero-panel.active .panel-graphic {
  opacity: 0.8;
  transform: translateY(0) scale(1);
}

.hero-panel:hover .panel-tag, .hero-panel.active .panel-tag {
  opacity: 1;
}


/* --- BOTÕES E MICRO-INTERAÇÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  transition: none;
}

.btn:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-darker);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 179, 8, 0.25);
}

.btn-outline {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text);
}

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

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-circle-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
}

/* Glassmorphic Badge */
.hero-glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  width: 320px;
  box-shadow: var(--shadow);
  z-index: 1;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.glass-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.glass-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(234, 179, 8, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.glass-card-price {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
}

.glass-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.glass-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.glass-card-meta {
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.meta-value {
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- CATEGORIES & FILTERS --- */
.shop-section {
  padding: 80px 0;
  position: relative;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-title span:not(.reveal-char):not(.reveal-word-wrap) {
  color: var(--primary);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 450px;
}

/* Glassmorphic Category Bar */
.filter-tabs-wrapper {
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

.filter-tabs-wrapper::-webkit-scrollbar {
  height: 4px;
}

.filter-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 50px;
  width: max-content;
  gap: 4px;
}

.filter-tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.filter-tab:hover {
  color: var(--text);
}

.filter-tab.active {
  background: var(--primary);
  color: var(--bg-darker);
}

/* --- PRODUCT GRID --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* Product Card Premium */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--transition), border-color 0.3s var(--transition), box-shadow 0.3s var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 179, 8, 0.3);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.product-media {
  position: relative;
  aspect-ratio: 4/5;
  background: #150f24;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

/* Product SVG Placeholder Representation */
.product-svg-wrap {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--transition);
  background: radial-gradient(circle at center, #52279b 0%, #0f071d 100%);
}

.product-card:hover .product-svg-wrap {
  transform: scale(1.06);
}

.product-svg {
  width: 80%;
  height: 80%;
  stroke: var(--text-muted);
  stroke-width: 1;
  fill: none;
  opacity: 0.8;
  transition: stroke var(--transition), opacity var(--transition);
}

.product-card:hover .product-svg {
  stroke: var(--primary);
  opacity: 1;
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  cursor: pointer;
  transition: color var(--transition);
}

.product-name:hover {
  color: var(--primary);
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary); /* Pop out in yellow */
}

.product-options-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
}

.option-label span {
  color: var(--text);
  font-weight: 600;
}

.size-options {
  display: flex;
  gap: 6px;
}

.size-btn {
  flex-grow: 1;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: rgba(255,255,255,0.02);
}

.size-btn:hover {
  border-color: var(--text-muted);
}

.size-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--bg-darker);
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-dot-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.color-dot-wrap.selected {
  border-color: var(--primary);
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.buy-btn {
  margin-top: auto;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: var(--border);
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.buy-btn:hover {
  background: var(--primary);
  color: var(--bg-darker);
  border-color: transparent;
}

.buy-btn svg {
  width: 16px;
  height: 16px;
  transition: stroke 0.2s;
}

.buy-btn:hover svg {
  stroke: var(--bg-darker);
}

/* --- BENEFÍCIOS / DIFERENCIAIS --- */
.features-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.feature-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- INFO SECTION (INSTAGRAM BIO INSPIRED) --- */
.info-section {
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-left-insta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.info-left-insta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

.insta-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.insta-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--primary) 100%);
  padding: 3px;
  overflow: hidden;
}

.insta-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.insta-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.insta-user-meta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.insta-user-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta-bio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.insta-bio-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}

.insta-bio-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.insta-stats {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.insta-stat-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}

.insta-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-rights {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- CARRINHO DRAWER (SLIDE-IN) --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 10010;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--transition), visibility 0.4s, backdrop-filter 0.4s, -webkit-backdrop-filter 0.4s;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  z-index: 1200;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  padding-bottom: var(--safe-bottom);
}

.cart-overlay.active .cart-drawer {
  transform: translateX(0);
}

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

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--text);
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

.cart-empty-message svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background: radial-gradient(circle at center, #3c1e6e 0%, #0c0617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.cart-item-img svg {
  width: 70%;
  height: 70%;
  stroke: var(--text-muted);
  fill: none;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding-right: 24px;
}

.cart-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.cart-item-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.qty-control {
  display: flex;
  align-items: center;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.05);
}

.qty-val {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  width: 32px;
  text-align: center;
}

.cart-item-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--text-muted);
}

.cart-item-remove:hover {
  color: #ef4444;
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.cart-total-label {
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-total-value {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.cart-delivery-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cart-delivery-info svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
}

/* --- CHECKOUT MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--transition), visibility 0.4s, backdrop-filter 0.4s, -webkit-backdrop-filter 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-card {
  background: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

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

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--text);
}

/* Form Steps */
.step-indicator {
  display: flex;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  gap: 16px;
}

.step-dot {
  flex-grow: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  transition: background 0.3s;
}

.step-dot.active {
  background: var(--primary);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 60vh;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeInStep 0.4s var(--transition) forwards;
}

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

.form-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
}

.form-select {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3f4f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  transition: border-color 0.2s;
}

.form-select:focus {
  border-color: var(--primary);
}

.form-select option {
  background-color: var(--bg-dark);
  color: var(--text);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-option-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.payment-option-card:hover {
  border-color: rgba(255,255,255,0.2);
}

.payment-option-card.selected {
  border-color: var(--primary);
  background: rgba(234, 179, 8, 0.05);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.payment-option-card.selected .payment-radio {
  border-color: var(--primary);
}

.payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.2s;
}

.payment-option-card.selected .payment-radio::after {
  opacity: 1;
}

.payment-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.payment-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  background: rgba(0,0,0,0.2);
}

.modal-footer button {
  flex-grow: 1;
}

/* --- MOBILE BOTTOM NAV BAR & FLOATING CART (ANDROID OPTIMIZED) --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 990;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-bar-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-around;
}

.mobile-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  width: 60px;
}

.mobile-nav-btn.active, .mobile-nav-btn:active {
  color: var(--primary);
}

.mobile-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: stroke 0.2s;
}

.mobile-nav-btn.active svg {
  stroke: var(--primary);
}

.mobile-cart-wrap {
  position: relative;
}

.mobile-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: var(--accent-vivid);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Shake Animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake {
  animation: shake 0.4s ease;
}

/* Floating WhatsApp Helper Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  transition: transform 0.25s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- RESPONSIBLE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --safe-bottom: env(safe-area-inset-bottom, 0px);
  }
  body {
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }
  .navbar {
    height: 60px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .brand {
    font-size: 1.1rem !important;
    gap: 4px !important;
  }
  .brand-logo-img {
    width: 28px !important;
    height: 28px !important;
  }
  .nav-menu {
    display: flex !important;
    gap: 12px !important;
    align-items: center;
  }
  .nav-menu a[href="#sobre"] {
    display: none !important;
  }
  .nav-link {
    font-size: 0.72rem !important;
    padding: 4px 0 !important;
    letter-spacing: 0.05em;
  }
  .nav-actions {
    display: flex !important;
  }
  .nav-cart-btn {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    background: var(--border) !important;
  }
  
  /* Mobile Overrides para a Seção de Intro */
  .hero {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    padding: 0 16px;
  }
  
  .hero-intro-title h1 {
    font-size: clamp(3rem, 15vw, 6rem);
  }
  
  .hero-intro-desc {
    font-size: 0.95rem;
  }

  /* Mobile Overrides para a Seção do Acordeão */
  .hero-accordion-section {
    height: calc(100vh - 60px);
  }
  
  .hero-accordion {
    flex-direction: column;
    height: 100%;
  }
  
  .hero-panel {
    flex: 1;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 20px;
    transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  
  .hero-panel:last-child {
    border-bottom: none;
  }
  
  .hero-panel:hover, .hero-panel.active {
    flex: 1.8;
  }
  
  .hero-marquee {
    top: 35%;
    opacity: 0.15;
  }
  
  .hero-marquee span {
    font-size: 4.5rem;
  }
  
  .panel-graphic {
    width: 70px;
    height: 70px;
    margin-top: 5px;
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
  
  .mobile-bottom-bar {
    display: none !important;
  }
  .whatsapp-float-btn {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
  }
  .modal-card {
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
  .modal-body {
    max-height: calc(100vh - 180px);
  }

  /* Mobile compact catalog card layout */
  .product-grid {
    padding-bottom: 30px;
  }
  .product-media {
    height: 220px !important;
    aspect-ratio: auto !important; /* Override desktop ratio */
  }
  .product-info {
    padding: 14px 16px !important;
  }
  .product-name {
    font-size: 1.05rem !important;
    margin-bottom: 4px !important;
  }
  .product-options-selector {
    margin-bottom: 12px !important;
    gap: 8px !important;
  }
  .option-group {
    gap: 4px !important;
  }
  .size-btn {
    height: 32px !important;
    font-size: 0.75rem !important;
  }
  .color-options {
    gap: 6px !important;
  }
  .color-dot-wrap {
    width: 22px !important;
    height: 22px !important;
  }
  .color-dot {
    width: 14px !important;
    height: 14px !important;
  }
  .buy-btn {
    height: 42px !important;
    font-size: 0.8rem !important;
  }
}

/* --- QUICK VIEW DRAWER (SLIDE-IN FROM LEFT) --- */
.quickview-overlay {
  display: flex;
  justify-content: flex-start;
}

.quickview-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-dark);
  z-index: 1200;
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  border-right: 1px solid var(--border);
  padding-bottom: var(--safe-bottom);
}

.quickview-overlay.active .quickview-drawer {
  transform: translateX(0);
}

.quickview-body {
  flex-grow: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quickview-img-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: radial-gradient(circle, #251846 0%, #0f0a1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 30px;
  overflow: hidden;
}

.quickview-img-wrap svg {
  width: 90%;
  height: 90%;
  stroke: var(--primary);
  fill: none;
}

.quickview-fabric {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.quickview-fabric strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- TOAST NOTIFICATIONS (MICRO-INTERACTIONS) --- */
.toast-notification {
  position: fixed;
  top: 24px;
  left: 24px;
  background: var(--bg-dark);
  border: 1px solid var(--primary);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  color: #ffffff;
  z-index: 10030;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-20px); /* Slides down from the top */
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .toast-notification {
    top: 20px;
    bottom: auto;
    left: 20px;
    right: 20px;
    justify-content: center;
    transform: translateY(-20px);
  }
}

.toast-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Installment pricing text inside product catalog cards */
.product-installments {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --- ANDROID PREMIUM UX & ACTIVE PRESS STATES --- */
button:active,
.btn:active,
.size-btn:active,
.color-dot-wrap:active,
.nav-link:active,
.whatsapp-float-btn:active,
.cart-item-remove:active,
.qty-btn:active {
  transform: scale(0.95);
  transition: transform 0.05s ease;
}

/* Skeleton Loading Shimmer Effect */
.skeleton-loading {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
  color: transparent !important;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}



