/* ===== Categories Filter ===== */
.categories {
  background: var(--cream);
  padding: 1.5rem 0;
  position: sticky;
  top: 64px;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.categories__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pill {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.pill:hover { border-color: var(--sand); color: var(--brown-dark); }
.pill--active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* ===== Catalog Wrap ===== */
.catalog-wrap { padding: 3rem 0 5rem; }

/* ===== Delivery ===== */
.delivery-section {
  background: var(--warm-white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.delivery-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
}
.delivery-card__icon { font-size: 32px; margin-bottom: 1rem; }
.delivery-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 0.6rem;
  color: var(--brown-dark);
}
.delivery-card p { font-size: 14px; color: var(--warm-gray); line-height: 1.6; }

/* ===== Footer ===== */
.footer { background: var(--brown-dark); color: var(--cream); padding: 4rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__tagline {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--sand);
}
.footer__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.footer p { font-size: 14px; line-height: 1.7; color: rgba(247,242,234,.72); }
.footer a { border-bottom: 1px solid rgba(247,242,234,.25); transition: color .15s; }
.footer a:hover { color: var(--sand); border-color: var(--sand); }
.footer__muted { font-size: 12px; color: var(--warm-gray); margin-top: 0.3rem; }
.footer__copy {
  border-top: 1px solid rgba(247,242,234,.1);
  padding-top: 1.5rem;
  font-size: 12px;
  color: var(--warm-gray);
}
