/* ═══════════════════════════════════════════════
   GSON COSMETICS — style.css
   Mobile-first, Pink & Gold luxury aesthetic
═══════════════════════════════════════════════ */

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

:root {
  --pink:        #E8638C;
  --pink-light:  #F2A0BA;
  --pink-pale:   #FFF0F5;
  --pink-deep:   #C0325A;
  --gold:        #C9952A;
  --gold-light:  #E8B84B;
  --white:       #FFFFFF;
  --off-white:   #FAFAFA;
  --dark:        #1A1014;
  --text:        #4A2535;
  --muted:       #8A6070;
  --border:      rgba(232,99,140,0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --radius:      12px;
  --shadow:      0 4px 24px rgba(200,80,120,0.12);
  --shadow-lg:   0 12px 48px rgba(200,80,120,0.18);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
input, select, textarea {
  font-family: var(--font-body);
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
}
input:focus, select:focus, textarea:focus { border-color: var(--pink); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--pink); }
.eyebrow.light { color: rgba(255,255,255,0.8); }
.eyebrow.light::before { background: rgba(255,255,255,0.6); }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--pink); }
.section-body { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 540px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,99,140,0.35);
}
.btn-primary:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,99,140,0.4); }
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--pink);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--pink);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--pink); color: white; }

/* ── SECTION LAYOUT ── */
.section { padding: 72px 20px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }
.section-cta { text-align: center; margin-top: 48px; }

/* ════════════════════════════════════
   HEADER / NAV
════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 20px;
  height: 68px;
  display: flex; align-items: center;
  background: transparent;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(200,80,120,0.1);
  backdrop-filter: blur(12px);
}
.site-header.dark-bg {
  background: transparent;
}
.header-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-wrap {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0;
}
.logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-light);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--pink);
  letter-spacing: 2px;
}
.logo-tag {
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}

/* Nav scrolled – darken text */
.site-header.scrolled .logo-name { color: var(--pink); }
.site-header.scrolled .logo-tag { color: var(--muted); }

.main-nav { display: none; }
.main-nav .nav-link {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  padding: 6px 0;
  position: relative;
  cursor: pointer;
  transition: color 0.25s;
}
.site-header.scrolled .main-nav .nav-link { color: var(--text); }
.main-nav .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s;
  border-radius: 2px;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { width: 100%; }
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--pink) !important; }

.header-wa {
  display: none;
  align-items: center; gap: 8px;
  background: var(--pink);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.header-wa svg { width: 16px; height: 16px; }
.header-wa:hover { background: var(--pink-deep); transform: translateY(-1px); }

.hamburger {
  display: flex; flex-direction: column;
  gap: 5px; background: none;
  padding: 6px; border-radius: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav-open .main-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  padding: 24px 24px 32px;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(200,80,120,0.15);
  backdrop-filter: blur(12px);
}
.mobile-nav-open .main-nav .nav-link {
  color: var(--text) !important;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.mobile-nav-open .main-nav .nav-link:hover,
.mobile-nav-open .main-nav .nav-link.active {
  background: var(--pink-pale);
  color: var(--pink) !important;
}
.mobile-nav-open .main-nav .nav-link::after { display: none; }

/* ════════════════════════════════════
   PAGES
════════════════════════════════════ */
.page { display: none; animation: pageFadeIn 0.5s ease; }
.page.active { display: block; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 100px 20px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(20,5,12,0.75) 0%,
    rgba(180,50,90,0.5) 60%,
    rgba(20,5,12,0.6) 100%);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.25;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob1 { width: 300px; height: 300px; background: var(--pink); top: 10%; left: -5%; animation-delay: 0s; }
.blob2 { width: 200px; height: 200px; background: var(--gold); top: 50%; right: 5%; animation-delay: 3s; }
.blob3 { width: 180px; height: 180px; background: var(--pink-light); bottom: 10%; left: 30%; animation-delay: 6s; }
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--pink-light); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 16px 24px;
  width: fit-content;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-n { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: white; }
.stat-l { font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); z-index: 2;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* animate-in */
.animate-in { opacity: 0; transform: translateY(30px); animation: animIn 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes animIn { to { opacity: 1; transform: translateY(0); } }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--pink);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: white;
}
.marquee-track .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CATEGORIES ── */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-img-wrap { height: 180px; overflow: hidden; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-info {
  padding: 16px;
  background: white;
  border-top: 2px solid var(--pink-pale);
}
.cat-info h3 { font-size: 1rem; font-family: var(--font-display); color: var(--dark); margin-bottom: 4px; }
.cat-info p { font-size: 0.78rem; color: var(--muted); }
.cat-arrow { position: absolute; bottom: 16px; right: 16px; color: var(--pink); font-size: 1.1rem; transition: transform 0.3s; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* ── BEFORE / AFTER ── */
.before-after-section {
  background: var(--pink-pale);
  display: flex; flex-direction: column; gap: 40px;
}
.ba-left { flex: 1; }
.ba-left h2 { margin-bottom: 16px; }
.ba-left p { margin-bottom: 28px; }
.ba-right { flex: 1; }
.ba-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.ba-img-wrap img { width: 100%; height: 320px; object-fit: cover; }
.ba-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--pink);
  color: white; padding: 6px 14px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink);
  color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.5px;
}
.product-body { padding: 20px; }
.product-body h4 { font-family: var(--font-display); font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.product-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.order-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
}
.order-wa-btn svg { width: 16px; height: 16px; }
.order-wa-btn:hover { background: #128C7E; transform: translateY(-1px); }

/* ── WHY GSON ── */
.why-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  color: white;
}
.why-bg-img { position: absolute; inset: 0; z-index: 0; }
.why-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.why-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,5,12,0.88) 0%, rgba(180,50,90,0.75) 100%);
}
.why-content { position: relative; z-index: 2; }
.why-content .section-title { color: white; }
.why-content .section-title em { color: var(--pink-light); }
.why-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 36px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.why-icon { font-size: 1.2rem; color: var(--pink-light); margin-bottom: 10px; }
.why-card h4 { font-size: 0.9rem; color: white; margin-bottom: 6px; font-family: var(--font-display); }
.why-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--pink-pale); }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex; gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  flex: 0 0 calc(100% - 20px);
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testi-stars { color: #F5A623; font-size: 1rem; margin-bottom: 14px; }
.testi-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.9rem;
  color: white; font-weight: 700; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span { font-size: 0.78rem; color: var(--muted); }
.testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 24px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-light); cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.testi-dot.active { background: var(--pink); width: 24px; border-radius: 4px; }

/* ── SOCIAL CTA ── */
.social-cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #3A0822 100%);
  text-align: center;
}
.social-cta-section .section-title { color: white; }
.social-cta-section .section-title em { color: var(--pink-light); }
.social-cta-section .section-body { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }
.social-links-big {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.social-big-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: white;
  transition: var(--transition);
}
.social-big-btn svg { width: 18px; height: 18px; }
.social-big-btn.instagram { background: linear-gradient(135deg, #E1306C, #833AB4, #FD1D1D); }
.social-big-btn.tiktok { background: #010101; border: 1.5px solid rgba(255,255,255,0.2); }
.social-big-btn.facebook { background: #1877F2; }
.social-big-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ════════════════════════════════════
   PAGE HEROES
════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 55vw; min-height: 260px; max-height: 440px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 68px;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,5,12,0.85) 0%, rgba(180,50,90,0.4) 60%, transparent 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 32px 24px;
  color: white;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  color: white;
  line-height: 1.1;
}
.page-hero-content h1 em { font-style: italic; color: var(--pink-light); }
.page-hero-content p { color: rgba(255,255,255,0.75); margin-top: 8px; font-size: 0.95rem; }

/* ════════════════════════════════════
   SHOP PAGE
════════════════════════════════════ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  background: var(--off-white); color: var(--muted);
  border: 1.5px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--pink); color: white; border-color: var(--pink);
}
.shop-grid { grid-template-columns: 1fr; }

.wa-cta-strip {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  padding: 40px 20px;
}
.wa-cta-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.wa-cta-inner h3 { font-family: var(--font-display); font-size: 1.4rem; color: white; }
.wa-cta-inner p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 6px; }
.wa-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-wa-big {
  display: inline-block;
  background: white; color: var(--pink);
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  transition: var(--transition);
}
.btn-wa-big:hover { background: var(--dark); color: white; }

/* ════════════════════════════════════
   CONSULTATION PAGE
════════════════════════════════════ */
.consult-section {}
.consult-intro {
  display: flex; flex-direction: column; gap: 40px;
  margin-bottom: 64px;
}
.consult-intro-text {}
.consult-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--pink-pale);
  border-radius: var(--radius); border-left: 3px solid var(--pink);
}
.step-num {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--pink); flex-shrink: 0; line-height: 1;
}
.step strong { display: block; color: var(--dark); font-size: 0.95rem; margin-bottom: 4px; }
.step p { font-size: 0.85rem; color: var(--muted); }
.consult-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.consult-img-wrap img { width: 100%; height: 320px; object-fit: cover; object-position: top; }

.consult-form-wrap {
  background: var(--pink-pale);
  border-radius: 20px; padding: 32px 24px;
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--dark); margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pink-light);
}
.consult-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full {}
.form-group label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px; color: var(--text);
}
.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.check-item {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-size: 0.85rem;
  padding: 10px 12px;
  background: white; border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.check-item:has(input:checked) { border-color: var(--pink); background: var(--pink-pale); }
.check-item input { width: auto; accent-color: var(--pink); }
.submit-btn { align-self: flex-start; padding: 16px 40px; font-size: 0.9rem; }
.form-success {
  text-align: center; padding: 48px 24px;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pink); color: white;
  font-size: 1.8rem; line-height: 64px;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 12px; }
.form-success p { color: var(--muted); margin-bottom: 24px; }

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-section {}
.about-grid { display: flex; flex-direction: column; gap: 40px; }
.about-img-col { position: relative; }
.about-main-img { width: 100%; height: 380px; object-fit: cover; object-position: top; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--pink); color: white;
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1px;
}
.about-divider { width: 60px; height: 3px; background: var(--pink); border-radius: 2px; margin: 20px 0; }
.about-text-col .section-body { margin-top: 12px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--pink-pale); padding: 16px;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 0.8rem; color: var(--muted); }

.store-section { background: var(--pink-pale); }
.store-grid { display: flex; flex-direction: column; gap: 32px; }
.store-img img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.store-details { display: flex; flex-direction: column; gap: 20px; }
.store-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.store-icon { font-size: 1.3rem; flex-shrink: 0; }
.store-detail-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.store-detail-item p, .store-detail-item a { font-size: 0.9rem; color: var(--muted); display: block; }
.store-detail-item a:hover { color: var(--pink); }

/* ════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════ */
.gallery-filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
}
.gallery-masonry {
  columns: 2;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,5,12,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: white; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.5px;
}
.gallery-item.hidden { display: none; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,5,10,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.lightbox.open { display: flex; animation: lbFade 0.3s ease; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 85vh; }
.lightbox-inner img { max-width: 100%; max-height: 75vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
#lightboxCaption { color: rgba(255,255,255,0.7); text-align: center; margin-top: 12px; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; color: white;
  font-size: 1.3rem; padding: 6px 12px;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; padding: 56px 20px 40px;
  max-width: 1280px; margin: 0 auto;
}
.footer-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 2px solid var(--pink); }
.footer-tagline {
  font-family: var(--font-display); font-size: 1.1rem;
  color: white; font-style: italic; margin-bottom: 12px;
}
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--pink); color: white; transform: translateY(-3px); }

.footer-links-col h4 {
  font-family: var(--font-display); font-size: 1rem;
  color: white; margin-bottom: 16px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  cursor: pointer; transition: color 0.25s;
}
.footer-links-col a:hover { color: var(--pink); }

.footer-contact h4 { font-family: var(--font-display); font-size: 1rem; color: white; margin-bottom: 16px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; }
.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); display: block;
}
.footer-contact-item a:hover { color: var(--pink); }
.footer-wa-btn { margin-top: 8px; font-size: 0.85rem; padding: 12px 28px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── FLOATING WA ── */
.floating-wa {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.floating-wa svg { width: 28px; height: 28px; }
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.floating-wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0.6;
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.25); opacity: 0; } }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   TABLET (600px+)
════════════════════════════════════ */
@media (min-width: 600px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 calc(50% - 10px); }
  .gallery-masonry { columns: 3; }
  .before-after-section { flex-direction: row; }
  .consult-intro { flex-direction: row; }
  .about-grid { flex-direction: row; }
  .about-img-col { flex: 0 0 40%; }
  .store-grid { flex-direction: row; }
  .store-img { flex: 0 0 45%; }
  .form-row { flex-direction: row; }
}

/* ════════════════════════════════════
   DESKTOP (960px+)
════════════════════════════════════ */
@media (min-width: 960px) {
  .section { padding: 96px 48px; }
  .site-header { padding: 0 48px; height: 72px; }
  .main-nav { display: flex !important; flex-direction: row; gap: 32px; position: static; background: transparent; padding: 0; box-shadow: none; }
  .main-nav .nav-link { padding: 6px 0; }
  .header-wa { display: inline-flex; }
  .hamburger { display: none; }

  .hero { padding: 120px 80px 100px; }
  .hero-title { font-size: 5rem; }
  .hero-content { max-width: 640px; }

  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-card { flex: 0 0 calc(33.333% - 14px); }
  .gallery-masonry { columns: 4; }

  .why-cards { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .page-hero { height: 45vw; max-height: 520px; }

  .ba-img-wrap img { height: 400px; }

  .consult-img-wrap img { height: 100%; }
  .about-main-img { height: 500px; }
  .about-values { grid-template-columns: 1fr 1fr; }

  .wa-cta-inner { flex-direction: row; justify-content: space-between; align-items: center; }

  .checkbox-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════
   HOVER EFFECTS — reduce motion
════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
