/* ============================================
   INFUSIA — Premium Makhana & Seeds Brand
   Design System & Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=Caveat:wght@600;700&display=swap');

/* -------------------------------------------
   1. Custom Properties
   ------------------------------------------- */
:root {
  /* Colors */
  --forest: #221b3a;
  --forest-light: #264A3A;
  --cream: #FBF7F0;
  --cream-alt: #F5F0E6;
  --golden: #D4A843;
  --golden-dark: #B8923A;
  --terracotta: #C96B3C;
  --sage: #A8C5A0;
  --sage-muted: #D2E4CC;
  --charcoal: #2A2A2A;
  --charcoal-50: rgba(42, 42, 42, 0.5);
  --white: #FFFFFF;
  --white-90: rgba(255, 255, 255, 0.90);
  --white-60: rgba(255, 255, 255, 0.60);
  --white-20: rgba(255, 255, 255, 0.20);
  --shadow-sm: 0 2px 16px rgba(27, 58, 45, 0.05);
  --shadow-md: 0 6px 30px rgba(27, 58, 45, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 58, 45, 0.12);
  --shadow-card: 0 2px 20px rgba(27, 58, 45, 0.06);
  --shadow-card-hover: 0 14px 44px rgba(27, 58, 45, 0.13);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --section-py: 120px;
  --section-py-sm: 72px;
  --container-px: 24px;
  --container-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.35s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* -------------------------------------------
   3. Typography
   ------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
}

.accent-text {
  font-family: var(--font-accent);
}

/* -------------------------------------------
   4. Layout
   ------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* -------------------------------------------
   4b. Top Contact Banner
   ------------------------------------------- */
.top-banner {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: 36px;
  display: flex;
  align-items: center;
}

.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}

.top-banner__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white-60);
  transition: color 0.3s ease;
}

.top-banner__item:hover {
  color: var(--white);
}

.top-banner__item svg {
  flex-shrink: 0;
}

/* -------------------------------------------
   5. Header & Navigation
   ------------------------------------------- */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  transition: background var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base);
}

.header.scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(27, 58, 45, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}

.logo__image {
  height: 40px;
  width: auto;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--forest);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--golden);
  transition: width var(--transition-base);
}

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

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.35s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--cream);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background: var(--cream);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 58, 45, 0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.active .nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo), color 0.3s ease;
}

.nav-overlay.active .nav-overlay__link:nth-child(1) {
  transition-delay: 0.1s, 0.1s, 0s;
}

.nav-overlay.active .nav-overlay__link:nth-child(2) {
  transition-delay: 0.18s, 0.18s, 0s;
}

.nav-overlay.active .nav-overlay__link:nth-child(3) {
  transition-delay: 0.26s, 0.26s, 0s;
}

.nav-overlay__link:hover {
  color: var(--golden);
}

/* Close button in mobile overlay */
.nav-overlay__close {
  position: absolute;
  top: 64px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: none;
  border: 1px solid var(--white-20);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
  z-index: 101;
}

.nav-overlay__close:hover {
  border-color: var(--golden);
  color: var(--golden);
}

/* -------------------------------------------
   6. Hero Section
   ------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2969 / 1510;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/hero-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 112px;
  /* top-banner (36px) + header (76px) */
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 var(--container-px);
}

.hero__label {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--golden);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero__tagline {
  font-size: 1.15rem;
  color: var(--charcoal-50);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  font-weight: 400;
}

/* CTA Button */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 140px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--golden-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.3);
}





/* -------------------------------------------
   7. About Section
   ------------------------------------------- */
.about {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
  text-align: center;
  position: relative;
  z-index: 2;
}

.about__ornament {
  font-size: 1.4rem;
  color: var(--golden);
  margin-bottom: 32px;
  letter-spacing: 0.3em;
}

.about__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--charcoal);
}

.about__highlight {
  max-width: 680px;
  margin: 36px auto 0;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--forest);
  font-weight: 700;
}

/* -------------------------------------------
   8. Product Sections
   ------------------------------------------- */
.products {
  position: relative;
  z-index: 2;
}

.category {
  padding: var(--section-py) 0;
  position: relative;
}

/* Category backgrounds */
.category--seeds {
  background: var(--cream);
}

.category--berries {
  background: var(--cream-alt);
}

.category--mix-nuts-and-berries {
  background: var(--cream);
}

.category--nuts {
  background: var(--cream-alt);
}

.category--makhana {
  background: var(--forest);
}

.category--makhana .category__label,
.category--makhana .category__title,
.category--makhana .category__subtitle,
.category--makhana .category__tagline {
  color: var(--cream);
}

.category--makhana .category__title {
  color: var(--white);
}

.category--makhana .category__label {
  color: var(--golden);
}

/* Category header */
.category__header {
  text-align: center;
  margin-bottom: 64px;
}

.category__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--golden);
  margin-bottom: 12px;
  display: block;
}

.category__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 12px;
}

.category__tagline {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--charcoal-50);
}

.category__packaging {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-50);
  padding: 6px 16px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  border-radius: 100px;
}

.category--makhana .category__packaging {
  color: var(--white-60);
  border-color: var(--white-20);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

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

.product-card__image {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft radial highlight on placeholder */
.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* When images are added, they'll fill the image area */
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.product-card__info {
  padding: 20px 18px;
  text-align: center;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.product-card__tag {
  font-size: 0.82rem;
  color: var(--charcoal-50);
  margin-top: 5px;
  font-weight: 500;
}

/* --- Card Placeholder Gradients per Category --- */

/* Seeds — earthy greens */
.category--seeds .product-card__image {
  background: linear-gradient(135deg, #b8d4ac, #7aab6a);
}

.category--seeds .product-card:nth-child(4n+2) .product-card__image {
  background: linear-gradient(210deg, #a5c996, #6b9b5c);
}

.category--seeds .product-card:nth-child(4n+3) .product-card__image {
  background: linear-gradient(160deg, #c3ddb6, #8bb87a);
}

.category--seeds .product-card:nth-child(4n+4) .product-card__image {
  background: linear-gradient(260deg, #aed1a0, #79a86c);
}

/* Berries & Mix Nuts — warm berry / terracotta tones */
.category--berries .product-card__image,
.category--mix-nuts-and-berries .product-card__image {
  background: linear-gradient(135deg, #e8b9a3, #c97a5a);
}

.category--berries .product-card:nth-child(4n+2) .product-card__image,
.category--mix-nuts-and-berries .product-card:nth-child(4n+2) .product-card__image {
  background: linear-gradient(200deg, #dda990, #b86d4a);
}

.category--berries .product-card:nth-child(4n+3) .product-card__image,
.category--mix-nuts-and-berries .product-card:nth-child(4n+3) .product-card__image {
  background: linear-gradient(170deg, #f0c5b0, #d48868);
}

.category--berries .product-card:nth-child(4n+4) .product-card__image,
.category--mix-nuts-and-berries .product-card:nth-child(4n+4) .product-card__image {
  background: linear-gradient(250deg, #e4b59e, #c47352);
}

/* Nuts — warm golden / brown tones */
.category--nuts .product-card__image {
  background: linear-gradient(135deg, #dcc9a0, #b89860);
}

.category--nuts .product-card:nth-child(4n+2) .product-card__image {
  background: linear-gradient(215deg, #d4bd8e, #a88a4e);
}

.category--nuts .product-card:nth-child(4n+3) .product-card__image {
  background: linear-gradient(155deg, #e3d2ae, #c4a46a);
}

.category--nuts .product-card:nth-child(4n+4) .product-card__image {
  background: linear-gradient(280deg, #d8c498, #ae9256);
}

/* Makhana — cream / golden tones */
.category--makhana .product-card__image {
  background: linear-gradient(135deg, #f0e4c8, #d4b06a);
}

.category--makhana .product-card:nth-child(4n+2) .product-card__image {
  background: linear-gradient(200deg, #ecdbb8, #c9a45a);
}

.category--makhana .product-card:nth-child(4n+3) .product-card__image {
  background: linear-gradient(165deg, #f4e9d0, #dabb78);
}

.category--makhana .product-card:nth-child(4n+4) .product-card__image {
  background: linear-gradient(255deg, #eee0c2, #cead64);
}

/* -------------------------------------------
   9. Why Infusia — USP Section
   ------------------------------------------- */
.why-section {
  padding: var(--section-py) 0;
  background: var(--cream-alt);
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 56px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.usp-card {
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.usp-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.usp-card:nth-child(1) .usp-card__icon {
  background: rgba(168, 197, 160, 0.2);
}

.usp-card:nth-child(2) .usp-card__icon {
  background: rgba(212, 168, 67, 0.15);
}

.usp-card:nth-child(3) .usp-card__icon {
  background: rgba(201, 107, 60, 0.12);
}

.usp-card:nth-child(4) .usp-card__icon {
  background: rgba(27, 58, 45, 0.08);
}

.category__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.category__subtitle {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.usp-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.usp-card__desc {
  font-size: 0.92rem;
  color: var(--charcoal-50);
  line-height: 1.65;
}

/* -------------------------------------------
   10. Footer / Contact
   ------------------------------------------- */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 340px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--golden);
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.6;
}

.footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  color: var(--golden);
  margin-top: 3px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.95rem;
  color: var(--white-60);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--golden);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--white-20);
  letter-spacing: 0.03em;
}

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

.footer__legal a {
  color: var(--white-60);
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--golden);
}

.footer__legal-sep {
  color: var(--white-20);
}



/* -------------------------------------------
   12. Reveal Animations
   ------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-out-expo);
}

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

/* Staggered reveal for product cards */
.product-card.reveal {
  transition-delay: var(--reveal-delay, 0s);
}

/* Hero entrance animations */
.hero__content>* {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.9s var(--ease-out-expo) forwards;
}

.hero__content> :nth-child(1) {
  animation-delay: 0.2s;
}

.hero__content> :nth-child(2) {
  animation-delay: 0.4s;
}

.hero__content> :nth-child(3) {
  animation-delay: 0.6s;
}

.hero__content> :nth-child(4) {
  animation-delay: 0.8s;
}



@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------------------------
   13. Responsive — Tablet
   ------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 88px;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* -------------------------------------------
   14. Responsive — Mobile
   ------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  /* Top banner */
  .top-banner__inner {
    gap: 16px;
  }

  .top-banner__item span {
    font-size: 0.75rem;
  }

  /* Header */
  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero */
  .hero {
    background-image: url('../images/mobile-hero.webp');
    aspect-ratio: 850 / 1357;
  }

  .hero__tagline {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .btn {
    padding: 14px 32px;
  }

  .hero__tagline {
    font-size: 1rem;
    margin-bottom: 32px;
    color: var(--forest);
    font-weight: 700;
  }

  .btn {
    padding: 14px 32px;
  }

  /* Category */
  .category__header {
    margin-bottom: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card__info {
    padding: 14px 12px;
  }

  .product-card__name {
    font-size: 0.92rem;
  }

  .product-card__tag {
    font-size: 0.75rem;
  }

  /* USP */
  .usp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .usp-card {
    padding: 28px 16px;
  }

  .usp-card__icon {
    width: 52px;
    height: 52px;
  }

  /* Footer */
  .footer {
    padding-top: 56px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand-desc {
    max-width: 100%;
  }

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

  /* Hide some floating items on mobile */
  .floating-item:nth-child(n+10) {
    display: none;
  }

  .floating-item {
    opacity: calc(var(--fi-opacity, 0.1) * 0.6);
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2.4rem;
  }
}