/* ════════════════════════════════════════════════════════
   MisLilly – style.css
   Luxury romantic e-commerce, 3D effects, glassmorphism
   Color palette: #F98E8A · #F9B79F · #F5DCB2 · #D0C6AE · #929494
   ════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --c1: #735377;      /* primary coral-pink */
  --c2: #a989ab;      /* secondary peach    */
  --c3: #cebedc;      /* background soft    */
  --c4: #f8ecff;      /* neutral warm grey  */
  --c5: #000000;      /* text / contrast    */

  /* Derived */
  --c1-dark:  #0A1931;
  --c2-dark:  #1A3D63;
  --bg:       #C4ADDD;
  --white:    #f8ecff;
  --dark:     #2a2020;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  --grad-soft:      linear-gradient(135deg, var(--c3) 0%, #fdf0e0 100%);
  --grad-hero:      linear-gradient(135deg, #fff5f0 0%, var(--c3) 40%, #fff 100%);
  --grad-card:      linear-gradient(145deg, rgba(255,255,255,0.85), rgba(245,220,178,0.25));

  /* Fonts */
  --ff-display: 'Bilderberg', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  28px;
  --r-xl:  48px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(249,142,138,0.10);
  --shadow-card:  0 8px 40px rgba(249,142,138,0.14);
  --shadow-hover: 0 20px 60px rgba(249,142,138,0.22);
  --shadow-3d:    0 30px 80px rgba(249,142,138,0.25), 0 0 0 1px rgba(249,183,159,0.15);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: var(--ff-body); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 6rem 0; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--c1); }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 0.6rem;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-sub { color: var(--c5); max-width: 500px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.reveal-right { transform: translateX(40px); }
.reveal.visible { opacity: 1 !important; transform: none !important; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   GLASSMORPHISM NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Glassmorphism */
  background: rgba(253, 248, 244, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(249, 142, 138, 0.12);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(253, 248, 244, 0.92);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.logo-bloom {
  color: var(--c1);
  display: inline-block;
  animation: spinBloom 10s linear infinite;
  font-size: 1.3rem;
}
@keyframes spinBloom {
  to { transform: rotate(360deg); }
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c5);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad-primary);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--c1); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Cart Icon */
.nav-cart {
  position: relative;
  font-size: 1.1rem;
  color: var(--c5);
  transition: color var(--transition);
}
.nav-cart:hover, .nav-cart.active { color: var(--c1); }
.cart-count {
  position: absolute;
  top: -9px; right: -11px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.cart-count.bump { transform: scale(1.5); }

/* Burger */
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--dark);
  cursor: pointer;
  padding: 0.3rem;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

/* Primary */
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(249,142,138,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(249,142,138,0.55);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--c1);
  border: 1.5px solid var(--c1);
}
.btn-ghost:hover {
  background: rgba(249,142,138,0.08);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--c1);
  border: 1.5px solid var(--c2);
}
.btn-outline:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,142,138,0.4);
}

/* WhatsApp */
.btn-wa {
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

/* 3D depth effect */
.btn-3d {
  transform-style: preserve-3d;
  position: relative;
}
.btn-3d::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  filter: brightness(0.75);
  transform: translateZ(-6px) translateY(4px);
  z-index: -1;
  opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}
.btn-3d:hover::after { transform: translateZ(-6px) translateY(6px); opacity: 0.5; }

.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Floating parallax orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 450px; height: 450px;
  background: rgba(249,142,138,0.18);
  top: -10%; right: -8%;
}
.orb-2 {
  width: 320px; height: 320px;
  background: rgba(249,183,159,0.22);
  bottom: 5%; left: -5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 200px; height: 200px;
  background: rgba(245,220,178,0.35);
  top: 40%; left: 42%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-25px) scale(1.05); }
}

/* Hero parallax layers (JS moves these) */
.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform 0.1s ease-out;
}
.hero-layer-back {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249,183,159,0.12), transparent);
}
.hero-layer-mid {
  background: radial-gradient(ellipse 60% 50% at 30% 60%, rgba(245,220,178,0.15), transparent);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text { flex: 1; max-width: 560px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--c1-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--c5);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span { font-size: 0.72rem; color: var(--c5); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: var(--c4); opacity: 0.5; }

/* Hero 3D visual */
.hero-visual { flex: 1; display: flex; justify-content: center; max-width: 500px; }

.hero-3d-frame {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  cursor: none;
  border-radius: var(--r-lg);
  transition: transform 0.1s ease-out;
}

.hero-card-glow {
  position: absolute;
  inset: -20px;
  background: var(--grad-primary);
  border-radius: calc(var(--r-lg) + 20px);
  filter: blur(40px);
  opacity: 0.25;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.4;  }
}

.hero-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3d);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(249,183,159,0.4);
  border-radius: var(--r-full);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c1-dark);
  box-shadow: 0 4px 20px rgba(249,142,138,0.18);
  white-space: nowrap;
}
.hero-badge-1 {
  top: 15%; left: -18%;
  animation: badgeFloat1 4s ease-in-out infinite;
}
.hero-badge-2 {
  bottom: 18%; right: -14%;
  animation: badgeFloat2 4.5s ease-in-out infinite;
}
@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-8px) rotate(-3deg); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--c2);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 3;
}
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--c1);
  border-radius: 50%;
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ════════════════════════════════════════
   MARQUEE RIBBON
════════════════════════════════════════ */
.marquee-ribbon {
  background: var(--grad-primary);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   3D PRODUCT CARD
════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  /* 3D tilt base */
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}
/* JS handles tilt; CSS gives smooth revert */
.product-card:hover {
  box-shadow: var(--shadow-hover);
}

.product-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c3), rgba(249,183,159,0.2));
}
.product-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  box-shadow: 0 3px 12px rgba(249,142,138,0.4);
}

.product-body {
  padding: 1.3rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-cat {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c4);
  font-weight: 600;
}
.product-name {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  color: var(--dark);
  line-height: 1.3;
}
.product-price {
  font-size: 1rem;
  font-weight: 600;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-body .btn {
  margin-top: auto;
  font-size: 0.78rem;
  padding: 0.65rem 1.4rem;
}

/* ════════════════════════════════════════
   WHY STRIP (Homepage)
════════════════════════════════════════ */
.why-strip {
  background: linear-gradient(135deg, rgba(245,220,178,0.3) 0%, rgba(249,183,159,0.12) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249,183,159,0.3);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.why-card:hover { box-shadow: var(--shadow-card); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(249,142,138,0.4);
}
.why-card h3 { font-size: 1rem; font-family: var(--ff-body); font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--c5); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(180deg, #fff 0%, rgba(245,220,178,0.25) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.testi-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(249,183,159,0.25);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.testi-card:hover { box-shadow: var(--shadow-card); }
.testi-featured {
  background: linear-gradient(145deg, rgba(249,142,138,0.06), rgba(249,183,159,0.12));
  border-color: rgba(249,142,138,0.3);
  transform: scale(1.025);
}

.testi-quote {
  color: var(--c2);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testi-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--c2);
}
.testi-author strong { display: block; font-size: 0.9rem; font-family: var(--ff-body); }
.testi-author span { font-size: 0.73rem; color: var(--c5); }
.testi-stars { color: var(--c1); font-size: 0.9rem; letter-spacing: 2px; }

/* ════════════════════════════════════════
   WHATSAPP CTA CARD
════════════════════════════════════════ */
.wa-section { background: transparent; }
.wa-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 5rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  box-shadow: var(--shadow-3d);
}
.wa-card:hover { box-shadow: 0 40px 100px rgba(249,142,138,0.3); }

.wa-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 55%, var(--c3) 100%);
  z-index: 0;
}
.wa-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wa-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.wa-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}
.wa-content p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1rem; }

.wa-deco {
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  font-size: 11rem;
  color: rgba(255,255,255,0.07);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 6rem;
  text-align: center;
  background: var(--grad-soft);
  position: relative;
  overflow: hidden;
}
.page-hero-sm { padding: 140px 0 4rem; }

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.page-hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(249,142,138,0.14);
  top: -20%; right: -8%;
}
.page-hero-orb-2 {
  width: 280px; height: 280px;
  background: rgba(249,183,159,0.18);
  bottom: -10%; left: -5%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero-sub { color: var(--c5); font-size: 1.05rem; margin-top: 0.5rem; }

/* ════════════════════════════════════════
   SHOP PAGE
════════════════════════════════════════ */
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-bottom: 1.8rem;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 240px;
  max-width: 400px;
  background: #fff;
  border: 1.5px solid rgba(208,198,174,0.5);
  border-radius: var(--r-full);
  padding: 0.7rem 1.3rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-box:focus-within {
  border-color: var(--c1);
  box-shadow: 0 0 0 4px rgba(249,142,138,0.12);
}
.search-box i { color: var(--c1); font-size: 0.85rem; }
.search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--dark);
  width: 100%;
}
.search-box input::placeholder { color: var(--c4); }

.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill {
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 500;
  background: #fff;
  border: 1.5px solid rgba(208,198,174,0.6);
  color: var(--c5);
  cursor: pointer;
  transition: var(--transition);
}
.pill:hover, .pill.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,142,138,0.35);
  transform: translateY(-1px);
}

.result-count { font-size: 0.8rem; color: var(--c5); margin-bottom: 1.5rem; letter-spacing: 0.03em; }

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-icon {
  font-size: 4rem;
  color: var(--c2);
  display: block;
  margin-bottom: 1rem;
  animation: orbFloat 3s ease-in-out infinite;
}
.empty-state h3 { font-family: var(--ff-display); font-size: 1.8rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--c5); margin-bottom: 2rem; }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
.story-img-frame img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3d);
  width: 100%;
}
.story-img-tag {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--r-md);
  padding: 0.9rem 1.4rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(249,142,138,0.4);
}

.story-text h2 { margin-bottom: 1.2rem; }
.story-text p { color: var(--c5); margin-bottom: 1rem; line-height: 1.75; }

.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(208,198,174,0.4);
}
.s-stat { text-align: center; }
.s-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.s-stat span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c5); }

/* Why Choose Us */
.why-choose { background: linear-gradient(135deg, rgba(245,220,178,0.2) 0%, rgba(249,183,159,0.1) 100%); }
.wc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.wc-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(208,198,174,0.3);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
}
.wc-card:hover { box-shadow: var(--shadow-card); }
.wc-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--c3), var(--c2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.wc-icon {
  width: 50px; height: 50px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(249,142,138,0.4);
}
.wc-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.wc-card p { font-size: 0.88rem; color: var(--c5); line-height: 1.65; }

/* About CTA */
.about-cta-sec { background: transparent; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form-title {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
.field-group { margin-bottom: 1.5rem; }
.field-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c5);
  margin-bottom: 0.5rem;
}
.field-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1.5px solid rgba(208,198,174,0.5);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field-wrap-ta { align-items: flex-start; }
.field-wrap-ta i { margin-top: 0.1rem; }
.field-wrap:focus-within {
  border-color: var(--c1);
  box-shadow: 0 0 0 4px rgba(249,142,138,0.1);
}
.field-wrap.has-error { border-color: #e05555; }
.field-wrap i { color: var(--c2); font-size: 0.9rem; flex-shrink: 0; }
.field-wrap input,
.field-wrap textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  color: var(--dark);
  width: 100%;
  resize: vertical;
}
.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: var(--c4); }
.field-err { display: block; font-size: 0.73rem; color: #e05555; margin-top: 0.35rem; }

.form-ok {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem 1.3rem;
  background: #edfaf2;
  border: 1px solid #a8e6c0;
  border-radius: var(--r-md);
  color: #2d7a52;
  font-size: 0.88rem;
}

/* Contact Info */
.cinfo-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cinfo-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, rgba(249,183,159,0.1), rgba(245,220,178,0.15));
  border: 1px solid rgba(208,198,174,0.3);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
.cinfo-card:hover { box-shadow: var(--shadow-soft); }
.cinfo-icon {
  width: 46px; height: 46px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(249,142,138,0.35);
}
.cinfo-card h4 {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c5);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.cinfo-card a, .cinfo-card span { font-size: 0.9rem; color: var(--dark); transition: color var(--transition); }
.cinfo-card a:hover { color: var(--c1); }

.contact-wa-block { margin-bottom: 2rem; }
.contact-wa-block p { font-size: 0.85rem; color: var(--c5); margin-bottom: 0.8rem; }
.contact-social-block p { font-size: 0.85rem; color: var(--c5); margin-bottom: 0.75rem; }

/* ════════════════════════════════════════
   CART PAGE
════════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.cart-items-head {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 48px;
  gap: 1rem;
  padding: 0 0 0.8rem;
  border-bottom: 2px solid rgba(208,198,174,0.35);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c5);
  font-weight: 600;
}

.cart-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 48px;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(208,198,174,0.2);
  animation: rowIn 0.35s ease;
}
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-product img {
  width: 68px; height: 68px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: rgba(245,220,178,0.4);
}
.cart-product-name { font-size: 0.9rem; font-weight: 500; color: var(--dark); }
.cart-product-cat  { font-size: 0.7rem; color: var(--c5); margin-top: 2px; }
.cart-price, .cart-subtotal { font-size: 0.9rem; color: var(--c5); }
.cart-subtotal {
  font-weight: 600;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Qty control */
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(208,198,174,0.5);
  border-radius: var(--r-full);
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 30px; height: 30px;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover { background: rgba(249,142,138,0.08); }
.qty-num { font-size: 0.85rem; font-weight: 600; min-width: 22px; text-align: center; }

.remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c4);
  font-size: 0.9rem;
  padding: 6px;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.remove-btn:hover { color: #e05555; background: rgba(224,85,85,0.08); }

/* Cart Summary */
.cart-summary {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}
.cart-summary h3 {
  font-size: 1.45rem;
  margin-bottom: 1.5rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  color: var(--c5);
}
.free-tag { color: #25a85a; font-weight: 600; }
.summary-divider { border: none; border-top: 1px solid rgba(208,198,174,0.3); margin: 1rem 0; }
.summary-total-line {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.summary-total-line span:last-child {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--c5);
  margin-top: 1.2rem;
  line-height: 1.5;
}
.cart-note i { color: var(--c1); margin-top: 1px; flex-shrink: 0; }

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}
.cart-empty h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.cart-empty p { color: var(--c5); margin-bottom: 2.2rem; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: linear-gradient(135deg, #2a2020 0%, #1a1415 100%);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.2rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--c2); }
.footer-contact-info p {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.footer-contact-info i { color: var(--c1); flex-shrink: 0; margin-top: 0.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.3rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* Social Links */
.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.socials a:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249,142,138,0.4);
}
.socials-lg a {
  width: 46px; height: 46px;
  background: rgba(249,142,138,0.08);
  border: 1px solid rgba(249,142,138,0.2);
  color: var(--c1);
}
.socials-lg a:hover {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
}

/* ════════════════════════════════════════
   FLOATING WHATSAPP + TOAST
════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25d366, #1da851);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.75); }
}

.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(42,32,32,0.92);
  backdrop-filter: blur(16px);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: var(--r-full);
  font-size: 0.84rem;
  z-index: 9999;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  border: 1px solid rgba(249,183,159,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-content { flex-direction: column; text-align: center; padding-top: 4rem; }
  .hero-eyebrow, .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 340px; }
  .hero-badge-1 { left: -5%; }
  .hero-badge-2 { right: -5%; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-items-head { display: none; }
  .cart-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .wa-card { padding: 3rem 2rem; }
  .wa-deco { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(253,248,244,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.8rem 2rem 2.2rem;
    border-top: 1px solid rgba(208,198,174,0.3);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-badge-1, .hero-badge-2 { display: none; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
  .story-stats { flex-direction: column; gap: 1rem; }
  .wa-card { padding: 2.5rem 1.5rem; }
}