/* ============================================================
   assets/css/style.css – PRAVA ORGANICA Frontend Styles
   ============================================================ */

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --brown-dark:  #4A2C0A;
  --brown-mid:   #7B4A1E;
  --brown-light: #C8916A;
  --green-deep:  #2D5A27;
  --green-mid:   #4A8C3F;
  --green-lime:  #82B136;
  --orange:      #E07820;
  --cream:       #FDFAF5;
  --cream-2:     #F5F0E8;
  --text-dark:   #1A1A2E;
  --text-body:   #4A4A5A;
  --text-light:  #8B8B9A;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 7px 0;
}
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--green-lime); }

/* ── HEADER ───────────────────────────────────────────────── */
#mainHeader {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow 0.3s;
}
#mainHeader.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo-text .brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--brown-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.logo-text .sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.site-logo { height: 50px; }

/* ── MAIN NAV ─────────────────────────────────────────────── */
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  display: block;
  transition: all 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--green-mid); background: rgba(74,140,63,0.06); }
.text-green { color: var(--green-mid); }

/* Mega dropdown */
.mega-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  padding: 10px;
  min-width: 260px;
  z-index: 999;
}
.mega-dropdown .mega-inner { display: flex; flex-direction: column; gap: 2px; }

/* Category link row with image */
.mega-dropdown a.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 0.84rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mega-dropdown a.mega-cat-link:hover {
  background: var(--cream);
  color: var(--green-mid);
}
/* Thumbnail wrapper */
.mega-cat-img-wrap {
  width: 36px; height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-cat-img {
  width: 36px; height: 36px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s;
}
.mega-cat-link:hover .mega-cat-img { transform: scale(1.08); }
/* Icon fallback when no image */
.mega-cat-icon-fallback {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(74,140,63,0.1), rgba(130,177,54,0.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.mega-cat-name { font-size: 0.84rem; font-weight: 500; flex: 1; }
/* View All */
.mega-dropdown a.view-all {
  display: flex; align-items: center; gap: 6px;
  color: var(--green-mid); font-weight: 600; font-size: 0.82rem;
  padding: 10px 10px 6px;
  margin-top: 4px;
  border-top: 1px solid #f0f0f0;
  text-decoration: none;
  transition: color 0.15s;
  border-radius: 0;
}
.mega-dropdown a.view-all:hover { color: var(--green-deep); background: none; }

/* ── HEADER SEARCH ────────────────────────────────────────── */
.search-form {
  display: flex;
  align-items: center;
  background: var(--cream);
  border-radius: 10px;
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s;
}
.search-form:focus-within { border-color: var(--green-mid); }
.search-form input {
  background: none; border: none; outline: none;
  padding: 9px 14px;
  font-size: 0.85rem;
  width: 220px;
  color: var(--text-dark);
}
.search-form button {
  background: var(--green-mid);
  color: #fff;
  border: none;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-form button:hover { background: var(--green-deep); }

/* ── HEADER ACTIONS ───────────────────────────────────────── */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.icon-btn {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--text-dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover { background: var(--cream); color: var(--green-mid); }
.badge-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.mobile-menu-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-dark); }

/* ── MOBILE NAV ───────────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-drawer.open { transform: none; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #eee; }
.mobile-nav-links { list-style: none; padding: 12px 0; margin: 0; }
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav-links li a:hover { color: var(--green-mid); background: var(--cream); }
.mobile-nav-links li.divider { height: 1px; background: #f0f0f0; margin: 8px 0; }
/* Category image in mobile nav */
.mobile-cat-img {
  width: 28px; height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.mobile-cat-icon {
  width: 28px;
  text-align: center;
  color: var(--green-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 580px;
  overflow: hidden;
}
@media (max-width: 768px) { .hero-slider { height: 400px; } }

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%); }

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 100px;
}
@media (max-width: 768px) { .slide-content { padding-top: 60px; } }

.slide-eyebrow {
  display: inline-block;
  background: rgba(130,177,54,0.15);
  border: 1px solid rgba(130,177,54,0.4);
  color: var(--green-lime);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.slide-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.slide-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.slider-nav:hover { background: rgba(255,255,255,0.3); }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }
.slider-controls {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ── TRUST STRIP ──────────────────────────────────────────── */

/* ── VIDEO BANNER ─────────────────────────────────────────── */
.slide-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .slide-video { display: none; } }

/* ── GIF BANNER ───────────────────────────────────────────── */
/* background-image freezes GIF — must use <img> tag */
.slide-gif-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
/* CSS gradient base layer below video/gif */
.slide-bg-css {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.trust-strip {
  background: var(--cream);
  border-top: 1px solid rgba(74,140,63,0.1);
  border-bottom: 1px solid rgba(74,140,63,0.1);
  padding: 14px 0;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 500; }
.trust-item i { color: var(--green-mid); font-size: 1rem; }
.trust-divider { width: 1px; height: 24px; background: rgba(74,140,63,0.2); }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 0 auto 16px; }
.section-sub { color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary-prava {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary-prava:hover { background: var(--green-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(74,140,63,0.35); }
.btn-outline-prava {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.btn-outline-prava:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* ── CATEGORY CARDS ───────────────────────────────────────── */
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 1;
}
.cat-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%); }
.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 14px; }
.cat-card-body h3 { font-family: 'DM Serif Display', serif; color: #fff; font-size: 0.95rem; margin: 0; }
.cat-pill { background: rgba(130,177,54,0.8); color: #fff; font-size: 0.65rem; padding: 2px 8px; border-radius: 50px; display: inline-block; margin-bottom: 4px; }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.product-card {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--green-mid);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-badge.sale { background: var(--orange); }

.out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.product-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s;
}
.product-wishlist:hover, .product-wishlist.active { color: #e74c3c; transform: scale(1.1); }

.product-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 4px;
  padding: 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product-card:hover .product-actions { transform: none; }
.btn-cart {
  flex: 1;
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cart:hover { background: var(--green-deep); }
.btn-quick {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.72rem;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}

.product-body { padding: 14px; }
.product-cat a { font-size: 0.72rem; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; }
.product-cat a:hover { color: var(--green-mid); }
.product-name { margin: 4px 0 6px; }
.product-name a { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); text-decoration: none; line-height: 1.3; }
.product-name a:hover { color: var(--green-mid); }
.product-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 1rem; font-weight: 700; color: var(--green-deep); }
.price-original { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; }
.price-off { font-size: 0.7rem; color: var(--orange); font-weight: 600; }

/* ── WHY SECTION ──────────────────────────────────────────── */
.why-section { background: var(--brown-dark); }
.why-card { text-align: center; padding: 24px 12px; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(130,177,54,0.15);
  color: var(--green-lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: var(--green-mid); }
.why-card h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.65; }

/* ── BENEFITS SECTION ─────────────────────────────────────── */
.benefits-section {
  background: linear-gradient(135deg, #1A3A1A 0%, #2D5A27 50%, #4A8C3F 100%);
}
/* section-title is brown-dark globally — override to white on dark green bg */
.benefits-section .section-eyebrow { color: var(--green-lime); }
.benefits-section .section-title   { color: #ffffff; }
.benefits-section .section-title em { color: var(--green-lime); font-style: italic; }
.benefits-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-leaf {
  position: absolute;
  background: radial-gradient(circle, rgba(130,177,54,0.15), transparent);
  border-radius: 50%;
  animation: floatAnim 6s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(180deg); }
}
.benefit-strip { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.benefit-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: rgba(130,177,54,0.3);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.benefit-content h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.benefit-content p { color: rgba(255,255,255,0.6); font-size: 0.82rem; line-height: 1.65; margin: 0; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--cream-2); }
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(74,44,10,0.06);
  height: 100%;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(74,140,63,0.15);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}
.testi-text { color: var(--text-body); font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.testi-location { font-size: 0.75rem; color: var(--text-light); }
.stars { color: #F59E0B; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid)); padding: 80px 0; }
.newsletter-inner { border-radius: 24px; }
.newsletter-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.newsletter-sub { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.88rem;
  padding: 8px 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--green-deep); }

/* ── CONTACT STRIP ────────────────────────────────────────── */
.contact-strip { background: var(--cream); padding: 48px 0; border-top: 1px solid rgba(0,0,0,0.06); }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(74,140,63,0.1);
  color: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h5 { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; color: var(--text-dark); }
.contact-item p { color: var(--text-light); font-size: 0.82rem; margin: 0; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.footer-tagline { color: var(--green-lime); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-about { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--green-mid); color: #fff; }
.footer-h { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-links li a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links li a:hover { color: var(--green-lime); }
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.payment-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.68rem; padding: 3px 8px; border-radius: 4px; }
.text-green-lime { color: var(--green-lime); }

/* ── WhatsApp FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  z-index: 800;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-bounce 4s infinite 3s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
@keyframes wa-bounce {
  0%,100%{transform:scale(1)} 50%{transform:scale(1.08)}
}

/* ── CART DRAWER ──────────────────────────────────────────── */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 360px; height: 100vh;
  background: #fff;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: none; }
.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer-header h5 { margin: 0; font-weight: 700; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-drawer-footer { padding: 16px; border-top: 1px solid #eee; }
.cart-drawer-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
}
.cart-drawer-item img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; }
.cart-drawer-item-info { flex: 1; }
.cart-drawer-item-info .name { font-size: 0.82rem; font-weight: 600; }
.cart-drawer-item-info .name a { color: inherit; text-decoration: none; }
.cart-drawer-item-info .qty-price { font-size: 0.75rem; color: #888; }
.remove-btn { background: none; border: none; color: #ccc; cursor: pointer; font-size: 0.8rem; }
.remove-btn:hover { color: #e74c3c; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
/* data-reveal: elements only get opacity:0 after JS marks them .will-reveal
   This prevents invisible elements when IO never fires (element in viewport) */
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].will-reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal].will-reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal].will-reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal].will-reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal].revealed { opacity: 1 !important; transform: none !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }
  .hero-slider { height: 360px; }
  .slide-content { padding-top: 40px; }
  .cart-drawer { width: 100%; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-form button { border-radius: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PRODUCT CARD — INLINE VARIANT / QTY ────────────────────── */
.pc-qty-input::-webkit-inner-spin-button,
.pc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pc-qty-input { -moz-appearance: textfield; }
.pc-qty-btn:hover { background: var(--green-mid) !important; color: #fff !important; }
.pc-qty-btn:active { transform: scale(0.95); }
.pc-variant-select:focus { outline:none; border-color:var(--green-mid)!important; box-shadow:0 0 0 2px rgba(74,140,63,0.15); }
.pc-add-btn { font-size:0.75rem!important; padding:8px 6px!important; white-space:nowrap; }
.pc-add-btn.added { background:var(--green-deep)!important; }
.pc-main-img { transition: opacity 0.2s ease; }
