/*
Theme Name: CourtLab PadelBoostlab
Theme URI: https://courtlab.vercel.app/
Author: PadelBoostlab
Author URI: https://padelboostlab.ma
Description: Exact reproduction of the PadelBoostlab Vercel site as a WordPress + WooCommerce theme. Dark neon design for Tennis & Padel gear organizer.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: courtlab
WC requires at least: 8.0
WC tested up to: 9.0
Tags: woocommerce, dark, neon, sports, ecommerce
*/

/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --black: #0A0A0A;
  --pink: #FF2D95;
  --blue: #00D1FF;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.6);
  --nav-height: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* PAGE TRANSITION */
#page-transition {
  position: fixed; inset: 0;
  background: #0A0A0A;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
#page-transition.fade-out { opacity: 0; }

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: sticky;
  top: 0;
  width: 100%; box-sizing: border-box;
  height: var(--nav-height);
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 15px var(--pink);
}
.nav-logo span { color: var(--pink); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
}
.cart-icon-btn svg { width:22px; height:22px; }
.cart-icon-btn:hover { color: var(--pink); }
#cart-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 5vw;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
}
.lang-switch { display:flex; align-items:center; gap:6px; margin-left:8px; }
.lang-btn { background:transparent; border:none; color:rgba(255,255,255,0.45); font-family:'Montserrat',sans-serif; font-weight:700; font-size:0.8rem; letter-spacing:0.1em; cursor:pointer; padding:4px 6px; border-radius:4px; transition:color 0.2s, background 0.2s; }
.lang-btn.active { color:#FF2D95; background:rgba(255,45,149,0.1); }
.lang-btn:hover { color:#fff; }
.lang-sep { color:rgba(255,255,255,0.2); font-size:0.75rem; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 5vw;
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.3;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,45,149,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(0,209,255,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: rgba(0,209,255,0.06);
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 .glow-pink {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(255,45,149,0.6), 0 0 60px rgba(255,45,149,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 40px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255,45,149,0.4);
  display: inline-block;
}
.btn-primary:hover {
  background: #ff50a8;
  box-shadow: 0 0 40px rgba(255,45,149,0.7), 0 0 80px rgba(255,45,149,0.3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 16px 40px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 20px rgba(0,209,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll svg { width: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
section { padding: 100px 5vw; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Glass cards */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(255,45,149,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PROBLEM SECTION
============================================================ */
.problem-section { background: rgba(255,255,255,0.01); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.problem-card { text-align: center; }
.problem-icon { width:56px; height:56px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; border-radius:14px; background:linear-gradient(135deg,rgba(255,45,149,0.12),rgba(0,209,255,0.08)); border:1px solid rgba(255,45,149,0.2); }
.problem-icon svg { width:26px; height:26px; }
.problem-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #fff;
}
.problem-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }
.before-after-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.before-label { background: rgba(255,60,60,0.15); color: #ff6060; border: 1px solid rgba(255,60,60,0.3); }
.after-label { background: rgba(0,209,255,0.1); color: var(--blue); border: 1px solid rgba(0,209,255,0.3); }

/* ============================================================
   FEATURES
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.feature-card { text-align: center; }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(255,45,149,0.15), rgba(0,209,255,0.1));
  border: 1px solid rgba(255,45,149,0.2);
  color: var(--pink);
}
.feature-icon svg { width:28px; height:28px; }
.feature-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   HOW IT WORKS
============================================================ */
#how-it-works {
  position: relative;
  overflow: hidden;
}
#how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/photo1.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(0.25);
  transform: scale(1.05);
  z-index: 0;
}
#how-it-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(10,10,10,0.6) 100%);
  z-index: 0;
}
#how-it-works > * { position: relative; z-index: 1; }
.steps-container {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 88px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  opacity: 0.3;
}
.step { flex: 1; text-align: center; }
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink);
  background: rgba(255,45,149,0.08);
  box-shadow: 0 0 20px rgba(255,45,149,0.2);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.step-emoji { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(255,45,149,0.15), rgba(0,209,255,0.1)); border: 1px solid rgba(255,45,149,0.25); margin-bottom: 16px; color: var(--pink); }
.step-emoji svg { width: 26px; height: 26px; }

/* ============================================================
   LIFESTYLE / QUOTE
============================================================ */
.lifestyle-section {
  position: relative;
  padding: 160px 5vw;
  background: var(--black);
  overflow: hidden;
}
.lifestyle-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.25;
  z-index: 0;
}
.lifestyle-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.7) 0%,
    rgba(10,10,10,0.3) 50%,
    rgba(10,10,10,0.7) 100%);
  z-index: 1;
}
.lifestyle-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.lifestyle-quote blockquote {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.lifestyle-quote blockquote span { color: var(--pink); text-shadow: 0 0 20px rgba(255,45,149,0.5); }
.lifestyle-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  margin: 0 auto 24px;
  border-radius: 2px;
}
.lifestyle-quote cite {
  font-style: normal;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ============================================================
   BENEFITS
============================================================ */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.benefits-list { display: flex; flex-direction: column; gap: 24px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,45,149,0.15), rgba(0,209,255,0.1));
  border: 1px solid rgba(255,45,149,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.benefit-text p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }
.product-mockup {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,45,149,0.1);
}
.product-mockup::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,45,149,0.05), transparent, rgba(0,209,255,0.05), transparent);
  animation: rotate-glow 10s linear infinite;
}
@keyframes rotate-glow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.product-mockup-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  gap: 0;
}
.product-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink);
  background: rgba(255,45,149,0.1);
  border: 1px solid rgba(255,45,149,0.3);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  text-align: center;
  padding: 120px 5vw;
  background: linear-gradient(180deg, transparent, rgba(255,45,149,0.05) 50%, transparent);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,149,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.final-cta p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 48px; position: relative; z-index: 1; }
.final-cta .btn-primary { font-size: 1rem; padding: 20px 60px; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
============================================================ */
footer { border-top: 1px solid var(--glass-border); padding: 60px 5vw 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--pink); }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--pink); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { color: var(--pink); border-color: var(--pink); background: rgba(255,45,149,0.08); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-secondary); font-size: 0.85rem; }
/* About page footer */
.footer-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.footer-logo span { color: var(--pink); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { text-align: center; color: var(--text-secondary); font-size: 0.85rem; }

/* ============================================================
   SHOP PAGE - PRODUCT STYLES
============================================================ */
.page-header {
  padding: 60px 5vw 40px;
  background: linear-gradient(180deg, rgba(255,45,149,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--glass-border);
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.product-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 5vw;
  align-items: start;
}
.product-display {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-display::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255,45,149,0.06), transparent, rgba(0,209,255,0.06), transparent);
  animation: rotate-glow 12s linear infinite;
}
.product-display-inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px;
}
.product-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: opacity 0.4s ease;
}
.product-display-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--pink);
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(255,45,149,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}
.product-thumbs {
  display: flex; gap: 12px; margin-top: 16px;
}
.thumb {
  width: 72px; height: 72px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.thumb:hover { transform: translateY(-2px); }
.thumb.active { border-color: var(--pink); box-shadow: 0 0 12px rgba(255,45,149,0.4); }
.product-info { display: flex; flex-direction: column; gap: 24px; }
.product-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(0,209,255,0.35);
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(0,209,255,0.07);
  width: fit-content;
}
.product-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.product-rating {
  display: flex; align-items: center; gap: 10px;
}
.stars { color: #FFD700; font-size: 1rem; letter-spacing: 2px; }
.rating-score { font-weight: 700; font-size: 0.95rem; }
.rating-count { color: var(--text-secondary); font-size: 0.85rem; }
.product-price-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.price-original { color: var(--text-secondary); font-size: 1rem; text-decoration: line-through; }
.price-current {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  text-shadow: 0 0 15px rgba(255,45,149,0.4);
}
.price-badge {
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255,45,149,0.4); }
  50% { box-shadow: 0 0 18px rgba(255,45,149,0.7); }
}
.option-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: block;
}
.color-swatches { display: flex; gap: 10px; }
.swatch {
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.swatch:hover { transform: scale(1.1); }
.swatch.selected { border-color: #fff; box-shadow: 0 0 0 2px var(--pink); }
.swatch-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 0.7rem;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.swatch:hover .swatch-tooltip { opacity: 1; }
.pack-options { display: flex; flex-direction: column; gap: 10px; }
.pack-option {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pack-option:hover { border-color: rgba(255,45,149,0.3); }
.pack-option.selected { border-color: var(--pink); background: rgba(255,45,149,0.08); }
.pack-option-left { display: flex; align-items: center; gap: 12px; }
.pack-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pack-option.selected .pack-radio { border-color: var(--pink); background: rgba(255,45,149,0.15); }
.pack-option.selected .pack-radio::after { content: ''; width: 8px; height: 8px; background: var(--pink); border-radius: 50%; }
.pack-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; }
.pack-save { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; padding: 3px 8px; border-radius: 4px; }
.pack-popular { background: rgba(255,45,149,0.15); color: var(--pink); border: 1px solid rgba(255,45,149,0.3); }
.pack-save-badge { background: rgba(0,209,255,0.1); color: var(--blue); border: 1px solid rgba(0,209,255,0.3); }
.pack-price { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; white-space: nowrap; }
.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-control {
  display: flex; align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(255,45,149,0.15); color: var(--pink); }
.qty-display { min-width: 48px; text-align: center; font-weight: 600; font-size: 1rem; }
.btn-atc {
  width: 100%;
  padding: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255,45,149,0.35);
}
.btn-atc:hover { box-shadow: 0 0 40px rgba(255,45,149,0.65), 0 0 80px rgba(255,45,149,0.25); transform: translateY(-1px); }
.btn-buy-now {
  width: 100%;
  padding: 18px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-buy-now:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 0 20px rgba(0,209,255,0.2); }
.trust-badges { display: flex; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.trust-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-secondary); text-align: center; flex: 1; min-width: 80px; }
.trust-badge .trust-icon { display:flex; align-items:center; justify-content:center; width:28px; height:28px; color:var(--pink); }
.trust-badge .trust-icon svg { width:22px; height:22px; flex-shrink:0; }
.share-row { display: flex; align-items: center; gap: 12px; }
.share-row span { font-size: 0.8rem; color: var(--text-secondary); }
.share-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.share-btn:hover { border-color: var(--pink); background: rgba(255,45,149,0.08); color: var(--pink); }
.share-btn svg { width: 16px; height: 16px; }

/* PRODUCT TABS */
.product-tabs-section { padding: 60px 5vw 40px; border-top: 1px solid var(--glass-border); }
.tabs-header { display: flex; gap: 0; border-bottom: 1px solid var(--glass-border); margin-bottom: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs-header::-webkit-scrollbar { display: none; }
.tab-btn { padding: 14px 28px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: none; border: none; color: var(--text-secondary); cursor: pointer; position: relative; transition: color 0.2s; }
.tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--pink); transform: scaleX(0); transition: transform 0.3s ease; }
.tab-btn.active { color: var(--pink); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--text-secondary); line-height: 1.8; font-size: 0.98rem; max-width: 740px; }
.tab-panel p + p { margin-top: 16px; }
.features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; max-width: 740px; }
.features-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; list-style: none; }
.features-list li .fi { color: var(--blue); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.shipping-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 740px; }
.shipping-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; padding: 20px; display: flex; gap: 14px; }
.shipping-item .si { display:flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:10px; background:rgba(255,45,149,0.08); border:1px solid rgba(255,45,149,0.18); flex-shrink:0; color:var(--pink); }
.shipping-item .si svg { width:22px; height:22px; }
.shipping-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.shipping-item p { color: var(--text-secondary); font-size: 0.82rem; line-height: 1.6; }

/* REVIEWS */
.reviews-section { padding: 60px 5vw; border-top: 1px solid var(--glass-border); }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.reviews-header h2 { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 700; }
.reviews-summary { display: flex; align-items: center; gap: 12px; }
.reviews-big-score { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900; color: var(--pink); }
.reviews-meta { display: flex; flex-direction: column; gap: 4px; }
.reviews-meta .stars { font-size: 1.1rem; color: #FFD700; }
.reviews-meta span { color: var(--text-secondary); font-size: 0.85rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 14px; padding: 24px; transition: border-color 0.3s ease; }
.review-card:hover { border-color: rgba(255,45,149,0.25); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.review-header-left { display:flex; align-items:center; gap:12px; }
.review-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,rgba(255,45,149,0.25),rgba(0,209,255,0.2)); border:1px solid rgba(255,45,149,0.3); display:flex; align-items:center; justify-content:center; font-family:'Montserrat',sans-serif; font-weight:800; font-size:1rem; color:#fff; flex-shrink:0; }
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.reviewer-date { color: var(--text-secondary); font-size: 0.78rem; }
.review-stars { color: #FFD700; font-size: 0.9rem; }
.review-badge-verified { font-size: 0.68rem; color: var(--blue); background: rgba(0,209,255,0.1); border: 1px solid rgba(0,209,255,0.25); padding: 3px 8px; border-radius: 4px; margin-top: 6px; display: inline-block; }
.review-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: #fff; }
.review-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* TOAST */
#toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: rgba(10,10,10,0.95);
  border: 1px solid var(--pink);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 0 30px rgba(255,45,149,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 5000;
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast .toast-icon { display:flex;align-items:center;color:var(--pink); }
#toast .toast-icon svg { width:22px;height:22px; }
#toast .toast-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; }
#toast .toast-sub { color: var(--text-secondary); font-size: 0.78rem; margin-top: 2px; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5vw 80px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,45,149,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(0,209,255,0.07) 0%, transparent 55%);
}
.about-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,45,149,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,45,149,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.about-hero-content { position: relative; z-index: 2; max-width: 780px; }
.about-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05;
  margin-bottom: 20px;
}
.about-hero h1 span {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.about-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); line-height: 1.8;
  max-width: 600px; margin: 0 auto;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.85; margin-bottom: 20px; }
.story-text p strong { color: var(--text-primary); font-weight: 600; }
.story-img-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--glass-border); box-shadow: 0 0 60px rgba(255,45,149,0.12); }
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,10,10,0.85), transparent); padding: 24px; }
.story-img-overlay span { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--pink); }
.stats-section { background: linear-gradient(135deg, rgba(255,45,149,0.05) 0%, rgba(0,209,255,0.03) 100%); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid var(--glass-border); transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,45,149,0.04); }
.stat-number { font-family: 'Orbitron', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; background: linear-gradient(90deg, var(--pink), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 8px; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px 28px; backdrop-filter: blur(20px); transition: all 0.35s; position: relative; overflow: hidden; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pink), var(--blue)); opacity: 0; transition: opacity 0.35s; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(255,45,149,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.value-card:hover::before { opacity: 1; }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(255,45,149,0.15), rgba(0,209,255,0.08)); border: 1px solid rgba(255,45,149,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-icon svg { width:26px; height:26px; color:var(--pink); }
.value-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.timeline { position: relative; margin-top: 56px; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--pink), var(--blue), transparent); }
.timeline-item { position: relative; margin-bottom: 48px; padding-left: 28px; }
.timeline-item::before { content: ''; position: absolute; left: -45px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 16px rgba(255,45,149,0.6); border: 2px solid var(--black); }
.timeline-year { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: var(--pink); margin-bottom: 6px; }
.timeline-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.timeline-desc { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; max-width: 600px; }
.contact-band { background: linear-gradient(135deg, rgba(255,45,149,0.08) 0%, rgba(0,209,255,0.05) 100%); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 80px 5vw; text-align: center; }
.contact-band h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; }
.contact-band h2 span { background: linear-gradient(90deg, var(--pink), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-band p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 36px; }
.contact-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; }
.contact-btn-primary { background: var(--pink); color: #fff; box-shadow: 0 0 20px rgba(255,45,149,0.35); }
.contact-btn-primary:hover { box-shadow: 0 0 40px rgba(255,45,149,0.6); transform: translateY(-2px); color: #fff; }
.contact-btn-secondary { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }
.contact-btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.social-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 50px; background: var(--glass-bg); border: 1px solid var(--glass-border); font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.social-pill svg { width: 16px; height: 16px; }
.social-pill:hover { border-color: var(--pink); color: var(--pink); background: rgba(255,45,149,0.08); }
/* about section-label override */
.about-hero ~ section .section-label, .stats-section ~ section .section-label {
  display: inline-flex; align-items: center; gap: 10px;
}
.about-hero ~ section .section-label::before, .stats-section ~ section .section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--pink); box-shadow: 0 0 6px var(--pink);
}
.about-hero ~ section .section-title span, .stats-section ~ section .section-title span {
  background: linear-gradient(90deg, var(--pink), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ============================================================
   CART PAGE
============================================================ */
.cart-page { padding: 60px 5vw; max-width: 1300px; margin: 0 auto; }
.cart-title { font-family: 'Orbitron', sans-serif; font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: 0.05em; margin-bottom: 48px; }
.cart-title span { color: var(--pink); }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 80px 20px; display: none; flex-direction: column; align-items: center; gap: 20px; }
.empty-state .empty-icon { opacity: 0.4; display:flex; align-items:center; justify-content:center; }
.empty-state .empty-icon svg { width: 80px; height: 80px; color: #fff; }
.empty-state h2 { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 700; }
.empty-state p { color: var(--text-secondary); font-size: 1rem; }
.empty-state a { display: inline-block; padding: 14px 36px; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; background: var(--pink); color: #fff; border-radius: 6px; margin-top: 8px; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(255,45,149,0.35); }
.empty-state a:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(255,45,149,0.6); }
.cart-items-col { display: flex; flex-direction: column; gap: 0; }
.cart-items-header { display: grid; grid-template-columns: 1fr 120px 120px 80px 40px; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--glass-border); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
.cart-item { display: grid; grid-template-columns: 1fr 120px 120px 80px 40px; gap: 16px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--glass-border); transition: background 0.2s; }
.cart-item:hover { background: rgba(255,255,255,0.01); }
.item-info { display: flex; gap: 16px; align-items: center; }
.item-icon { width: 64px; height: 64px; border-radius: 10px; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; }
.item-details h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.item-variant { font-size: 0.8rem; color: var(--text-secondary); }
.item-unit-price { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; }
.qty-num { min-width: 36px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.item-line-total { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1rem; color: var(--pink); }
.item-remove { background: none; border: none; color: var(--text-secondary); font-size: 1.1rem; cursor: pointer; width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.item-remove:hover { background: rgba(255,60,60,0.15); color: #ff6060; }
.order-summary { position: sticky; top: calc(var(--nav-height) + 20px); background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 28px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.summary-title { font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--glass-border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 0.9rem; }
.summary-row .label { color: var(--text-secondary); }
.summary-row .value { font-weight: 600; }
.summary-row .free { color: #4ade80; font-weight: 700; }
.summary-divider { border: none; border-top: 1px solid var(--glass-border); margin: 16px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.summary-total .label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.summary-total .amount { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--pink); }
.promo-section { margin-bottom: 24px; }
.promo-section label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.promo-input-row { display: flex; gap: 8px; }
.promo-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 6px; padding: 10px 14px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.promo-input:focus { border-color: var(--pink); }
.promo-input::placeholder { color: rgba(255,255,255,0.3); }
.promo-apply { padding: 10px 16px; background: transparent; border: 1px solid var(--glass-border); border-radius: 6px; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s; white-space: nowrap; }
.promo-apply:hover { border-color: var(--pink); color: var(--pink); }
.promo-message { margin-top: 8px; font-size: 0.8rem; display: none; }
.promo-message.success { color: #4ade80; display: block; }
.promo-message.error { color: #f87171; display: block; }
.btn-checkout { width: 100%; padding: 18px; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; background: var(--pink); color: #fff; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(255,45,149,0.35); display: block; text-align: center; margin-bottom: 14px; }
.btn-checkout:hover { box-shadow: 0 0 40px rgba(255,45,149,0.65); transform: translateY(-1px); }
.continue-link { display: block; text-align: center; color: var(--text-secondary); font-size: 0.85rem; transition: color 0.2s; }
.continue-link:hover { color: var(--blue); }

/* ============================================================
   CHECKOUT PAGE
============================================================ */
.checkout-header { height: var(--nav-height); background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; position: sticky; top: 0; z-index: 1000; }
.checkout-header-right { display: flex; align-items: center; gap: 16px; }
.secure-label { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; color: var(--text-secondary); }
.checkout-page { display: grid; grid-template-columns: 1fr 400px; gap: 48px; padding: 48px 5vw; max-width: 1200px; margin: 0 auto; align-items: start; }
.step-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; position: relative; }
.step-dot:not(:last-child)::after { content: ''; position: absolute; top: 18px; left: 50%; width: 100%; height: 2px; background: var(--glass-border); }
.step-dot.active:not(:last-child)::after { background: linear-gradient(90deg, var(--pink), var(--glass-border)); }
.step-dot.done:not(:last-child)::after { background: var(--pink); }
.dot-circle { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; background: var(--black); z-index: 1; transition: all 0.3s ease; }
.step-dot.active .dot-circle { border-color: var(--pink); color: var(--pink); box-shadow: 0 0 12px rgba(255,45,149,0.3); }
.step-dot.done .dot-circle { border-color: var(--pink); background: var(--pink); color: #fff; }
.dot-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); white-space: nowrap; }
.step-dot.active .dot-label { color: var(--pink); }
.step-dot.done .dot-label { color: rgba(255,255,255,0.7); }
.form-section { display: none; }
.form-section.active { display: block; }
.form-section-title { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 32px; letter-spacing: 0.05em; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grid.single { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.form-input { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 8px; padding: 14px 16px; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.form-input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,149,0.1); }
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input.error { border-color: #f87171; }
.field-error { color: #f87171; font-size: 0.78rem; display: none; }
.form-input.error + .field-error { display: block; }
.form-nav { display: flex; gap: 12px; margin-top: 32px; align-items: center; }
.btn-next { padding: 16px 40px; font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; background: var(--pink); color: #fff; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(255,45,149,0.35); }
.btn-next:hover { box-shadow: 0 0 40px rgba(255,45,149,0.65); transform: translateY(-1px); }
.btn-back { padding: 16px 24px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; background: transparent; color: var(--text-secondary); border: 1px solid var(--glass-border); border-radius: 8px; cursor: pointer; transition: all 0.2s ease; }
.btn-back:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.checkout-summary { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 28px; backdrop-filter: blur(12px); position: sticky; top: calc(var(--nav-height) + 24px); }
.cs-title { font-family: 'Orbitron', sans-serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--glass-border); }
.cs-items { margin-bottom: 20px; }
.cs-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.cs-item-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.cs-item-info { flex: 1; }
.cs-item-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; }
.cs-item-variant { font-size: 0.75rem; color: var(--text-secondary); margin-top: 2px; }
.cs-item-price { font-family: 'Orbitron', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--pink); white-space: nowrap; }
.cs-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.88rem; }
.cs-row .label { color: var(--text-secondary); }
.cs-row .value { font-weight: 600; }
.cs-divider { border: none; border-top: 1px solid var(--glass-border); margin: 14px 0; }
.cs-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cs-total .label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; }
.cs-total .amount { font-family: 'Orbitron', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--pink); }
.cs-trust { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 1px solid var(--glass-border); }
.cs-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-secondary); }
.cs-trust-item span:first-child { display:flex;align-items:center;justify-content:center;color:var(--text-secondary); }
.cs-trust-item svg { width:16px;height:16px; }
.ssl-badge { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px; border-radius: 8px; background: rgba(0,209,255,0.06); border: 1px solid rgba(0,209,255,0.2); margin-top: 12px; font-size: 0.78rem; color: var(--blue); font-weight: 600; }

/* ============================================================
   SUCCESS PAGE
============================================================ */
.success-body { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.success-wrapper { position: relative; z-index: 1; width: 100%; max-width: 640px; padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0; margin: 0 auto; }
.checkmark-container { margin-bottom: 32px; }
.checkmark-circle { width: 100px; height: 100px; border-radius: 50%; background: rgba(255,45,149,0.08); border: 3px solid var(--pink); display: flex; align-items: center; justify-content: center; position: relative; margin: 0 auto; animation: circle-appear 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; box-shadow: 0 0 40px rgba(255,45,149,0.3), 0 0 80px rgba(255,45,149,0.1); }
@keyframes circle-appear { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.checkmark-svg { width: 48px; height: 48px; }
.checkmark-path { stroke: var(--pink); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw-check 0.4s ease 0.5s forwards; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.checkmark-circle::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255,45,149,0.3); animation: ring-pulse 2s ease-in-out 1s infinite; }
@keyframes ring-pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.15); opacity: 0; } }
.confirmed-title { font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; color: #fff; text-shadow: 0 0 30px rgba(255,45,149,0.4); margin-bottom: 12px; animation: fade-up 0.6s ease 0.8s both; }
.confirmed-title span { color: var(--pink); }
.confirmed-sub { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 32px; animation: fade-up 0.6s ease 1s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.order-card { width: 100%; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 28px; margin-bottom: 24px; animation: fade-up 0.6s ease 1.1s both; }
.order-number-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--glass-border); flex-wrap: wrap; gap: 12px; }
.order-number-label { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-secondary); }
.order-number-value { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--pink); letter-spacing: 0.08em; }
.order-items { margin-bottom: 20px; }
.order-item { display: flex; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.order-item:last-child { border-bottom: none; }
.oi-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--pink); }
.oi-icon svg { width: 24px; height: 24px; }
.oi-info { flex: 1; }
.oi-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.oi-variant { font-size: 0.78rem; color: var(--text-secondary); }
.oi-price { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--pink); white-space: nowrap; }
.empty-order-msg { color: var(--text-secondary); font-size: 0.9rem; text-align: center; padding: 12px 0; }
.shipping-notice { background: rgba(0,209,255,0.06); border: 1px solid rgba(0,209,255,0.2); border-radius: 10px; padding: 14px 18px; display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.shipping-notice p { font-size: 0.85rem; color: var(--blue); line-height: 1.6; }
.success-ctas { display: flex; gap: 14px; width: 100%; animation: fade-up 0.6s ease 1.3s both; }
.success-lang-switch { display:flex; align-items:center; gap:6px; position: fixed; top: 20px; right: 20px; z-index: 100; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .checkout-page { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-hamburger { display: flex; }
  .benefits-layout { grid-template-columns: 1fr; }
  .product-mockup { display: none; }
  .steps-container { flex-direction: column; gap: 32px; }
  .steps-container::before { display: none; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .product-section { grid-template-columns: 1fr; gap: 40px; }
  .trust-badges { justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .cart-items-header { display: none; }
  .cart-item { grid-template-columns: 1fr; gap: 12px; padding: 20px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; margin-bottom: 12px; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo { font-size: 1rem; letter-spacing: 0.05em; }
  .nav-right { gap: 8px; }
  section { padding: 48px 16px; }
  footer { padding: 48px 16px 32px; }
  .lifestyle-section { padding: 64px 16px; }
  .final-cta { padding: 64px 16px; }
  .page-header { padding: 32px 16px 24px; }
  .product-section { padding: 32px 16px; gap: 28px; }
  .product-tabs-section { padding: 32px 16px; }
  .reviews-section { padding: 32px 16px; }
  .about-hero { padding: 80px 16px 60px; min-height: 45vh; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .step-emoji { margin: 0 auto 16px; }
  .problem-grid { margin-top: 32px; }
  .features-grid { margin-top: 32px; }
  .steps-container { margin-top: 32px; }
  .benefits-layout { margin-top: 32px; }
  .cart-page { padding: 40px 16px; }
  .product-thumbs { justify-content: flex-start; gap: 8px; flex-wrap: wrap; }
  .thumb { width: 56px; height: 56px; }
  .product-name { font-size: 1.2rem; }
  .price-current { font-size: 1.5rem; }
  .product-info { gap: 16px; }
  .tab-btn { padding: 10px 12px; font-size: 0.7rem; flex-shrink: 0; letter-spacing: 0.04em; }
  .trust-badges { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .success-ctas { flex-direction: column; }
  .order-number-row { flex-direction: column; align-items: flex-start; }
  .success-wrapper { padding: 16px; }
  .checkout-header { padding: 0 16px; }
  .secure-label { display: none; }
  .nav-logo { font-size: 1rem; }
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
============================================================ */
.woocommerce-notices-wrapper { padding: 0 5vw; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.woocommerce-message { border-left: 4px solid var(--pink); }
.woocommerce-error { border-left: 4px solid #f87171; }
.woocommerce-info { border-left: 4px solid var(--blue); }
