/* ═══════════════════════════════════════════════
   HOLISTA LEAF — style.css
   Firebase Hosting Ready
   Sections: reset, tokens, layout, header, hero,
   trust, about, products, footer, utils, responsive
═══════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --forest:     #2B4A2B;
  --sage:       #4E7244;
  --moss:       #6A9A58;
  --leaf:       #9DC07E;
  --cream:      #F6F2EB;
  --parchment:  #EDE8DE;
  --gold:       #C59A5E;
  --gold-light: #DFB97A;
  --bark:       #6B4F38;
  --white:      #FDFAF4;
  --text:       #252520;
  --text-muted: #6A6A60;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Lora', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius-sm:  0.75rem;
  --radius-md:  1.25rem;
  --radius-lg:  2rem;

  --shadow-sm:  0 4px 16px rgba(43,74,43,0.10);
  --shadow-md:  0 12px 40px rgba(43,74,43,0.15);
  --shadow-lg:  0 30px 70px rgba(43,74,43,0.18);

  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: 2rem;
}

/* ─── TYPOGRAPHY UTILS ───────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.1rem;
  border-radius: 3rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
}

.btn--primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ─── REVEAL ANIMATION ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SPLASH ANIMATION STATE ─────────────────── */
body.is-loading {
  overflow: hidden;
}

/* Logo starts with a large transform to center it */
body.is-loading .nav__logo {
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  z-index: 1001;
  pointer-events: none;
  /* Transform will be set by JS based on actual header position */
}

/* Hide brand text on mobile during splash */
@media (max-width: 768px) {
  body.is-loading .nav__brand-text {
    display: none;
  }
}

body.is-loading .nav__brand-text {
  font-size: 2.2rem;
  color: var(--cream);
  text-shadow: 0 2px 25px rgba(0,0,0,0.5);
}

/* Hide other elements initially */
body.is-loading .nav__links,
body.is-loading .nav__burger,
body.is-animating .nav__links,
body.is-animating .nav__burger,
body.is-loading .hero__content,
body.is-loading .hero__scroll-hint,
body.is-loading .trust-strip,
body.is-loading .about,
body.is-loading .products,
body.is-loading .footer {
  opacity: 0;
  visibility: hidden;
}

/* Reveal nav after animation completes */
body.is-loaded .nav__links,
body.is-loaded .nav__burger {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease 0.2s;
}

/* Animation state: header shrinks, logo moves up */
body.is-animating .nav__logo {
  z-index: 1001;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Once loaded, logo returns to its natural flexbox position */
body.is-loaded .nav__logo {
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1),
              font-size 1.2s cubic-bezier(0.85, 0, 0.15, 1),
              color 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Restore original site header styles */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}

/* Ensure smooth transition for logo properties */
.nav__logo {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__brand-text {
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(246,242,235,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(43,74,43,0.08);
}



.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* Clean background with circular crop if needed */
  border-radius: 50%;
  background: white; /* Clean background for the logo icon */
  padding: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.site-header.scrolled .nav__brand-text {
  color: var(--forest);
}

.nav__logo-leaf { font-size: 1.6rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s;
}

.site-header.scrolled .nav__link {
  color: var(--forest);
}

.nav__link:hover {
  color: var(--gold-light);
}

.site-header.scrolled .nav__link:hover {
  color: var(--gold);
}

.nav__link--cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.5rem 1.35rem;
  border-radius: 2rem;
  transition: background 0.2s !important;
}

.nav__link--cta:hover {
  background: var(--sage) !important;
  color: var(--white) !important;
}

.site-header.scrolled .nav__link--cta {
  background: var(--forest);
  color: var(--cream) !important;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.scrolled .nav__burger span {
  background: var(--forest);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Fallback gradient when no image */
  background: linear-gradient(145deg, var(--forest) 0%, #1A3520 50%, #0E2010 100%);
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,30,15,0.82) 0%,
    rgba(15,30,15,0.55) 50%,
    rgba(15,30,15,0.25) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: 3rem 4rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.4rem;
  animation-delay: 0s;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.04;
  color: var(--cream);
  font-weight: 900;
  margin-bottom: 1.8rem;
  animation-delay: 0.12s;
}

.hero__headline em {
  font-style: italic;
  color: var(--leaf);
}

.hero__sub {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(246,242,235,0.8);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.8rem;
  animation-delay: 0.24s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation-delay: 0.36s;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}


/* ══════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════ */
.trust-strip {
  background: var(--forest);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-strip__item {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 500;
}

.trust-strip__sep {
  color: rgba(157,192,126,0.4);
  font-size: 1.2rem;
}


/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* Visual side */
.about__visual {
  position: relative;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--sage), var(--forest));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-placeholder {
  font-size: 7rem;
  display: none;
}

.about__img-wrap--empty .about__img-placeholder,
.about__img-wrap:not(:has(img[src])) .about__img-placeholder {
  display: block;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--forest);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 2;
}

.about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.about__badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

/* Text side */
.about__text {
  padding-right: 1rem;
}

.about__body {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--parchment);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.pillar__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pillar__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}


/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products {
  padding: 7rem 0;
  background: var(--parchment);
}

.products__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.products__subtitle {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CAROUSEL ──────────────────────────── */
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
  /* Full bleed beyond container */
  padding-inline: 3rem;
}

.carousel-track-wrap {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2rem 1rem 2.5rem;
  scroll-behavior: smooth;
  flex: 1;
  /* Peek next card */
  padding-right: 6rem;
}

.carousel-track-wrap::-webkit-scrollbar { display: none; }

/* Arrow buttons */
.carousel-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(78,114,68,0.2);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  z-index: 10;
  cursor: pointer;
}

.carousel-arrow:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: scale(1.06);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(78,114,68,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--sage);
  width: 24px;
  border-radius: 4px;
}

/* Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(78,114,68,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
  position: relative;
  /* Carousel sizing */
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
  transform: scaleX(1);
}

/* Image area */
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--parchment);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

/* Placeholder emoji shown when image missing */
.product-card__img-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  background: linear-gradient(135deg, var(--parchment), #E0DDD4);
}

.product-card__img-wrap--empty .product-card__img-placeholder {
  display: flex;
}

/* Body */
.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.3rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--parchment);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
}

.product-card__price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-left: 2px;
}

.product-card__btn {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.product-card__btn:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

.product-card__btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.product-card__btn--outline:hover {
  background: var(--forest);
  color: var(--cream);
}

/* Coming soon card */
.product-card--soon {
  border-style: dashed;
  opacity: 0.75;
}

.product-card__img-wrap--soon {
  background: linear-gradient(135deg, var(--parchment) 0%, #DDD9CE 100%);
}

.product-card__soon-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.5;
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #192819;
  color: rgba(246,242,235,0.65);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer__logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* Clean circular badge style for the logo icon */
  background: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--leaf);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

/* Social buttons */
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: filter 0.2s, transform 0.2s;
  width: fit-content;
}

.social-btn:hover {
  filter: brightness(1.1);
  transform: translateX(3px);
}

.social-btn--fb {
  background: #1877F2;
  color: #fff;
}

.social-btn--wa {
  background: #25D366;
  color: #fff;
}

.social-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* Footer links col */
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer__links ul li {
  margin-bottom: 0.65rem;
}

.footer__links ul li a {
  font-size: 0.88rem;
  color: rgba(246,242,235,0.55);
  transition: color 0.2s;
}

.footer__links ul li a:hover {
  color: var(--gold-light);
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: rgba(246,242,235,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  /* Reduce brand text size on mobile in the nav */
  .nav__brand-text {
    font-size: 1.15rem;
    display: block; /* Show it in the nav */
  }

  /* Hide brand text during mobile splash only */
  body.is-loading .nav__brand-text {
    display: none;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.4rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    color: var(--forest) !important;
    font-size: 1rem;
  }

  .nav__burger {
    display: flex;
  }

  .hero__headline {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__visual { order: -1; }

  .about__badge {
    right: 0; bottom: -1rem;
  }

  .carousel-outer {
    padding-inline: 1rem;
  }

  .carousel-arrow {
    width: 38px; height: 38px;
  }

  .product-card {
    flex: 0 0 260px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-strip__sep { display: none; }
  .trust-strip__inner { gap: 0.6rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .product-card__footer { flex-direction: column; align-items: flex-start; }
}
