/* ============================================================
   MESO HOUSEHOLDS — One-Stop Household Solution
   Pure HTML + CSS + JS (no frameworks)
   ============================================================ */

:root {
  --primary: #d90429;
  --primary-dark: #a30220;
  --primary-light: #ffe0e5;
  --accent: #111111;
  --accent-2: #1f1f1f;
  --cream: #f7f7f7;
  --cream-2: #ececec;
  --white: #ffffff;
  --ink: #111111;
  --muted: #5c5c5c;
  --border: #e5e5e5;
  --green: #25d366;
  --green-dark: #1da851;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --font-body: "Poppins", system-ui, -apple-system, sans-serif;
  --font-head: "Fraunces", Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.section { padding: 96px 0; }
section[id] { scroll-margin-top: 84px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); }

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(217, 4, 41, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(217, 4, 41, 0.45); }

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: var(--white); color: var(--accent); }

.btn-whatsapp { background: var(--green); color: var(--white); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: var(--green-dark); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); }

.btn-light { background: var(--white); color: var(--accent); }
.btn-light:hover { background: var(--cream-2); }

.btn-text {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 10px;
  text-decoration: underline;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--primary); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--accent);
  color: #e8e8e8;
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-phone { font-weight: 600; color: #ff6b81; }
.topbar-phone:hover { color: var(--white); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 13px;
  box-shadow: 0 6px 16px rgba(217, 4, 41, 0.35);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-head); font-size: 1.28rem; color: var(--ink); letter-spacing: 0.01em; }
.brand-text small { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-dark); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 100px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--primary-dark); background: var(--primary-light); }
.nav-link.active { color: var(--primary-dark); background: var(--primary-light); font-weight: 600; }
.nav-call-btn { margin-left: 10px; padding: 9px 18px; font-size: 0.85rem; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.cart-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--accent);
  border: 1.5px solid var(--border);
  transition: background 0.2s, transform 0.2s;
}
.cart-btn:hover { background: var(--primary-light); transform: scale(1.05); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  display: grid; place-items: center;
  border: 2px solid var(--white);
  transition: transform 0.25s;
}
.cart-count.bump { animation: bump 0.35s ease; }
@keyframes bump { 40% { transform: scale(1.45); } }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(217, 4, 41, 0.3), transparent 60%),
    linear-gradient(150deg, #000000 0%, #111111 55%, #1f1f1f 100%);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 110px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #ff4d6d; }
.hero-content > p { color: #d6d6d6; font-size: 1.05rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: var(--font-head); font-size: 1.9rem; color: #ff4d6d; line-height: 1.1; }
.hero-stat span { font-size: 0.82rem; color: #9a9a9a; }

.hero-visual { position: relative; min-height: 480px; display: flex; align-items: center; }

/* ---------- Hero slideshow ---------- */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.12);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.14);
  transition: transform 6.5s ease;
}
.hero-slide.active img { transform: scale(1); }
.slide-caption {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.slide-caption strong { font-family: var(--font-head); font-size: 1rem; font-weight: 600; }
.slide-caption span { font-size: 0.74rem; color: #ff8095; font-weight: 600; letter-spacing: 0.02em; }

.slider-dots {
  position: absolute;
  right: 18px; bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 9px; height: 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s, background 0.3s;
}
.slider-dot:hover { background: rgba(255, 255, 255, 0.85); }
.slider-dot.active { width: 26px; background: var(--primary); }

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s, background 0.25s, transform 0.25s;
}
.slide-nav:hover { background: var(--primary); border-color: transparent; }
.hero-slideshow:hover .slide-nav { opacity: 1; }
.slide-prev { left: 14px; }
.slide-next { right: 14px; }
@media (hover: none) { .slide-nav { opacity: 1; } }
.hero-card {
  position: absolute;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  animation: floaty 5s ease-in-out infinite;
}
.hero-card strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--accent); }
.hero-card span { font-size: 0.8rem; color: var(--muted); }
.hero-card-top { top: -22px; left: -18px; }
.hero-card-bottom { bottom: -22px; right: -14px; animation-delay: 2.5s; }
.hero-card-phone { font-weight: 700; color: var(--accent); font-size: 0.95rem; }

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

/* ---------- Feature strip ---------- */
.features { background: var(--white); box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid var(--border);
}
.feature:last-child { border-right: none; }
.feature-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.feature-icon svg { width: 26px; height: 26px; }
.fi-shop { background: linear-gradient(135deg, #2e2e2e, #000000); }
.fi-price { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.fi-deliver { background: linear-gradient(135deg, #ff4d6d, #d90429); }
.fi-service { background: linear-gradient(135deg, #4a4a4a, #161616); }
.feature h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; }
.feature p { font-size: 0.8rem; color: var(--muted); }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; padding: 26px 26px 0 0; }
.about-img-main {
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 86%;
}
.about-img-float {
  position: absolute;
  right: 0; bottom: -30px;
  width: 46%;
  border-radius: 18px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: 6px; left: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 16px;
  padding: 14px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.25;
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: 1.15rem; }
.about-badge span { font-size: 0.78rem; opacity: 0.95; }

.about-content h2 { margin-bottom: 18px; }
.about-content p { color: var(--muted); margin-bottom: 14px; }
.about-content p strong { color: var(--accent); }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin: 22px 0 30px; }
.about-list li { font-weight: 500; font-size: 0.93rem; display: flex; align-items: center; gap: 10px; }
.check-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--primary);
  filter: drop-shadow(0 2px 5px rgba(217, 4, 41, 0.35));
}
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Products ---------- */
.products { background: var(--white); }
.filter-bar { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.88rem;
  background: var(--cream);
  color: var(--ink);
  border: 1.5px solid var(--border);
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary-dark); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(217, 4, 41, 0.35);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.35s;
  animation: cardIn 0.5s ease both;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card.hide-card { display: none; }
@keyframes cardIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.product-media { position: relative; overflow: hidden; background: var(--cream); }
.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.product-tag.hot { background: linear-gradient(135deg, #ef4444, #dc2626); }

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-dark); font-weight: 600; margin-bottom: 6px; }
.product-body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.product-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-head); font-size: 1.3rem; color: var(--accent); font-weight: 700; }
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 100px;
  transition: all 0.25s;
}
.add-btn:hover { background: var(--primary); color: var(--white); box-shadow: 0 6px 16px rgba(217, 4, 41, 0.4); }

.wa-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 12px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.wa-order-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.4);
}
.wa-order-btn svg { flex-shrink: 0; }

/* ---------- Why us ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  color: var(--white);
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.why-icon svg { width: 28px; height: 28px; }
.wi-gold { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.wi-green { background: linear-gradient(135deg, #3a3a3a, #111111); }
.wi-blue { background: linear-gradient(135deg, #6b6b6b, #333333); }
.wi-red { background: linear-gradient(135deg, #ff4d6d, #d90429); }
.wi-violet { background: linear-gradient(135deg, #1f1f1f, #000000); }
.wi-teal { background: linear-gradient(135deg, #ff8095, #ff4d6d); }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--primary); letter-spacing: 2px; }
.testi-card p { font-size: 0.93rem; color: #444444; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 700;
}
.testi-person strong { display: block; font-size: 0.92rem; }
.testi-person small { color: var(--muted); font-size: 0.78rem; }

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(255, 255, 255, 0.08), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 60px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta h2 { margin-bottom: 8px; }
.cta p { opacity: 0.92; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn-whatsapp { background: var(--accent); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); }
.cta .btn-whatsapp:hover { background: #2a2a2a; }
.cta .btn-light { color: var(--primary-dark); }

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: stretch; }
.visit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  box-shadow: var(--shadow-sm);
}
.visit-row { display: flex; gap: 16px; }
.visit-icon {
  font-size: 1.3rem;
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--primary-light);
  border-radius: 13px;
}
.visit-row h4 { font-size: 0.95rem; margin-bottom: 3px; }
.visit-row p { font-size: 0.9rem; color: var(--muted); }
.visit-row a { color: var(--primary-dark); font-weight: 600; }
.visit-row a:hover { text-decoration: underline; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  min-height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--accent); color: #b5b5b5; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer ul a:hover { color: #ff8095; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; }
.brand-footer .brand-text strong { color: var(--white); }
.brand-footer .brand-text small { color: #ff8095; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; }
.footer-wa { margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: #8f8f8f; }

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 92vw);
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-size: 1.3rem; }
.cart-head-count { color: var(--primary-dark); font-weight: 700; font-family: var(--font-body); font-size: 0.95rem; }
.cart-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
}
.cart-close:hover { background: var(--cream-2); transform: rotate(90deg); }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }

.cart-line {
  display: flex;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  animation: cardIn 0.35s ease both;
}
.cart-line img { width: 66px; height: 66px; border-radius: 10px; object-fit: cover; }
.cart-line-info { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.cart-line-name { font-weight: 600; font-size: 0.88rem; line-height: 1.3; }
.cart-line-price { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.cart-line-controls { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-weight: 700;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--primary-light); }
.qty-num { font-weight: 600; font-size: 0.88rem; min-width: 18px; text-align: center; }
.cart-line-total { font-weight: 700; color: var(--accent); font-size: 0.9rem; }
.cart-line-remove { color: var(--primary); font-size: 0.75rem; font-weight: 600; margin-left: auto; }
.cart-line-remove:hover { text-decoration: underline; }

.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; color: #a6a6a6; padding: 30px; }
.cart-empty p { font-weight: 600; color: var(--ink); }
.cart-empty-sub { font-weight: 400 !important; font-size: 0.85rem; color: var(--muted) !important; }
.cart-empty .btn { margin-top: 10px; }
.cart-empty svg { color: #d9d9d9; }

.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px 26px; display: none; }
.cart-foot.visible { display: block; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; margin-bottom: 6px; }
.cart-total-row strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--accent); }
.cart-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  z-index: 800;
  transition: transform 0.25s;
  animation: pulseWa 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulseWa {
  0% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-top {
  position: fixed;
  right: 26px; bottom: 94px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { background: var(--accent-2); }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  pointer-events: none;
  max-width: 92vw;
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 640px; width: 100%; margin-inline: auto; min-height: 0; }
  .hero-slideshow { min-height: 420px; }
  .why-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-bottom: 1px solid var(--border); }
  .feature:nth-child(2) { border-right: none; }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 30px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 950;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { width: 100%; font-size: 1.05rem; padding: 12px 16px; }
  .nav-call-btn { margin: 12px 0 0; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 480px; }
  .visit-grid { grid-template-columns: 1fr; }
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 90px; }
  .hero-stats { gap: 26px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .topbar-right { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-list { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-body { padding: 13px 14px 15px; }
  .product-body h3 { font-size: 0.98rem; }
  .product-desc { font-size: 0.78rem; }
  .product-price { font-size: 1.1rem; }
  .add-btn { font-size: 0.78rem; padding: 8px 12px; }
  .wa-order-btn { font-size: 0.78rem; padding: 9px 12px; margin-top: 10px; }
  .hero-visual { min-height: 0; }
  .hero-slideshow { min-height: 340px; }
  .slide-caption { left: 12px; bottom: 12px; padding: 8px 13px; }
  .slide-caption strong { font-size: 0.9rem; }
  .slide-caption span { font-size: 0.68rem; }
  .slider-dots { right: 12px; bottom: 16px; }
  .slide-nav { width: 38px; height: 38px; }
  .slide-prev { left: 8px; }
  .slide-next { right: 8px; }
  .hero-card { padding: 10px 14px; }
  .hero-card-top { left: -6px; }
  .hero-card-bottom { right: -6px; }
  .visit-card { padding: 26px 22px; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .back-top { right: 20px; bottom: 92px; }
  .whatsapp-float { right: 18px; bottom: 18px; width: 52px; height: 52px; }
}
