/* ═══════════════════════════════════════════════════════════
   LOVE OF THE ANCESTORS — Design System
   Luxury Botanical Apothecary · Redesign 2026
   Inspired by: Aesop · Herbivore · Sakara · Mountain Rose
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* ── Core Palette ── */
  --ivory:        #F8F5EF;
  --ivory-dark:   #F0EBE3;
  --ivory-mid:    #EDE7DD;
  --forest:       #3B4A3F;
  --forest-deep:  #2A3630;
  --forest-light: #4E6257;
  --brown:        #5E4735;
  --brown-light:  #7A5C45;
  --gold:         #B08A43;
  --gold-light:   #C9A55E;
  --gold-pale:    #F2E9D8;
  --sage:         #B3BDA7;
  --sage-light:   #D4DBC8;
  --sage-dark:    #8A9880;
  --white:        #FFFFFF;
  --charcoal:     #2C2C2C;
  --text:         #3A3830;
  --text-mid:     #6B6560;
  --text-light:   #9A9590;
  --border:       rgba(59,74,63,0.12);
  --border-warm:  rgba(176,138,67,0.2);

  /* ── Shadows ── */
  --shadow-sm:    0 2px 12px rgba(42,54,48,0.06);
  --shadow:       0 6px 30px rgba(42,54,48,0.09);
  --shadow-lg:    0 16px 60px rgba(42,54,48,0.12);
  --shadow-xl:    0 30px 90px rgba(42,54,48,0.15);

  /* ── Radius ── */
  --radius-sm:    3px;
  --radius:       4px;
  --radius-lg:    8px;
  --radius-pill:  100px;

  /* ── Transitions ── */
  --ease:         all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-slow:    all 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── Spacing Scale ── */
  --space-xs:     0.5rem;
  --space-sm:     1rem;
  --space-md:     1.5rem;
  --space-lg:     2.5rem;
  --space-xl:     4rem;
  --space-2xl:    6rem;
  --space-3xl:    9rem;

  /* ── Container ── */
  --container:    1200px;
  --container-sm: 860px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
svg { display: block; flex-shrink: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.85em; }
p:last-child { margin-bottom: 0; }

.serif { font-family: 'Cormorant Garamond', serif; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--space-2xl) 0; }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.08rem; max-width: 500px; margin: 0 auto; }
.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 1.25rem auto;
  opacity: 0.7;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #9a7838;
  border-color: #9a7838;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176,138,67,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: white;
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.82rem; }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.7rem; }
.btn-full { width: 100%; }

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,245,239,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59,74,63,0.08);
  transition: var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: 1340px;
  margin: 0 auto;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--forest);
  position: relative;
}
.nav-cart svg { width: 20px; height: 20px; }
.cart-count {
  background: var(--gold);
  color: white;
  font-size: 0.55rem;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -8px; right: -10px;
}
.cart-count.hidden { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px; height: 1.5px;
  background: var(--forest);
  display: block;
  transition: var(--ease);
}

.mobile-menu {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Toast ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--forest-deep);
  color: white;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card-img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-img.tea  { background: linear-gradient(145deg, #dfe8da, #c8d9c0); }
.product-card-img.sitz { background: linear-gradient(145deg, #e8e3d8, #ddd4c5); }
.product-card-img.bath { background: linear-gradient(145deg, #ede4d0, #e2d5b8); }
.product-card-img img  { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--gold);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}
.product-badge.new  { background: var(--forest); }
.product-badge.sale { background: #a03030; }

.product-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-collection {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.product-card-herbs {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
  font-family: 'Cormorant Garamond', serif;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.add-to-cart-btn {
  background: var(--forest);
  color: white;
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--ease);
}
.add-to-cart-btn:hover { background: var(--forest-deep); transform: scale(1.02); }
.add-to-cart-btn.added { background: var(--gold); }

/* ── Filter Tabs ──────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-mid);
  background: white;
  cursor: pointer;
  transition: var(--ease);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, var(--forest-deep) 0%, var(--forest) 100%);
  padding: 6rem 1.5rem 4.5rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: 0.75rem; display: block; }
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

/* ── Cart ─────────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  text-align: left;
}
.cart-table td { padding: 1.5rem 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--ivory-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-info { display: flex; align-items: center; gap: 1.1rem; }
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest-deep);
  display: block;
}
.cart-item-variant { font-size: 0.82rem; color: var(--text-light); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--forest);
  background: white;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.qty-btn:hover { background: var(--ivory-dark); }
.qty-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  min-width: 30px;
  text-align: center;
}
.remove-btn { color: var(--text-light); font-size: 0.82rem; cursor: pointer; transition: var(--ease); }
.remove-btn:hover { color: #a03030; }
.cart-summary-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 90px;
}
.cart-summary-box h3 { margin-bottom: 1.5rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 1rem;
  color: var(--text-mid);
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest-deep);
}
.checkout-divider {
  text-align: center;
  position: relative;
  margin: 1.25rem 0;
}
.checkout-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.checkout-divider span {
  position: relative;
  background: white;
  padding: 0 0.75rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.paypal-btn {
  background: #FFC439;
  color: #003087;
  border: none;
  border-radius: var(--radius);
  width: 100%;
  padding: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.paypal-btn:hover { background: #f0b429; transform: translateY(-1px); }
.cart-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 1rem; line-height: 1.55; }
.cart-empty { text-align: center; padding: 5rem 2rem; }
.cart-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.25; }
.cart-empty h3 { margin-bottom: 0.5rem; }
.cart-empty p { margin-bottom: 1.75rem; }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-form-group { margin-bottom: 1.4rem; }
.contact-form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.45rem;
}
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text);
  background: white;
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,138,67,0.08);
}
.contact-form-group textarea { resize: vertical; min-height: 150px; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.72);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.2rem;
}
.footer-brand .logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
}
.footer-bottom a { color: rgba(255,255,255,0.32); }
.footer-bottom a:hover { color: var(--gold-light); }
.nc-notice {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  padding: 1rem 0 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
