/* ════════════════════════════════════════════════════
   RICH BASKET — Global Styles
   Brand: Yellow #FFC107 | Navy #1A2A4A | Green #4CAF50
   ════════════════════════════════════════════════════ */

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

:root {
  --yellow:   #FFC107;
  --yellow-d: #F5A200;
  --navy:     #1A2A4A;
  --navy-l:   #2C3F6A;
  --green:    #4CAF50;
  --green-d:  #388E3C;
  --white:    #FFFFFF;
  --off-white:#FAFAF8;
  --gray-1:   #F4F4F2;
  --gray-2:   #E8E8E5;
  --gray-3:   #B0B0A8;
  --text:     #1A1A2E;
  --text-muted: #666660;
  --radius:   14px;
  --shadow-sm: 0 2px 8px rgba(26,42,74,.07);
  --shadow-md: 0 6px 24px rgba(26,42,74,.12);
  --shadow-lg: 0 16px 48px rgba(26,42,74,.16);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --font-head: 'Nunito', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ───────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--text-muted); }
a  { text-decoration: none; color: inherit; }

/* ─── Layout ───────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-d); }

.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-l); }

.btn-yellow { background: var(--yellow); color: var(--navy); border-color: var(--yellow); font-weight: 800; }
.btn-yellow:hover { background: var(--yellow-d); }

.btn-whatsapp { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-whatsapp:hover { background: var(--green-d); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Headers ──────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow-d);
  margin-bottom: .5rem;
}
.section-title { color: var(--navy); margin-bottom: 1rem; }
.section-desc { max-width: 580px; margin: 0 auto; color: var(--text-muted); }


/* ════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}
.logo-text { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; }
.logo-rich { color: var(--navy); }
.logo-basket { color: var(--yellow-d); }

.nav-links {
  display: flex;
  list-style: none;
  gap: .25rem;
  margin: 0 auto;
}
.nav-link {
  padding: .45rem .85rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active { background: var(--yellow); color: var(--navy); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.open-badge {
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  padding: .35rem .75rem;
  border-radius: 50px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 40%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.float-icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: .12;
  animation: floatDrift 8s ease-in-out infinite;
  user-select: none;
}
.fi-1 { top: 12%; left: 8%;  animation-delay: 0s;    font-size: 2.8rem; }
.fi-2 { top: 22%; right: 12%; animation-delay: 1.2s; font-size: 2rem; }
.fi-3 { bottom: 30%; left: 5%; animation-delay: 2.4s; font-size: 2.4rem; }
.fi-4 { top: 55%; right: 7%; animation-delay: 3.6s; }
.fi-5 { bottom: 20%; right: 18%; animation-delay: 4.8s; font-size: 2rem; }
.fi-6 { top: 70%; left: 18%; animation-delay: 6s; }

@keyframes floatDrift {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-18px) rotate(5deg); }
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }
.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26,42,74,.08);
  display: inline-block;
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-title { color: var(--navy); margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; max-width: 520px; }
.hero-sub strong { color: var(--navy); }
.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--yellow-d);
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-ring {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-big {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 4px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 185px; height: 185px; opacity: .35; animation-delay: 0s; }
.ring-2 { width: 215px; height: 215px; opacity: .15; animation-delay: 1s; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.04); opacity: .6; }
}

/* Stats Strip */
.stats-strip {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 2rem;
}
.stat-icon { font-size: 1.5rem; }
.stat-item div { display: flex; flex-direction: column; }
.stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); font-weight: 600; }
.stat-val { font-family: var(--font-head); font-weight: 800; color: var(--yellow); font-size: .95rem; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }


/* ════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════ */
.marquee-bar {
  background: var(--yellow);
  overflow: hidden;
  padding: .65rem 0;
  border-top: 2px solid var(--yellow-d);
  border-bottom: 2px solid var(--yellow-d);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }


/* ════════════════════════════════════════════════════
   PRODUCTS
   ════════════════════════════════════════════════════ */
.section-products { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.prod-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border-top: 4px solid var(--yellow);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--navy);
}
.prod-emoji { font-size: 2.2rem; }
.prod-card h3 { color: var(--navy); font-size: 1rem; margin: 0; }
.prod-card p { font-size: .83rem; line-height: 1.55; flex: 1; }
.prod-tag {
  display: inline-block;
  background: #FFF9E0;
  color: var(--yellow-d);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 50px;
  border: 1px solid #FFE082;
  margin-top: .25rem;
  width: fit-content;
}


/* ════════════════════════════════════════════════════
   WHY RICH BASKET
   ════════════════════════════════════════════════════ */
.section-why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--gray-2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.why-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.why-card h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.05rem; }
.why-card p { font-size: .87rem; }

.freshness-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.freshness-left { flex: 1; min-width: 260px; }
.freshness-left h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: .75rem;
}
.freshness-left p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
.freshness-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  flex-shrink: 0;
}
.f-stat { text-align: center; }
.f-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.f-lbl { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 500; }


/* ════════════════════════════════════════════════════
   GIFTING
   ════════════════════════════════════════════════════ */
.section-gifting { background: var(--off-white); }

.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gift-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border: 2px solid var(--gray-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gift-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gift-card-featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,193,7,.15), var(--shadow-md);
}
.gift-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .75rem;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.gift-icon { font-size: 2.5rem; }
.gift-card h3 { color: var(--navy); }
.gift-card p { font-size: .88rem; }
.gift-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.gift-card ul li {
  font-size: .84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.gift-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════ */
.section-reviews { background: var(--white); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.big-rating {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating-right { text-align: left; }
.stars { font-size: 1.3rem; letter-spacing: .05em; }
.rating-source { font-size: .82rem; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--gray-2);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.review-card-featured .review-stars { filter: brightness(1.2); }
.review-card-featured p { color: rgba(255,255,255,.8); }
.review-card-featured .reviewer-name { color: var(--yellow); }
.review-card-featured .reviewer-loc { color: rgba(255,255,255,.5); }
.review-stars { font-size: 1rem; letter-spacing: .04em; }
.review-card p { font-size: .87rem; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card-featured .reviewer-avatar { background: rgba(255,193,7,.2); color: var(--yellow); }
.reviewer-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--navy); }
.reviewer-loc { display: block; font-size: .75rem; color: var(--text-muted); }


/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.section-about {
  background: linear-gradient(135deg, #FFFDF0 0%, #FFFFFF 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.about-visual { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.about-logo-wrap { position: relative; }
.about-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .75rem;
  padding: .35rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}
.about-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.about-tag {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 50px;
}
.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-content h2 { color: var(--navy); }
.about-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow-d);
  border-left: 4px solid var(--yellow);
  padding-left: 1rem;
  margin: .5rem 0;
}
.about-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
  padding: 1rem;
  background: var(--gray-1);
  border-radius: var(--radius);
}
.pay-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  color: var(--navy);
  margin-right: .25rem;
}
.pay-method {
  font-size: .8rem;
  color: var(--text-muted);
  background: var(--white);
  padding: .25rem .65rem;
  border-radius: 50px;
  border: 1px solid var(--gray-2);
}


/* ════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════ */
.section-contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-2);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-md); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  margin-bottom: .3rem;
}
.contact-card p { font-size: .87rem; line-height: 1.6; }
.contact-link { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.contact-link:hover { color: var(--yellow-d); }
.hours-big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.open-now-badge {
  display: inline-block;
  background: #E8F5E9;
  color: var(--green-d);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-top: .35rem;
  border: 1px solid #C8E6C9;
}

.contact-map { display: flex; flex-direction: column; gap: 1rem; }
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-2);
  flex: 1;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.map-inner { text-align: center; }
.map-pin { font-size: 3rem; margin-bottom: .75rem; }
.map-inner p { font-size: .92rem; color: var(--text-muted); margin-bottom: .25rem; }
.map-inner p strong { color: var(--navy); font-weight: 700; }
.cta-whatsapp-block {
  background: #E8F5E9;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  border: 1.5px solid #C8E6C9;
}
.cta-whatsapp-block p {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-d);
  margin-bottom: .75rem;
  font-size: .9rem;
}


/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}
.footer-logo-text { font-family: var(--font-head); font-weight: 900; font-size: 1.1rem; }
.footer-logo-text .logo-rich { color: var(--white); }
.footer-logo-text .logo-basket { color: var(--yellow); }
.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.6;
}
.footer-socials { display: flex; gap: .75rem; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.social-link:hover { background: var(--yellow); color: var(--navy); }

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .88rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-info-list li { font-size: .83rem; color: rgba(255,255,255,.6); }
.footer-info-list li a { color: rgba(255,255,255,.6); }
.footer-info-list li a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-powered a { color: rgba(255,255,255,.4); text-decoration: underline; }
.footer-powered a:hover { color: var(--yellow); }


/* ════════════════════════════════════════════════════
   FAB WHATSAPP
   ════════════════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(76,175,80,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fabPop .5s cubic-bezier(.34,1.56,.64,1) .8s both;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(76,175,80,.6);
}
@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


/* ════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-ctas { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .freshness-banner { flex-direction: column; text-align: center; }
  .freshness-stats { width: 100%; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .hamburger { display: flex; }
  .open-badge { display: none; }
  .stat-item { padding: .5rem 1rem; }
  .stat-divider { display: none; }
  .stats-strip { gap: .5rem; justify-content: flex-start; overflow-x: auto; padding: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge-ring { width: 160px; height: 160px; }
  .hero-logo-big { width: 120px; height: 120px; }
  .ring-1 { width: 140px; height: 140px; }
  .ring-2 { width: 158px; height: 158px; }
  .section { padding: 3.5rem 0; }
  .freshness-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
