/* ============================================================
   ROSEWORK — STYLE.CSS
   ============================================================
   Table of contents:
   1.  CSS Variables  (colors, fonts, spacing — edit these!)
   2.  Reset & base
   3.  Typography
   4.  Layout utilities
   5.  Navigation
   6.  Mobile nav drawer
   7.  Hero section
   8.  Category strip
   9.  Section headers
   10. Product grid & cards
   11. About strip
   12. Custom orders banner
   13. Newsletter section
   14. Footer
   15. Cart sidebar (Snipcart overrides)
   16. Badges & tags
   17. Buttons
   18. Responsive — tablet (≤900px)
   19. Responsive — mobile (≤600px)
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES
   Change colors, fonts, and spacing here — everything else
   inherits from these values automatically.
   ============================================================ */

:root {
  /* --- Brand colors --- */
  --color-cream:       #fdf8f2;   /* Page background */
  --color-ink:         #1a1818;   /* Primary text, headings */
  --color-orange:      #c84e20;   /* Primary CTA, accent */
  --color-orange-light:#f5ddd0;   /* Orange tint for cards/backgrounds */
  --color-purple:      #CBCBFF;   /* Tags, links, secondary accent */
  --color-purple-dark: #6258c0;   /* Text on purple backgrounds */
  --color-purple-mid:  #9898d8;   /* Hover states, borders */
  --color-green-dark:  #1F3822;   /* Dark accent — headings, badges */
  --color-green-light: #C2D34E;   /* Chartreuse — use sparingly: "new" badges, hover dots */
  --color-green-tint:  #e4eecc;   /* Very light green for plant-category card bgs */
  --color-border:      #e8e2d8;   /* Subtle divider lines */
  --color-muted:       #9a948a;   /* Placeholder text, secondary labels */

  /* --- Logo color --- */
  --color-logo:        #c84e20;   /* Orange in the nav — change here to update everywhere */

  /* --- Typography --- */
  --font-display: 'Fraunces', Georgia, serif;   /* Headlines */
  --font-body:    'DM Sans', system-ui, sans-serif; /* Body, labels, UI */

  /* --- Spacing scale --- */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   48px;
  --space-2xl:  80px;

  /* --- Layout --- */
  --max-width:  1200px;
  --nav-height: 64px;

  /* --- Radius --- */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:100px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-cream);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  color: var(--color-ink);
}

h1 { font-size: clamp(48px, 8vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: 18px; }

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
}

.text-muted {
  color: var(--color-muted);
}

.text-orange { color: var(--color-orange); }
.text-green  { color: var(--color-green-dark); }


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--tight {
  padding: var(--space-xl) 0;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo mark + wordmark */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 52px;
  height: 52px;
  color: var(--color-logo); /* Controls SVG logo color */
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

/* Desktop links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* Right side: cart + mobile toggle */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  transition: border-color 0.15s, color 0.15s;
  /* Snipcart triggers the cart when this button is clicked */
}

.nav__cart-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.nav__cart-icon {
  width: 18px;
  height: 18px;
}

.nav__cart-count {
  font-size: 12px;
  background: var(--color-orange);
  color: var(--color-cream);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  /* Hidden when cart is empty — JS toggles this */
}

.nav__cart-count.hidden {
  display: none;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hamburger animation when open */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   6. MOBILE NAV DRAWER
   ============================================================ */

.nav__drawer {
  display: none; /* JS sets display: flex when open */
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-cream);
  z-index: 99;
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.nav__drawer-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__drawer-link:hover {
  color: var(--color-orange);
}


/* ============================================================
   7. HERO SECTION
   ============================================================ */

.hero {
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-lg);
  color: var(--color-ink);
}

.hero__sub {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 400px;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

/* Photo collage on the right side of the hero */
.hero__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}

.hero__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-orange-light); /* Fallback if image missing */
}

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

/* Make the first image taller and span rows */
.hero__img--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* New badge overlaid on hero image */
.hero__new-badge {
  position: relative;
}

.hero__new-badge::after {
  content: 'New';
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ============================================================
   8. CATEGORY STRIP
   ============================================================ */

.categories {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.categories__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbar on Firefox */
  -ms-overflow-style: none;
}

.categories__inner::-webkit-scrollbar {
  display: none; /* Hide scrollbar on Chrome/Safari */
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink);
  background: none;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
  text-decoration: none;
}

.category-pill:hover,
.category-pill.is-active {
  background: var(--color-purple);
  color: var(--color-purple-dark);
  border-color: var(--color-purple);
}

.category-pill.is-active {
  font-weight: 700;
}


/* ============================================================
   9. SECTION HEADERS
   ============================================================ */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--color-ink);
}

.section-header__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s;
}

.section-header__link:hover {
  opacity: 0.75;
}


/* ============================================================
   10. PRODUCT GRID & CARDS
   ============================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 24, 24, 0.08);
}

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-orange-light); /* Fallback */
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

/* Badge stack — positioned top-left of the card image */
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Individual badge pill */
.product-card__badge {
  display: inline-block;
  background: var(--color-green-light);
  color: var(--color-green-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* "Sold out" badge */
.product-card__badge--soldout {
  background: var(--color-border);
  color: var(--color-muted);
}

/* "Made to order" badge — stacks below New badge if both present */
.product-card__badge--madetoorder {
  background: var(--color-purple);
  color: var(--color-purple-dark);
}

.product-card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--color-ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-card__category {
  font-size: 11px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.product-card__price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  margin-top: auto;
  padding-top: var(--space-sm);
}

/* Image and name are clickable links to the product detail page */
.product-card__image-link {
  display: block;
  text-decoration: none;
}

.product-card__name-link {
  text-decoration: none;
  color: inherit;
}

.product-card__name-link:hover .product-card__name {
  color: var(--color-orange);
}

.product-card__add-btn {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: var(--color-ink);
  color: var(--color-cream);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s;
  /* Snipcart class is added via JS */
}

.product-card__add-btn:hover {
  background: var(--color-orange);
}

.product-card__add-btn:disabled {
  background: var(--color-border);
  color: var(--color-muted);
  cursor: not-allowed;
}


/* ============================================================
   11. ABOUT STRIP
   ============================================================ */

.about-strip {
  background: var(--color-green-dark);
  color: var(--color-cream);
  padding: var(--space-2xl) 0;
}

.about-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-strip__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-light);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.about-strip__title {
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
}

.about-strip__text {
  color: rgba(253, 248, 242, 0.75);
  font-size: 17px;
  margin-bottom: var(--space-xl);
}

.about-strip__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: rgba(194, 211, 78, 0.15);
}

.about-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   12. CUSTOM ORDERS BANNER
   ============================================================ */

.custom-orders {
  background: var(--color-purple);
  padding: var(--space-xl) 0;
}

.custom-orders__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.custom-orders__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--color-purple-dark);
  margin-bottom: 6px;
}

.custom-orders__text {
  color: var(--color-purple-dark);
  opacity: 0.75;
  font-size: 15px;
}


/* ============================================================
   13. NEWSLETTER SECTION
   ============================================================ */

.newsletter {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.newsletter__eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-orange);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.newsletter__title {
  margin-bottom: var(--space-md);
}

.newsletter__sub {
  color: var(--color-muted);
  max-width: 440px;
  margin: 0 auto var(--space-xl);
}

.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  background: white;
  outline: none;
  transition: border-color 0.15s;
}

.newsletter__input:focus {
  border-color: var(--color-purple-mid);
}

.newsletter__input::placeholder {
  color: var(--color-muted);
}


/* ============================================================
   14. FOOTER
   ============================================================ */

.footer {
  background: var(--color-ink);
  color: var(--color-cream);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(253, 248, 242, 0.1);
  margin-bottom: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.footer__brand-sub {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.5);
  line-height: 1.6;
  max-width: 260px;
}

.footer__heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.4);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__link:hover {
  color: var(--color-cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: rgba(253, 248, 242, 0.35);
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  font-size: 13px;
  color: rgba(253, 248, 242, 0.5);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__social-link:hover {
  color: var(--color-green-light);
}


/* ============================================================
   15. SNIPCART CART OVERRIDES
   These make the Snipcart cart panel match your brand.
   You shouldn't need to edit these.
   ============================================================ */

#snipcart {
  --color-default: var(--color-ink);
  --color-alt: var(--color-muted);
  --color-link: var(--color-orange);
  --color-success: #3a7a3a;
  --color-error: #c82020;
  --bgColor-default: var(--color-cream);
  --bgColor-alt: white;
  --bgColor-checked: var(--color-orange);
  --borderColor-default: var(--color-border);
  --borderColor-alt: var(--color-purple-mid);
  --borderRadius-none: 0;
  --borderRadius-sm: var(--radius-sm);
  --borderRadius-md: var(--radius-md);
  --borderRadius-lg: var(--radius-pill);
  --shadow-default: 0 8px 32px rgba(26, 24, 24, 0.12);
  --fontFamily-default: 'DM Sans', system-ui, sans-serif;
  --fontFamily-display: 'Fraunces', Georgia, serif;
}


/* ============================================================
   16. BADGES & TAGS
   ============================================================ */

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--new {
  background: var(--color-green-light);
  color: var(--color-green-dark);
}

.badge--custom {
  background: var(--color-purple);
  color: var(--color-purple-dark);
}

.badge--sold-out {
  background: var(--color-border);
  color: var(--color-muted);
}

.badge--made-to-order {
  background: var(--color-purple);
  color: var(--color-purple-dark);
}


/* ============================================================
   17. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

/* Primary: orange fill */
.btn--primary {
  background: var(--color-orange);
  color: var(--color-cream);
  border: 2px solid var(--color-orange);
}

.btn--primary:hover {
  background: #b03e14;
  border-color: #b03e14;
}

/* Secondary: outlined */
.btn--secondary {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-ink);
}

.btn--secondary:hover {
  background: var(--color-ink);
  color: var(--color-cream);
}

/* Ghost: outlined in cream (for dark backgrounds) */
.btn--ghost {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
}

.btn--ghost:hover {
  background: var(--color-cream);
  color: var(--color-ink);
}

/* Small button variant */
.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}


/* ============================================================
   18. RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */

@media (max-width: 900px) {

  /* Nav: hide text links, show hamburger */
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }

  /* Hero: stack vertically */
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__images {
    order: -1; /* Images above text on tablet */
    max-height: 340px;
  }

  /* About: stack vertically */
  .about-strip__inner {
    grid-template-columns: 1fr;
  }
  .about-strip__image {
    aspect-ratio: 16/9;
    order: -1;
  }

  /* Product grid: 3 columns */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer: 2 columns */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}


/* ============================================================
   19. RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */

@media (max-width: 600px) {

  :root {
    --space-xl:  40px;
    --space-2xl: 56px;
  }

  /* Product grid: 2 columns */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Newsletter form: stack */
  .newsletter__form {
    flex-direction: column;
  }

  /* Footer: single column */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Hero images: smaller */
  .hero__images {
    max-height: 260px;
  }

  /* Custom orders: stack */
  .custom-orders__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Section header: stack on mobile */
  .section-header {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
  }
}
