/* ============================================================
   Refill & Replenish — Douglas-inspired beauty retailer
   Chassis: dark header + category nav bar + full-width hero
            banner + product grid + dark footer
   Palette: black #0D0D0D, white #FFFFFF, rose #D4538A,
            soft-pink #F8E8EE, warm-grey #F5F5F5, gold #B8965A
   Fonts:   Inter (all) + Cormorant Garamond (brand wordmark)
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: #1A1A1A;
}
h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h3 { font-size: 1rem; font-weight: 500; }
p { color: #555; }

/* ── Announcement Strip (Douglas-style top bar) ── */
.announcement-strip {
  background: #0D0D0D;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 9px 16px;
  text-transform: uppercase;
}
.announcement-strip a { color: #D4538A; text-decoration: underline; text-underline-offset: 2px; }

/* ── Site Header (dark, Douglas-style) ── */
.site-header {
  background: #1A1A1A;
  position: sticky;
  top: 0;
  z-index: 500;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.site-logo span { color: #D4538A; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #ccc;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links .nav-cart { position: relative; }
.cart-count {
  display: none;
  background: #D4538A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 2px;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ── Category Nav Bar (Douglas sub-nav) ── */
.cat-nav {
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
  overflow-x: auto;
}
.cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 0;
}
.cat-nav a {
  display: block;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.cat-nav a:hover, .cat-nav a.active {
  color: #D4538A;
  border-bottom-color: #D4538A;
}

/* ── Hero — full-width banner (Douglas-style) ── */
.hero-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F8E8EE;
}
.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,.72) 0%, rgba(13,13,13,.35) 50%, transparent 100%);
}
.hero-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4538A;
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  max-width: 480px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.6;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: #D4538A;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
  text-align: center;
  border: none;
}
.btn-primary:hover { background: #B8436F; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1A1A1A;
  padding: 13px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid #1A1A1A;
  transition: background .2s, color .2s;
  text-align: center;
}
.btn-secondary:hover { background: #1A1A1A; color: #fff; }
.btn-block { display: block; width: 100%; }
.btn-add {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s;
  margin-top: auto;
}
.btn-add:hover { background: #D4538A; }

/* ── Section wrapper ── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px;
}
.section-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.section-subtitle {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

/* ── Featured product cards (4-col Douglas grid) ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.featured-card {
  background: #fff;
  overflow: hidden;
  transition: transform .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.featured-card:hover { transform: translateY(-3px); }
.featured-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F5F5F5;
}
.featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-card:hover .featured-img-wrap img { transform: scale(1.04); }
.featured-info { padding: 14px 4px; flex: 1; display: flex; flex-direction: column; }
.featured-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4538A;
  margin-bottom: 4px;
}
.featured-name {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.35;
}
.featured-short { font-size: 0.8rem; color: #888; margin-bottom: auto; padding-bottom: 8px; }
.featured-price { font-size: 1rem; font-weight: 700; color: #1A1A1A; }

/* ── Promo banner strip (Douglas mid-page) ── */
.promo-banner {
  background: #F8E8EE;
  padding: 56px 28px;
  text-align: center;
}
.promo-banner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.promo-banner p { color: #555; font-size: 0.95rem; margin-bottom: 24px; }

/* ── Testimonial banner ── */
.testimonial-banner {
  background: #FAFAFA;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 56px 28px;
  text-align: center;
}
.testimonial-banner blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-style: italic;
  color: #1A1A1A;
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.6;
}
.testimonial-banner cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4538A;
}

/* ── Category tiles (Douglas rectangular) ── */
.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Shop page ── */
.shop-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 28px 64px;
}
.shop-header { margin-bottom: 28px; }
.shop-header h1 { margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }

.category-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-pill {
  padding: 8px 20px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #DDD;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.cat-pill.active, .cat-pill:hover { background: #1A1A1A; border-color: #1A1A1A; color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.product-card {
  background: #fff;
  overflow: hidden;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-2px); }
.product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F5F5F5;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.03); }
.product-info { padding: 14px 4px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4538A;
  margin-bottom: 4px;
}
.product-name { font-size: 0.9rem; font-weight: 500; margin-bottom: 8px; line-height: 1.35; }
.product-price { font-weight: 700; color: #1A1A1A; margin-bottom: 12px; font-size: 0.95rem; }

/* ── Product Detail Page ── */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 64px;
}
.pdp-img-col img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #F5F5F5; }
.pdp-info-col { display: flex; flex-direction: column; justify-content: center; }
.pdp-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D4538A;
  margin-bottom: 10px;
}
.pdp-name { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; margin-bottom: 12px; }
.pdp-price { font-size: 1.4rem; font-weight: 700; color: #1A1A1A; margin-bottom: 18px; }
.pdp-short { font-size: 0.95rem; color: #555; margin-bottom: 18px; }
.pdp-bullets { padding-left: 18px; list-style: disc; margin-bottom: 28px; }
.pdp-bullets li { margin-bottom: 6px; color: #555; font-size: 0.9rem; }
.pdp-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pdp-qty-row label { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.pdp-qty-row input { width: 64px; padding: 10px; border: 1.5px solid #DDD; text-align: center; font-size: 15px; }
.pdp-add-btn { width: 100%; padding: 16px; font-size: 14px; margin-bottom: 14px; }
.pdp-ship-note { font-size: 12px; color: #999; }
.related-section { max-width: 1100px; margin: 0 auto; padding: 0 28px 64px; }

/* ── Cart page ── */
.cart-page { max-width: 1000px; margin: 0 auto; padding: 40px 28px 64px; }
.cart-page h1 { margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-container { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #E8E8E8;
}
.cart-thumb { width: 72px; height: 72px; object-fit: cover; }
.cart-row-info a { font-size: 0.9rem; font-weight: 500; }
.cart-row-price { font-size: 0.82rem; color: #999; margin-top: 4px; }
.cart-row-qty { display: flex; align-items: center; gap: 8px; }
.qty-minus, .qty-plus {
  width: 30px;
  height: 30px;
  border: 1.5px solid #DDD;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.qty-minus:hover, .qty-plus:hover { background: #1A1A1A; border-color: #1A1A1A; color: #fff; }
.cart-row-total { font-weight: 700; min-width: 60px; text-align: right; }
.cart-remove { color: #999; font-size: 14px; padding: 4px; transition: color .2s; }
.cart-remove:hover { color: #D4538A; }
.cart-summary {
  background: #FAFAFA;
  padding: 28px;
  border: 1px solid #E8E8E8;
  align-self: start;
  position: sticky;
  top: 80px;
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; }
.summary-row + .summary-row { border-top: 1px solid #E8E8E8; }
.summary-total { font-weight: 700; font-size: 1.05rem; border-top: 2px solid #1A1A1A !important; padding-top: 12px !important; margin-top: 4px; }
.cart-summary .btn-primary { margin-top: 20px; margin-bottom: 10px; }
.cart-empty { text-align: center; padding: 80px 24px; }
.cart-empty p { font-size: 1rem; margin-bottom: 24px; }

/* ── Checkout page ── */
.checkout-page { max-width: 1100px; margin: 0 auto; padding: 40px 28px 64px; }
.checkout-page h1 { margin-bottom: 28px; text-transform: uppercase; letter-spacing: 0.04em; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.checkout-form .form-group { margin-bottom: 18px; }
.checkout-form label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.checkout-form input, .checkout-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DDD;
  font-size: 14px;
  transition: border-color .2s;
}
.checkout-form input:focus, .checkout-form select:focus { outline: none; border-color: #D4538A; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-summary {
  background: #FAFAFA;
  padding: 28px;
  border: 1px solid #E8E8E8;
  align-self: start;
  position: sticky;
  top: 80px;
}
.co-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #E8E8E8; }
.co-thumb { width: 48px; height: 48px; object-fit: cover; }
.co-item-name { flex: 1; font-size: 0.85rem; }
.co-item-price { font-weight: 700; font-size: 0.85rem; }
.co-totals { margin-top: 12px; }
.checkout-summary h2 { font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Footer (Douglas dark style) ── */
.site-footer {
  background: #1A1A1A;
  color: #ccc;
  padding: 56px 28px 28px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
}
.footer-brand .footer-logo span { color: #D4538A; }
.footer-brand p { font-size: 0.85rem; color: #888; max-width: 280px; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: #888; font-size: 16px; transition: color .2s; }
.footer-social a:hover { color: #D4538A; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  color: #fff;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: #888; transition: color .2s; }
.footer-col ul li a:hover { color: #D4538A; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: #666; }
.footer-bottom a { color: #666; text-decoration: underline; }

/* ── Inner page hero ── */
.page-hero {
  background: #F5F5F5;
  padding: 40px 28px;
  text-align: center;
  border-bottom: 1px solid #E8E8E8;
}
.page-hero h1 { margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.page-hero p { color: #888; font-size: 0.9rem; }
.breadcrumb { font-size: 12px; color: #999; margin-bottom: 10px; letter-spacing: 0.02em; }
.breadcrumb a { color: #D4538A; }

/* ── Prose content pages ── */
.prose-page { max-width: 720px; margin: 0 auto; padding: 48px 28px 64px; }
.prose-page h2 { margin: 32px 0 12px; font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.03em; }
.prose-page p { margin-bottom: 14px; font-size: 0.9rem; line-height: 1.75; }
.prose-page ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.prose-page ul li { margin-bottom: 6px; font-size: 0.9rem; }

/* ── Forms ── */
.contact-page { max-width: 580px; margin: 0 auto; padding: 48px 28px 64px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; color: #1A1A1A; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #DDD;
  font-size: 14px;
  background: #fff;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #D4538A; }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Info blocks ── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  background: #FAFAFA;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #E8E8E8;
}
.info-card .info-icon { font-size: 1.8rem; margin-bottom: 14px; }
.info-card h3 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.info-card p { font-size: 0.85rem; color: #777; }

/* ── Account stub ── */
.account-page { max-width: 480px; margin: 0 auto; padding: 64px 28px; text-align: center; }
.account-page h1 { margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.account-page p { margin-bottom: 28px; }

/* ── Admin preview ── */
.admin-bar {
  background: #0D0D0D;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-banner { min-height: 380px; }
  .hero-banner-content { padding: 48px 28px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-container { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-grid-3 { grid-template-columns: 1fr 1fr; }
  .cat-nav-inner { padding: 0 16px; }
}
@media (max-width: 640px) {
  .mobile-menu-btn { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #1A1A1A;
    padding: 12px 20px;
    gap: 2px;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .header-inner { position: relative; }
  .featured-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .category-strip { grid-template-columns: 1fr 1fr; }
  .product-grid-3 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .form-row { grid-template-columns: 1fr; }
  .cat-nav { display: none; }
  .hero-title { font-size: 1.75rem; }
}
