/* ===========================
   umadama — Design System
   Moda Íntima Feminina Premium
   Paleta: #FF9901 #ff015e #01ffaf
   LIGHT THEME
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400;1,900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #ff015e;
  --primary-light: #ff4d8a;
  --primary-dark: #cc004b;
  --accent: #FF9901;
  --accent-light: #ffb340;
  --mint: #649A68;
  --mint-dark: #4e7d52;
  --mint-bg: #eef5ef;

  --bg-body: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --bg-surface: #f5f5f7;
  --bg-glass: rgba(255,255,255,0.88);
  --bg-glass-light: rgba(0,0,0,0.03);

  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;

  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);

  --font-heading: 'Merriweather', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 70px;
  --container: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ═══════════════════════════
   SPLASH SCREEN
   ═══════════════════════════ */
.splash-screen {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash-screen.fade-out { opacity: 0; visibility: hidden; }

.splash-content { position: relative; display: flex; align-items: center; justify-content: center; }

.splash-text {
  font-family: var(--font-heading);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 900;
  letter-spacing: -1px;
  transition: opacity 0.5s ease;
}
.splash-text.fade-out { opacity: 0; transform: scale(0.9); transition: opacity 0.4s ease, transform 0.4s ease; }

.splash-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: splashLetterIn 0.4s ease forwards;
}
.splash-letter.splash-italic { font-style: italic; }

@keyframes splashLetterIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ── SVG Icon base ── */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; fill: currentColor; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ═══════════════════════════
   TOP BAR
   ═══════════════════════════ */
.top-bar {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: gradientMove 4s ease infinite;
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}

/* ═══════════════════════════
   HEADER
   ═══════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: var(--transition);
}
.header.scrolled { background: rgba(255,255,255,0.96); box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  font-style: normal;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  display: inline-flex;
}
.logo span { font-weight: inherit; font-style: normal; }
.logo .logo-dama { color: var(--primary); font-style: italic; }

/* Logo letter animation */
.logo-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  animation: logoLetterIn 0.35s ease forwards;
}
@keyframes logoLetterIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--text-primary); background: var(--bg-glass-light); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.header-btn:hover { background: var(--bg-glass-light); color: var(--text-primary); }
.header-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--primary); color: white;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-body);
}

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 1px; transition: var(--transition); }

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f8 0%, #ffffff 50%, #f0fff8 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,1,94,0.06) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 60px 20px;
}
.hero-content { animation: slideInLeft 0.8s ease; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,1,94,0.08);
  border: 1px solid rgba(255,1,94,0.15);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-images { position: relative; display: flex; justify-content: center; animation: fadeIn 1s ease 0.3s both; }
.hero-images .hero-img-wrapper {
  position: relative;
  width: 380px; height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-images .hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  animation: float 5s ease-in-out infinite;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -30px; animation-delay: 1.5s; }
.hero-float-card .card-value { font-size: 22px; font-weight: 700; color: var(--primary); }
.hero-float-card .card-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: white;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.btn-primary:hover { background: #1a1a1a; color: white; transform: translateY(-1px); }
.btn-secondary {
  background: white; color: var(--text-primary);
  border: 2px solid var(--border-hover);
}
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-accent:hover { background: var(--accent); color: white; transform: translateY(-1px); }
.btn-mint {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  font-weight: 700;
}
.btn-mint:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ═══════════════════════════
   BENEFITS
   ═══════════════════════════ */
.benefits {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
}
.benefits .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-item {
  display: flex; align-items: center; gap: 14px; padding: 10px 12px;
}
.benefit-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,1,94,0.06);
  color: var(--primary);
  flex-shrink: 0;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-text h4 { font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.benefit-text p { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* Benefits carousel (mobile) */
.benefits-carousel .benefits-track {
  display: flex;
  transition: transform 0.5s ease;
}
.benefits-carousel .benefit-item {
  min-width: 100%; justify-content: center;
}

/* ═══════════════════════════
   SECTIONS
   ═══════════════════════════ */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 45px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(255,1,94,0.06);
  border: 1px solid rgba(255,1,94,0.12);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.section-header p { color: var(--text-secondary); font-size: 15px; max-width: 500px; margin: 0 auto; }

/* ═══════════════════════════
   CATEGORIES
   ═══════════════════════════ */
.categories-grid { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.category-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}
.category-btn:hover { border-color: var(--primary); color: var(--primary); }
.category-btn.active {
  background: var(--primary); color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255,1,94,0.2);
}

/* ── Collections Carousel Wrapper ── */
.collections-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.collections-arrow {
  display: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-items: center; justify-content: center;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 2;
}
.collections-arrow:hover { border-color: var(--primary); color: var(--primary); }

/* ── Collections Grid (Cards) ── */
.collections-grid {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 18px; padding: 10px 0;
}
.collection-item {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: var(--text-primary);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
}
.collection-item:hover { transform: translateY(-5px); }
.collection-item:hover .collection-img {
  border-color: var(--primary);
  box-shadow: 0 12px 35px rgba(255,1,94,0.2);
}
.collection-item:hover .collection-name { color: var(--primary); }
.collection-img {
  width: 150px; height: 150px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--bg-surface);
  position: relative;
}
.collection-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}
.collection-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.collection-item:hover .collection-img img { transform: scale(1.08); }
.collection-name {
  margin-top: 10px; font-size: 13px; font-weight: 700;
  color: var(--text-primary); text-align: center;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--transition);
}

/* ═══════════════════════════
   PRODUCTS GRID
   ═══════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-card:hover .product-img img { transform: scale(1.04); }

.product-img {
  position: relative; width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden; background: var(--bg-surface);
}
/* Skeleton shimmer while images load */
.product-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.5) 37%, transparent 63%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.product-img.loaded::before { display: none; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}
.product-img img.visible { opacity: 1; }
.product-img .product-img-hover {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0 !important; transition: opacity 0.4s ease;
}
.product-card:hover .product-img .product-img-hover { opacity: 1 !important; }
.product-card:hover .product-img .product-img-main.visible { opacity: 0; }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px;
  background: var(--primary); color: white;
  font-size: 10px; font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 0.5px; z-index: 2;
}
.product-discount-tag {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 8px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700;
  border-radius: var(--radius-sm); z-index: 2;
}
.product-actions {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  opacity: 0; transform: translateY(10px);
  transition: var(--transition); z-index: 2;
}
.product-actions .btn { width: 100%; padding: 11px; font-size: 12px; background: var(--primary); color: white; border-radius: var(--radius-full); }

.product-info { padding: 14px; }
.product-category {
  font-size: 11px; color: var(--primary);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 5px;
}
.product-title {
  font-size: 14px; font-weight: 600;
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  color: var(--text-primary);
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }
.rating-text { font-size: 11px; color: var(--text-muted); }
.product-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-current { font-size: 20px; font-weight: 700; color: var(--mint); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-installment { width: 100%; font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ═══════════════════════════
   PROMO BANNER
   ═══════════════════════════ */
.promo-banner {
  position: relative;
  background: linear-gradient(135deg, #fff0f5 0%, #fff8f0 50%, #f0fff8 100%);
  padding: 70px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.promo-content { text-align: center; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.promo-content h2 { font-family: var(--font-heading); font-size: 38px; margin-bottom: 14px; font-weight: 900; }
.promo-content p { color: var(--text-secondary); font-size: 15px; margin-bottom: 28px; }
.promo-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 28px; }
.promo-stat .stat-value { font-size: 34px; font-weight: 900; color: var(--primary); font-family: var(--font-heading); }
.promo-stat .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════
   TESTIMONIALS
   ═══════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: white;
}
.testimonial-name { font-size: 13px; font-weight: 600; }
.testimonial-date { font-size: 11px; color: var(--text-secondary); margin-top: 1px; }
.testimonial-verified { font-size: 11px; color: var(--mint); display: flex; align-items: center; gap: 4px; }

/* Testimonial photos */
.testimonial-photos {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-photo:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Testimonial pagination */
.testimonials-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
}
.tst-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.tst-page-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tst-page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.tst-prev, .tst-next {
  font-size: 20px;
  font-weight: 400;
}
.tst-page-dots {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

/* Testimonial lightbox */
.testimonial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
  cursor: pointer;
}
.testimonial-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ═══════════════════════════
   HELP PAGES
   ═══════════════════════════ */
.help-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
}
.help-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
}
.help-content h3:first-child { margin-top: 0; }
.help-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.help-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}
.help-content li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.help-content a {
  color: var(--primary);
  text-decoration: underline;
}
.help-content a:hover {
  color: var(--primary-dark, #d4004e);
}

/* FAQ items */
.help-faq .faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.help-faq .faq-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}
.help-faq .faq-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.help-faq .faq-item p {
  margin: 0;
  font-size: 14px;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 16px;
  line-height: 1.5;
}
.contact-card .btn {
  font-size: 13px;
  padding: 10px 20px;
}
.contact-info-extra {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-info-extra h3 {
  font-size: 18px;
  margin: 0 0 12px;
}
.contact-info-extra p {
  font-size: 14px;
  margin: 0 0 6px;
}

/* Payment icons in help page */
.help-payment-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
  .help-content h3 { font-size: 16px; }
}

/* ═══════════════════════════
   ABOUT
   ═══════════════════════════ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h3 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 16px; font-weight: 900; }
.about-text p { color: var(--text-secondary); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.about-image {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #fff0f5, #f0fff8);
  display: flex; align-items: center; justify-content: center;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════
   NEWSLETTER
   ═══════════════════════════ */
.newsletter {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-content { text-align: center; max-width: 550px; margin: 0 auto; }
.newsletter-content h3 { font-family: var(--font-heading); font-size: 26px; margin-bottom: 10px; font-weight: 900; }
.newsletter-content p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-primary); font-size: 14px;
  outline: none; transition: var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--primary); }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer {
  background: #fafafa;
  border-top: 1px solid var(--border);
  padding: 50px 0 24px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted); transition: var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.payment-icons { display: flex; gap: 6px; }
.payment-icons span {
  padding: 4px 10px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 11px; color: var(--text-muted); font-weight: 600;
}

/* ═══════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999; transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.45); }

/* ═══════════════════════════
   PRODUCT PAGE
   ═══════════════════════════ */
.product-page { padding: 30px 0 70px; overflow-x: hidden; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 28px;
}
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: 0.4; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 50px; max-width: 100%; overflow: hidden; }

.product-gallery { position: sticky; top: calc(var(--header-height) + 20px); min-width: 0; }
.gallery-main {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery-main::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.5) 37%, transparent 63%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
.gallery-main.loaded::before { display: none; }
.gallery-main img { transition: opacity 0.3s ease; }
.gallery-main img.fading { opacity: 0; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; display: block; cursor: zoom-in; }
.gallery-thumbs {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 4px 0; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer; flex-shrink: 0;
  transition: var(--transition); opacity: 0.5;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery carousel arrows */
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: var(--transition);
  color: var(--text-primary);
}
.gallery-arrow:hover { background: var(--primary); color: white; border-color: var(--primary); }
.gallery-arrow-prev { left: 10px; }
.gallery-arrow-next { right: 10px; }
.gallery-counter {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: white;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500;
  z-index: 5;
}

.product-detail-info { min-width: 0; overflow: hidden; }
.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 900;
  margin-bottom: 10px; line-height: 1.3;
}
.detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.detail-rating .stars { font-size: 16px; }
.detail-rating .rating-count { font-size: 13px; color: var(--text-muted); }
.detail-orders { font-size: 12px; color: var(--text-muted); margin-left: 8px; padding-left: 8px; border-left: 1px solid var(--border); }

.detail-price {
  padding: 0; margin-bottom: 20px;
}
.detail-price .price-original {
  display: block;
  font-size: 14px; color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price-row {
  display: flex; align-items: center; gap: 10px;
}
.detail-price .price-current { font-size: 30px; color: var(--mint); }
.detail-price .discount-pct {
  display: inline-flex; padding: 3px 10px;
  background: var(--primary); color: white;
  font-size: 12px; font-weight: 700;
  border-radius: var(--radius-full);
}
.detail-installment {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; padding: 6px 14px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border: 1px solid #c8e6c9; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: #2e7d32;
}
.detail-installment svg { flex-shrink: 0; }

.product-options { margin-bottom: 20px; }
.option-group { margin-bottom: 14px; }
.option-label { font-size: 13px; font-weight: 600; margin-bottom: 8px; display: block; }
.option-label-value { font-weight: 400; }
.option-values { display: flex; flex-wrap: wrap; gap: 8px; }
.option-value {
  padding: 8px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500;
  color: var(--text-secondary); background: var(--bg-card);
  cursor: pointer; transition: var(--transition);
}
.option-value:hover { border-color: var(--text-primary); color: var(--text-primary); }
.option-value.selected { background: var(--text-primary); color: white; border-color: var(--text-primary); }

.buy-actions { display: flex; gap: 12px; margin-bottom: 20px; }
.buy-actions .btn { flex: 1; }

/* ── Product Trust & Payment ── */
.product-trust {
  margin: 20px 0 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

/* Trust Carousel — infinite horizontal scroll */
.trust-carousel {
  overflow: hidden;
  position: relative;
}
.trust-carousel::before,
.trust-carousel::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 30px; z-index: 2;
  pointer-events: none;
}
.trust-carousel::before { left: 0; background: linear-gradient(to right, white, transparent); }
.trust-carousel::after { right: 0; background: linear-gradient(to left, white, transparent); }

.trust-track {
  display: flex;
  width: max-content;
  animation: trustScroll 20s linear infinite;
}

@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.product-trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255,1,94,0.06);
  color: var(--primary);
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-text h4 { font-size: 12px; font-weight: 600; margin-bottom: 1px; color: var(--text-primary); }
.trust-text p { font-size: 10.5px; color: var(--text-muted); line-height: 1.3; margin: 0; }

.payment-methods {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
}
.payment-label {
  font-size: 10px; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.payment-icons svg, .payment-icons img {
  border-radius: 4px;
  width: 40px; height: 26px; object-fit: contain;
  border: 1px solid #ddd;
  transition: transform 0.2s ease;
}
.payment-icons svg:hover, .payment-icons img:hover {
  transform: translateY(-1px);
}

/* ── Sticky Buy Now Button ── */
.sticky-buy {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 20px;
  display: flex; justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.sticky-buy.visible {
  transform: translateY(0);
  pointer-events: all;
}
.sticky-buy-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; max-width: 500px;
  padding: 16px 32px;
  background: var(--primary); color: white;
  font-size: 16px; font-weight: 700;
  border: none; border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: inherit;
}
.sticky-buy-btn:hover { background: #e0005a; transform: translateY(-1px); }
/* ── Description & Reviews (always open) ── */
.product-sections { margin-top: 50px; }
.product-section {
  margin-bottom: 40px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
  border-radius: var(--radius-md);
}
.product-section:last-child { border-bottom: none; background: white; }
.product-section-title {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 900;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.product-section-title svg { width: 22px; height: 22px; color: var(--primary); }
.description-content { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.description-content strong { color: var(--text-primary); }
.description-content ul { padding-left: 20px; margin: 12px 0; }
.description-content li { margin-bottom: 6px; list-style: disc; }
.description-content img { display: none !important; } /* hide inline imgs, they go in carousel */

/* Description Images Carousel */
.desc-img-carousel {
  position: relative; width: 100%; margin: 20px 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-surface);
}
.desc-img-carousel img {
  width: 100%; height: auto; display: none !important;
  border-radius: 0; max-height: 600px; object-fit: contain;
}
.desc-img-carousel img.active { display: block !important; }
.desc-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); display: flex; align-items: center;
  justify-content: center; cursor: pointer; z-index: 5;
  transition: var(--transition); color: var(--text-primary);
}
.desc-carousel-arrow:hover { background: var(--primary); color: white; border-color: var(--primary); }
.desc-carousel-prev { left: 10px; }
.desc-carousel-next { right: 10px; }
.desc-carousel-counter {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: white;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 500; z-index: 5;
}

/* Reviews */
.reviews-summary {
  display: flex; align-items: center; gap: 30px;
  padding: 22px; background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.reviews-big-number { text-align: center; }
.reviews-big-number .big-num { font-size: 44px; font-weight: 900; color: var(--accent); line-height: 1; font-family: var(--font-heading); }
.reviews-big-number .big-stars { color: var(--accent); font-size: 16px; margin-top: 4px; }
.reviews-big-number .total-reviews { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.reviews-bars { flex: 1; }
.review-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 12px; color: var(--text-muted); }
.review-bar { flex: 1; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--accent); border-radius: 3px; }

.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-item {
  padding: 18px; background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-author-info { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 12px; color: white;
}
.review-name { font-size: 13px; font-weight: 600; }
.review-verified { font-size: 11px; color: var(--mint); }
.review-date { font-size: 11px; color: var(--text-muted); }
.review-stars { color: var(--accent); font-size: 12px; margin-bottom: 6px; }
.review-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.review-photos { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.review-photo {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-photo:hover { border-color: var(--primary); transform: scale(1.05); }
.review-pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 20px; padding-top: 16px;
}
.review-page-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: white;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; transition: var(--transition);
}
.review-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.review-page-btn.active { background: var(--text-primary); color: white; border-color: var(--text-primary); }

/* ═══════════════════════════
   RELATED PRODUCTS
   ═══════════════════════════ */
.related-products { margin-top: 50px; }
.related-wrapper { position: relative; overflow: hidden; }
.related-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.related-scroll::-webkit-scrollbar { display: none; }
.related-scroll .product-card {
  min-width: calc((100% - 64px) / 5.15);
  max-width: calc((100% - 64px) / 5.15);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.related-scroll .product-card .product-info { padding: 10px; }
.related-scroll .product-card .product-title { font-size: 12px; }
.related-scroll .product-card .price-current { font-size: 16px; color: var(--mint); }
.related-scroll .product-card .price-original { font-size: 11px; }
.related-scroll .product-card .product-installment { font-size: 10px; }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  color: var(--text-primary);
}
.carousel-arrow:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255,1,94,0.3);
}
.carousel-arrow svg { width: 18px; height: 18px; }
.carousel-arrow.arrow-left { left: -16px; }
.carousel-arrow.arrow-right { right: -16px; }


/* ═══════════════════════════
   CART SIDEBAR
   ═══════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 2000;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: -400px;
  width: 400px; height: 100%;
  background: var(--bg-body); border-left: 1px solid var(--border);
  z-index: 2001; transition: var(--transition-slow);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.cart-close { font-size: 24px; color: var(--text-muted); transition: var(--transition); }
.cart-close:hover { color: var(--primary); }
.cart-body { flex: 1; overflow-y: auto; }
.cart-items { padding: 16px 20px; }
.cart-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 12px; color: #ddd; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 68px; height: 68px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 13px; font-weight: 500; margin-bottom: 3px; line-height: 1.3; }
.cart-item-variant { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--mint); }
.cart-item-qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.cart-item-qty button {
  width: 28px; height: 28px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-surface); border: none; cursor: pointer;
  color: var(--text-primary); transition: var(--transition);
}
.cart-item-qty button:hover { background: var(--primary); color: white; }
.cart-item-qty span { width: 28px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-item-remove { font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.cart-item-remove:hover { color: var(--primary); }

/* Cart Suggestions */
.cart-suggestions {
  padding: 16px 20px; border-top: 1px solid var(--border);
}
.cart-suggestions-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  text-align: center; margin-bottom: 14px; letter-spacing: 0.5px;
}
.cart-sug-wrapper {
  position: relative; display: flex; align-items: center; gap: 4px;
}
.cart-sug-arrow {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: white; border: 1px solid var(--border);
  border-radius: 50%; cursor: pointer;
  font-size: 18px; color: var(--text-secondary);
  transition: var(--transition); z-index: 1;
}
.cart-sug-arrow:hover { border-color: var(--primary); color: var(--primary); }
.cart-suggestions-scroll {
  display: flex; gap: 12px; overflow-x: auto;
  padding-bottom: 8px; scroll-snap-type: x mandatory;
  flex: 1; min-width: 0;
}
.cart-suggestions-scroll::-webkit-scrollbar { height: 3px; }
.cart-suggestions-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
.cart-sug-card {
  min-width: 130px; max-width: 130px;
  scroll-snap-align: start; flex-shrink: 0;
}
.cart-sug-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; margin-bottom: 8px;
}
.cart-sug-card .sug-title { font-size: 11px; line-height: 1.3; margin-bottom: 4px; font-weight: 500; }
.cart-sug-card .sug-price-old { font-size: 10px; color: var(--text-muted); text-decoration: line-through; }
.cart-sug-card .sug-price { font-size: 13px; font-weight: 700; color: var(--mint); }
.cart-sug-card .sug-btn {
  display: block; width: 100%; margin-top: 6px;
  padding: 6px 0; font-size: 11px; font-weight: 600;
  text-align: center; border: 1px solid var(--primary);
  color: var(--primary); background: white;
  border-radius: 6px; cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.cart-sug-card .sug-btn:hover { background: var(--primary); color: white; }

/* Cart Footer */
.cart-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.cart-summary { margin-bottom: 16px; }
.cart-summary-line { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.cart-summary-original { font-size: 13px; color: var(--text-muted); }
.cart-price-old { text-decoration: line-through; font-size: 13px; color: var(--text-muted); }
.cart-summary-total { font-size: 18px; font-weight: 700; }
.cart-summary-total span:last-child { color: var(--mint); font-size: 22px; }
.cart-summary-savings {
  background: #e8f5e9; color: #2e7d32; border-radius: 8px;
  padding: 8px 12px; font-size: 12px; text-align: center; margin-top: 8px;
}
.cart-footer .btn { width: 100%; }
.cart-continue-btn { margin-top: 8px; }

/* Quick Options Modal */
.quick-options-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 3000; opacity: 0; visibility: hidden; transition: var(--transition);
}
.quick-options-overlay.open { opacity: 1; visibility: visible; }
.quick-options-modal {
  position: fixed; top: 0; right: -420px;
  width: 400px; height: 100%;
  background: white; z-index: 3001;
  transition: var(--transition-slow);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.quick-options-modal.open { right: 0; }
.quick-options-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 600;
}
.quick-options-close { color: var(--text-muted); cursor: pointer; background: none; border: none; }
.quick-options-close:hover { color: var(--primary); }
.quick-options-body { flex: 1; overflow-y: auto; padding: 20px; }
.quick-options-body img {
  width: 60%; border-radius: 8px; margin-bottom: 16px;
}
.quick-options-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.quick-options-body .qo-prices { margin-bottom: 16px; }
.quick-options-body .qo-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-right: 8px; }
.quick-options-body .qo-price { font-size: 18px; font-weight: 700; color: var(--mint); }
.quick-options-body .qo-option-group { margin-bottom: 14px; }
.quick-options-body .qo-option-label { font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; }
.quick-options-body .qo-option-values { display: flex; flex-wrap: wrap; gap: 6px; }
.quick-options-body .qo-opt-btn {
  padding: 8px 14px; font-size: 12px;
  border: 1px solid var(--border); border-radius: 8px;
  background: white; cursor: pointer; transition: var(--transition);
  font-family: inherit;
}
.quick-options-body .qo-opt-btn.selected { border-color: var(--primary); color: var(--primary); font-weight: 600; }
.quick-options-body .qo-add-btn {
  width: 100%; padding: 14px;
  background: #e8f5e9; color: var(--mint);
  border: none; border-radius: 12px;
  font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  margin-top: 16px; font-family: inherit;
}
.quick-options-body .qo-add-btn:hover { background: var(--mint); color: white; }
.quick-options-body .qo-details-link {
  display: block; text-align: center;
  margin-top: 10px; font-size: 13px;
  color: var(--text-secondary); text-decoration: underline;
}
.quick-options-body .qo-back-cart {
  display: block; width: 100%;
  margin-top: 16px; padding: 12px;
  background: none; border: 2px solid var(--border);
  border-radius: 12px; font-size: 13px; font-weight: 600;
  color: var(--text-secondary); cursor: pointer;
  transition: var(--transition); font-family: inherit;
}
.quick-options-body .qo-back-cart:hover { border-color: var(--primary); color: var(--primary); }

/* ═══════════════════════════
   SEARCH PANEL (below header)
   ═══════════════════════════ */
.search-panel {
  position: sticky;
  top: var(--header-height);
  z-index: 900;
  max-height: 0;
  overflow: hidden;
  background: white;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s ease,
              box-shadow 0.2s ease;
}
.search-panel.open {
  max-height: 70px;
  overflow: visible;
  border-bottom-color: #f0f0f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.search-panel-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 14px 20px 16px;
}
.search-panel-input-wrap {
  display: flex; align-items: center;
  background: #f8f8fa;
  border: 2px solid #eee;
  border-radius: 14px;
  padding: 0 8px 0 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-panel-input-wrap:focus-within {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(231,76,108,0.08);
}
.search-panel-input-wrap svg {
  color: var(--text-muted); flex-shrink: 0; margin-right: 10px;
}
.search-panel-input-wrap input {
  flex: 1; padding: 12px 6px; background: transparent;
  border: none; color: var(--text-primary); font-size: 15px; outline: none;
  font-family: var(--font-body);
}
.search-panel-input-wrap input::placeholder { color: #bbb; }
.search-panel-close {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; color: var(--text-muted); transition: all 0.2s ease; flex-shrink: 0;
}
.search-panel-close:hover { background: #fff0f3; color: var(--primary); }

.search-panel-results {
  position: absolute;
  left: 20px; right: 20px;
  top: 100%;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 901;
  scrollbar-width: thin; scrollbar-color: var(--primary) transparent;
}
.search-panel-results::-webkit-scrollbar { width: 4px; }
.search-panel-results::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.search-panel-results:empty {
  display: none;
}

.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: white;
  border-radius: 12px;
  margin-bottom: 4px; cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; color: inherit;
  border: 1px solid transparent;
}
.search-result-item:last-child { margin-bottom: 0; }
.search-result-item:hover {
  background: #fff5f7;
  border-color: #ffe0e8;
}
.search-result-img {
  width: 52px; height: 52px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0; background: #f8f8f8;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-info { flex: 1; min-width: 0; }
.search-result-title {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.search-result-meta {
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
}
.search-result-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.search-result-original {
  font-size: 11px; color: var(--text-muted); text-decoration: line-through;
}
.search-result-discount {
  font-size: 10px; font-weight: 700; color: white;
  background: var(--mint); padding: 1px 5px; border-radius: 5px;
}
.search-result-rating {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
}
.search-result-rating .star { color: #f5a623; }
.search-no-results {
  text-align: center; padding: 24px 16px;
}
.search-no-results svg { color: #ddd; margin-bottom: 8px; }
.search-no-results p { color: var(--text-muted); font-size: 14px; margin-bottom: 4px; }
.search-no-results small { color: #ccc; font-size: 12px; }

@media (max-width: 768px) {
  .search-panel-inner { padding: 12px 16px 14px; }
  .search-panel-input-wrap input { font-size: 16px; }
  .search-panel-close { width: 38px; height: 38px; }
  .search-panel-results { left: 0; right: 0; max-height: calc(100vh - 180px); border-radius: 0 0 12px 12px; }
}

/* Load more */
.pagination-wrapper { text-align: center; margin-top: 36px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 10px; }
.page-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 8px;
  background: white; color: var(--text-primary); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: var(--transition); font-family: inherit;
}
.page-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn:disabled { opacity: 0.3; cursor: default; }
.page-prev, .page-next { font-size: 20px; font-weight: 700; }
.page-dots { padding: 0 4px; color: var(--text-muted); font-size: 14px; }
.products-showing { font-size: 13px; color: var(--text-muted); margin-top: 10px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: 20px; right: 20px; font-size: 32px; color: white; cursor: pointer; }

/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */

/* ═══════════════════════════ */
/* CATEGORIES PAGE (Carousels) */
/* ═══════════════════════════ */
.categories-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}
.categories-page-header {
  text-align: center;
  padding: 40px 0 10px;
}
.categories-page-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.categories-page-header p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* Each category row */
.cat-row {
  margin-bottom: 40px;
}
.cat-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}
.cat-row-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}
.cat-row-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.cat-row-viewall:hover {
  color: var(--primary-dark, #d4004e);
  gap: 8px;
}

/* Carousel wrapper */
.cat-row-carousel-wrap {
  position: relative;
}

/* Scroll container */
.cat-row-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
}
.cat-row-scroll::-webkit-scrollbar { display: none; }

/* Arrow buttons */
.cat-row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cat-row-arrow:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transform: translateY(-50%) scale(1.05);
}
.cat-row-arrow-left { left: -12px; }
.cat-row-arrow-right { right: -12px; }

/* Product card */
.cat-row-card {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.cat-row-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Card image */
.cat-row-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-light, #f9f9f9);
}
.cat-row-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.cat-row-card:hover .cat-row-card-img img {
  transform: scale(1.06);
}
.cat-row-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Card info */
.cat-row-card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.cat-row-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-row-card-rating {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat-row-card-rating .stars { font-size: 11px; }
.cat-row-card-rating .rating-count { color: var(--text-secondary); font-size: 10px; }
.cat-row-card-price {
  margin-top: 2px;
}
.cat-row-card-price .price-current {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
}
.cat-row-card-price .price-original {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 4px;
}
.cat-row-card-pix {
  font-size: 10px;
  color: var(--success, #2ecc71);
  font-weight: 600;
}

/* "Ver todos" card at end */
.cat-row-viewall-card {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe6ee 100%);
  border: 2px dashed var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.cat-row-viewall-card:hover {
  background: linear-gradient(135deg, #ffe6ee 0%, #ffd6e4 100%);
  border-color: var(--primary-dark, #d4004e);
}
.cat-row-viewall-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
}
.cat-row-viewall-inner svg {
  color: var(--primary);
  transition: transform 0.3s;
}
.cat-row-viewall-card:hover svg {
  transform: translateX(4px);
}
.cat-row-viewall-inner span:first-of-type {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.cat-row-viewall-count {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-images {
    display: flex; justify-content: center;
    margin-top: 20px;
  }
  .hero-images .hero-img-wrapper {
    width: 260px; height: 320px;
  }
  .hero-float-card { display: none; }
  .hero h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .related-scroll .product-card {
    min-width: calc((100% - 48px) / 3.15);
    max-width: calc((100% - 48px) / 3.15);
  }
  .collection-img { width: 130px; height: 165px; }
  .collections-grid { gap: 16px; }
  .gallery-main { aspect-ratio: auto; }
  /* Categories page responsive */
  .cat-row-card { min-width: 180px; max-width: 180px; }
  .cat-row-arrow-left { left: -4px; }
  .cat-row-arrow-right { right: -4px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-actions { display: none !important; }
  .product-page { overflow-x: hidden; }
  .benefits .container {
    display: flex; justify-content: center; align-items: center;
  }
  .benefits .container .benefit-item {
    justify-content: center;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 28px; }
  .section { padding: 45px 0; }
  .section-header h2 { font-size: 24px; }
  .promo-content h2 { font-size: 26px; }
  .promo-stats { gap: 20px; }
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; }
  .gallery-main { aspect-ratio: auto; }
  .gallery-thumbs { display: flex; }
  .gallery-thumb { width: 50px; height: 50px; }
  .promo-stat .stat-value { font-size: 26px; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .quick-options-modal { width: 100%; right: -100%; }
  .trust-badges { grid-template-columns: 1fr; }
  .buy-actions { flex-direction: column; }
  .related-scroll .product-card {
    min-width: calc((100% - 32px) / 2.3);
    max-width: calc((100% - 32px) / 2.3);
  }
  .collection-img { width: 100px !important; height: 100px !important; border-radius: 50% !important; }
  .collection-name { font-size: 12px !important; font-weight: 700 !important; margin-top: 6px !important; }
  .collection-item {
    min-width: auto !important;
    scroll-snap-align: start;
  }
  .collections-grid {
    flex-wrap: nowrap !important; justify-content: flex-start !important;
    overflow-x: auto !important; scroll-snap-type: x mandatory;
    gap: 12px !important; padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collections-arrow { display: none !important; }
  .breadcrumb { margin-bottom: 10px; font-size: 12px; }
  .gallery-main { border-radius: var(--radius-md); }
  .gallery-arrow { display: none !important; }
  .gallery-main img { max-height: 500px; object-fit: contain; }
  .product-detail-info h1 { font-size: 20px; }
  .detail-price .price-current { font-size: 24px; }
  .reviews-summary { flex-direction: column; text-align: center; gap: 16px; }
  .reviews-bars { width: 100%; }
  .review-bar { min-width: 100px; }
  .description-content img { max-width: 100%; height: auto; }
  .description-content { font-size: 13px; }
  /* Mobile trust + payment */
  .trust-carousel::before, .trust-carousel::after { width: 20px; }
  .product-trust-item { padding: 10px 16px; gap: 10px; }
  .trust-icon { width: 34px; height: 34px; }
  .trust-icon svg { width: 16px; height: 16px; }
  .trust-text h4 { font-size: 11px; }
  .trust-text p { font-size: 9.5px; }
  .payment-methods { margin-top: 8px; }
  .payment-icons svg, .payment-icons img { width: 32px; height: 21px; }
  .nav.mobile-open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-height);
    left: 0; right: 0;
    background: var(--bg-body); border-bottom: 1px solid var(--border);
    padding: 12px; gap: 4px;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.3s ease;
  }
  .nav.mobile-open a { width: 100%; text-align: center; padding: 12px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-info { padding: 10px; }
  .product-title { font-size: 12px; }
  .price-current { font-size: 16px; }
  .price-original { font-size: 11px; }
  .hero h1 { font-size: 24px; }
  .logo { font-size: 22px; }
  .benefits .container { display: flex; }
  .related-scroll .product-card {
    min-width: calc((100% - 16px) / 2.3);
    max-width: calc((100% - 16px) / 2.3);
  }
  .collection-img { width: 65px; height: 65px; }
  .collection-name { font-size: 10px; margin-top: 5px; }
  .collections-grid { gap: 8px; }
  .detail-price .price-current { font-size: 24px; }
  .detail-installment { font-size: 11px; padding: 5px 10px; }
  /* Categories page - mobile */
  .categories-page { padding: 10px 12px 40px; }
  .categories-page-header { padding: 10px 0 6px; }
  .categories-page-header h2 { font-size: 24px; }
  .categories-page-header p { font-size: 13px; }
  .cat-row { margin-bottom: 28px; }
  .cat-row-title { font-size: 18px; }
  .cat-row-viewall { font-size: 13px; }
  .cat-row-card { min-width: 155px; max-width: 155px; }
  .cat-row-card-info { padding: 8px; }
  .cat-row-card-title { font-size: 11px; }
  .cat-row-card-price .price-current { font-size: 14px; }
  .cat-row-card-pix { font-size: 9px; }
  .cat-row-arrow { width: 32px; height: 32px; }
  .cat-row-arrow-left { left: -2px; }
  .cat-row-arrow-right { right: -2px; }
  .cat-row-scroll { gap: 10px; }
  .cat-row-viewall-inner { padding: 28px 16px; }
  .cat-row-viewall-inner svg { width: 32px; height: 32px; }
  .cat-row-viewall-inner span:first-of-type { font-size: 14px; }
}
