/* ===========================
   Pulpitol — Landing Page
   =========================== */

:root {
  --green-dark: #1F6B2E;
  --green: #2E8B33;
  --green-light: #5FA02A;
  --orange: #F5821F;
  --orange-dark: #E8720A;
  --yellow: #FFC93C;
  --lime: #8BC53F;
  --purple: #8E44C4;
  --cream: #FFF9EC;
  --cream-2: #FBF6E3;
  --text: #3A3A3A;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 45px rgba(60, 40, 0, 0.08);
  --shadow-card: 0 14px 30px rgba(60, 40, 0, 0.10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 15%, rgba(139, 197, 63, 0.10), transparent 40%),
    radial-gradient(circle at 92% 10%, rgba(245, 130, 31, 0.08), transparent 40%),
    linear-gradient(180deg, #FFFDF6 0%, #FBF6E3 40%, #F7F3DE 100%);
  overflow-x: hidden;
  position: relative;
  animation: pageFadeIn .6s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: 'Baloo 2', 'Poppins', sans-serif; }
p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; transition: transform .25s ease; }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(31,107,46,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(31,107,46,0.32); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-cart .icon { width: 20px; height: 20px; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(245,130,31,0.3);
}
.btn-orange:hover { transform: translateY(-2px); background: var(--orange-dark); }

/* ---------- Decorative corners ---------- */
.corner-deco {
  position: fixed;
  width: clamp(140px, 18vw, 260px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}
.corner-deco--left { left: -60px; bottom: -60px; transform: rotate(-12deg); }
.corner-deco--right { right: -70px; bottom: 8%; transform: rotate(8deg); opacity: 0.55; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--green-dark));
  z-index: 110;
  transition: width .1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(60, 40, 0, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding .25s ease;
}
.is-scrolled .header-inner { padding-top: 10px; padding-bottom: 10px; }
.logo img { height: 40px; width: auto; transition: height .25s ease; }
.is-scrolled .logo img { height: 34px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-dark);
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::before { transform: scaleX(1); }
.nav-link.active { color: var(--green-dark); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--green-dark); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 30, 10, 0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 89;
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; padding: 56px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 4px;
  transform: rotate(-3deg);
}
.hero-title { line-height: 1.02; margin-bottom: 18px; }
.hero-title .line {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.line--green { color: var(--green-dark); }
.line--orange { color: var(--orange); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
}
.hero-badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--text);
}
.badge-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  background: var(--white);
}
.badge-icon svg { width: 24px; height: 24px; }
.badge-icon--green { color: var(--green-dark); border-color: var(--green-dark); }
.badge-icon--orange { color: var(--orange); border-color: var(--orange); }

/* hero art */
.hero-art { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.hero-glow {
  position: absolute;
  width: 115%;
  max-width: 620px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseSplash 6s ease-in-out infinite;
}
@keyframes pulseSplash {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.04); }
}

/* real-photo stack */
.photo-stack {
  position: relative;
  z-index: 2;
  width: min(420px, 90%);
  height: 440px;
}
.photo-card {
  position: absolute;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 22px 40px rgba(60, 40, 0, 0.22);
  transition: scale .35s ease, box-shadow .35s ease;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.photo-card:hover { z-index: 5 !important; scale: 1.04; box-shadow: 0 28px 50px rgba(60, 40, 0, 0.3); }

.photo-card--back {
  width: 260px; height: 380px;
  top: 4px; left: 80px;
  rotate: -2deg;
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite;
}
.photo-card--left {
  width: 190px; height: 250px;
  bottom: 6px; left: 4px;
  rotate: -9deg;
  z-index: 3;
  animation: floatCard 5.2s ease-in-out infinite 0.3s;
}
.photo-card--right {
  width: 190px; height: 250px;
  bottom: 24px; right: 0;
  rotate: 8deg;
  z-index: 4;
  animation: floatCard 5.6s ease-in-out infinite 0.6s;
}
@keyframes floatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.hero-fruit { position: absolute; z-index: 0; opacity: 0.85; }
.hero-fruit--segments { width: 150px; bottom: -2%; left: -4%; }
.hero-fruit--lime1 { width: 110px; top: 2%; right: -2%; transform: rotate(12deg); }

.hero-leaf { position: absolute; width: 54px; z-index: 5; opacity: 0.9; }
.hero-leaf--1 { top: -2%; left: 10%; transform: rotate(20deg); }
.hero-leaf--2 { bottom: 6%; right: 6%; transform: rotate(-40deg) scaleX(-1); }

.scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  color: var(--green-dark);
  opacity: 0.55;
  animation: bounceCue 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 26px; height: 26px; }
.scroll-cue:hover { opacity: 0.9; }
@keyframes bounceCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Section titles ---------- */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.section-title.center { text-align: center; margin-bottom: 40px; }
.squiggle { color: var(--orange); font-size: 1.1rem; }

/* ---------- Why choose ---------- */
.why { position: relative; z-index: 1; padding: 10px 0 70px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 46px 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.why-item:hover .why-icon { transform: translateY(-4px) rotate(-6deg) scale(1.06); }
.why-icon svg { width: 28px; height: 28px; }
.why-icon--orange { background: rgba(245,130,31,0.12); color: var(--orange); }
.why-icon--green { background: rgba(46,139,51,0.12); color: var(--green-dark); }
.why-icon--yellow { background: rgba(255,201,60,0.22); color: #E8A800; }
.why-item p { font-weight: 600; font-size: 0.92rem; color: var(--text); line-height: 1.4; }

/* ---------- Quality ---------- */
.quality { position: relative; z-index: 1; padding: 30px 0 50px; }
.quality-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.quality-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.quality-photo img { width: 100%; height: 100%; object-fit: cover; }
.quality-copy .section-title { justify-content: flex-start; margin-bottom: 16px; }
.quality-copy p { color: var(--text-light); line-height: 1.6; margin-bottom: 26px; max-width: 480px; }
.quality-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.quality-stats li { display: flex; flex-direction: column; }
.quality-stats strong { font-family: 'Baloo 2', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--orange); }
.quality-stats span { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }

/* ---------- Products ---------- */
.products { position: relative; z-index: 1; padding: 20px 0 80px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 22px 40px rgba(60,40,0,0.16); }
.product-photo { position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #f2ecd8; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .5s ease; }
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-chip {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--white);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.product-chip--orange { background: var(--orange); }
.product-chip--green { background: var(--green-dark); }
.product-info { padding: 22px 24px 26px; }
.product-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.product-info p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.4; }

/* ---------- Brand moment ---------- */
.moment { position: relative; z-index: 1; padding: 20px 0 80px; }
.moment-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.moment-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); max-width: 380px; }
.moment-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.moment-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(20, 30, 10, 0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 999px;
}
.moment-copy .section-title { justify-content: flex-start; margin-bottom: 16px; }
.moment-copy p { color: var(--text-light); line-height: 1.6; margin-bottom: 22px; max-width: 480px; }
.moment-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.moment-points li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--orange { background: var(--orange); }
.dot--green { background: var(--green-dark); }
.dot--purple { background: var(--purple); }

/* ---------- On the go ---------- */
.onthego { position: relative; z-index: 1; padding: 10px 0 90px; }
.onthego-card {
  background: linear-gradient(135deg, #2E8B33, #1F6B2E 70%);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.onthego-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.onthego-copy .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.35em;
}
.onthego-copy p {
  opacity: 0.92;
  max-width: 380px;
  margin-bottom: 30px;
  line-height: 1.55;
}
.onthego-list { display: flex; gap: 26px; flex-wrap: wrap; }
.onthego-list li { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; }
.onthego-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.onthego-icon svg { width: 24px; height: 24px; }

.onthego-media { position: relative; display: flex; justify-content: center; }
.onthego-img {
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  border: 6px solid rgba(255,255,255,0.15);
}
.fresh-badge {
  position: absolute;
  top: -18px; left: -18px;
  z-index: 2;
  background: var(--white);
  color: var(--green-dark);
  width: 108px; height: 108px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.25;
}
.fresh-badge svg { width: 24px; height: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--cream-2);
  padding: 64px 0 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-col h3 { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 18px; }

.footer-col--brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { height: 36px; width: auto; }
.footer-tagline { color: var(--text-light); font-size: 0.88rem; line-height: 1.55; max-width: 260px; }
.footer-col--brand .social-icons { justify-content: flex-start; margin-top: 4px; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-light); font-size: 0.9rem; transition: color .2s ease, padding-left .2s ease; }
.footer-links a:hover { color: var(--green-dark); padding-left: 4px; }

.newsletter-form {
  display: flex;
  background: var(--white);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-card);
  max-width: 340px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.newsletter-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, transform .2s ease;
}
.newsletter-form button:hover { background: var(--orange-dark); transform: scale(1.05); }
.newsletter-form button svg { width: 18px; height: 18px; }
.form-msg { margin-top: 10px; font-size: 0.82rem; color: var(--green-dark); min-height: 1em; }

.social-icons { display: flex; gap: 14px; justify-content: center; }
.social-icons a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-icons a svg { width: 20px; height: 20px; }
.social-icons a:hover { background: var(--green-dark); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 18px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-credit a { color: var(--green-dark); font-weight: 600; transition: color .2s ease; }
.footer-credit a:hover { color: var(--orange); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(31,107,46,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
  z-index: 80;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
  z-index: 80;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 32px rgba(37, 211, 102, 0.55); }
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: whatsappPulse 2.2s ease-out infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--text);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.whatsapp-tooltip::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: var(--text);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .photo-card, .hero-glow, .whatsapp-ring, .scroll-cue, body { animation: none !important; }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-col--brand { grid-column: span 2; }
  .quality-inner { grid-template-columns: 1fr; }
  .quality-photo { max-width: 480px; margin: 0 auto; }
  .quality-copy { text-align: center; }
  .quality-copy .section-title { justify-content: center; }
  .quality-copy p { margin-left: auto; margin-right: auto; }
  .quality-stats { justify-content: center; }
  .quality-stats li { align-items: center; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px; gap: 18px; box-shadow: 0 12px 24px rgba(0,0,0,0.08); transform: translateY(-130%); opacity: 0; transition: transform .3s ease, opacity .3s ease; z-index: 90; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }
  .btn-cart { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 400px; }
  .hero-copy { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badges { justify-content: center; }
  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .moment-inner { grid-template-columns: 1fr; text-align: center; }
  .moment-photo { margin: 0 auto; }
  .moment-copy .section-title { justify-content: center; }
  .moment-copy p { margin-left: auto; margin-right: auto; }
  .moment-points { align-items: center; }
  .moment-points li { justify-content: center; }
  .onthego-card { grid-template-columns: 1fr; padding: 34px; }
  .onthego-copy { text-align: center; }
  .onthego-copy .onthego-list { justify-content: center; }
  .onthego-copy p { max-width: 100%; }
  .onthego-media { margin-top: 10px; }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { padding: 32px 20px; }
  .hero-badges { gap: 16px; }
  .badge-icon { width: 46px; height: 46px; }
  .corner-deco { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col--brand { grid-column: auto; align-items: center; }
  .footer-tagline { max-width: 100%; }
  .newsletter-form { margin: 0 auto; }
  .social-icons { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .onthego { padding: 10px 0 40px; }
  .moment { padding: 10px 0 40px; }
  .site-footer { padding-top: 40px; }
  .products { padding: 10px 0 50px; }
  .why { padding-bottom: 40px; }
  .quality { padding: 10px 0 30px; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .whatsapp-float { left: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }
  .photo-stack { height: 400px; }
  .photo-card--back { width: 220px; height: 320px; left: 50%; animation-name: floatCardCenter; }
  .photo-card--left { width: 160px; height: 210px; }
  .photo-card--right { width: 160px; height: 210px; }
  @keyframes floatCardCenter {
    0%, 100% { translate: -50% 0; }
    50% { translate: -50% -12px; }
  }
}
