/*
Theme Name: ShoeUpTrend
Theme URI: https://shoeuptrend.com
Description: Fashion affiliate theme for Amazon shoe curation — deep navy + champagne palette, editorial magazine layout. Internal class names (.dress-card, .dress-grid, etc.) kept from the dress-site lineage to minimize churn; they are CSS handles only and never user-visible.
Version: 3.0
*/

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

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  /* Variable names retain "peach"/"cream" from the dress-theme lineage so the
     ~80 downstream rules don't need rewiring. Values are now navy + champagne. */
  --peach: #d4c4a8;       /* champagne — soft accent (formerly blush) */
  --peach-dark: #2a3447;  /* deep navy — primary accent (formerly camel) */
  --peach-pale: #eef0f4;  /* pale cool tint (formerly pale peach) */
  --cream: #f9f5f2;
  --cream-dark: #f0e8e0;
  --white: #ffffff;
  --text: #313131;
  --text-mid: #525151;
  --text-light: #888480;
  --border: #e8ddd5;
  --black: #1a1a1a;
  --font: 'Open Sans', Arial, Helvetica, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;
  --color-accent-strong: #2a3447;
  --color-text-strong: #1c2a37;
  --color-bg-alt: #eaedf2;
  --max-w: 1200px;
  --radius-pill: 9999px;
  --radius-card: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.12);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* Logo */
.site-logo a {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-block;
}

.site-logo span {
  color: var(--peach-dark);
}

/* Nav — Playfair Display, editorial style (ref: thegirlslist.com) */
.site-nav ul {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav > ul > li > a {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: #000;
  padding: 0 28px;
  height: 84px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li.open > a {
  color: var(--color-accent-strong);
}

.site-nav .nav-accent > a {
  color: var(--color-accent-strong);
}

.site-nav .caret {
  font-size: 0.7em;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

/* Dropdown (single column under "The Lists") */
.site-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--color-bg-alt);
  padding: 6px 0;
  flex-direction: column;
  list-style: none;
  z-index: 200;
}

.site-nav .has-dropdown:hover > .dropdown,
.site-nav .has-dropdown.open > .dropdown {
  display: flex;
}

.site-nav .dropdown li a {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text-strong);
  padding: 12px 24px;
  display: block;
  transition: background-color 0.15s, color 0.15s;
}

.site-nav .dropdown li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent-strong);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  /* 44×44 minimum tap target — fixes intermittent mobile taps */
  width: 44px;
  height: 44px;
  padding: 0;
  /* Ensure mobile browsers treat this as a tap, not a gesture */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(207, 148, 96, 0.2);
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  /* Spans don't capture clicks — taps always go to the button itself */
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CATEGORY NAV
═══════════════════════════════════════════════════════ */
.category-nav {
  background: white;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.category-nav ul,
.category-nav__list {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  white-space: nowrap;
  list-style: none;
  max-width: var(--max-w);
  margin: 0 auto;
}

.category-nav__item a,
.category-nav li a {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-light);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.category-nav__item a:hover,
.category-nav li a:hover,
.category-nav__item.active a,
.category-nav li.active a {
  background: var(--peach-dark);
  color: white;
  border-color: var(--peach-dark);
}

/* ═══════════════════════════════════════════════════════
   STYLE QUIZ (.sq)
═══════════════════════════════════════════════════════ */
.sq {
  background: var(--black);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}

.sq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
  pointer-events: none;
}

/* Step dots */
.sq__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
}
.sq__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.sq__dot--active { background: var(--peach); width: 24px; border-radius: 3px; }
.sq__dot--done   { background: rgba(255,255,255,0.5); }

/* Step wrapper */
.sq__step {
  display: none;
  animation: sqFadeIn 0.4s ease;
}
.sq__step--active { display: block; }

@keyframes sqFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Question area */
.sq__question-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.sq__eyebrow {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}

.sq__question {
  font-family: var(--font);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

.sq__question em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--peach);
}

/* Options grid */
.sq__options {
  display: grid;
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.sq__options--6 { grid-template-columns: repeat(6, 1fr); }
.sq__options--5 { grid-template-columns: repeat(5, 1fr); }
.sq__options--4 { grid-template-columns: repeat(4, 1fr); }

/* Option card */
.sq__opt {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card);
  padding: 36px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.sq__opt:hover {
  background: rgba(233,181,161,0.15);
  border-color: var(--peach);
}

.sq__opt--selected {
  background: var(--peach-dark) !important;
  border-color: var(--peach-dark) !important;
}

.sq__opt--selected .sq__opt-label,
.sq__opt--selected .sq__opt-sub { color: var(--white) !important; }

.sq__opt--dimmed { display: none !important; }

.sq__opt-label {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.sq__opt-sub {
  font-family: var(--font);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* Back button */
.sq__back {
  display: block;
  margin: 28px auto 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color 0.2s;
}
.sq__back:hover { color: rgba(255,255,255,0.7); }

/* Skip link */
.sq__skip {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-family: var(--font);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.sq__skip:hover { color: rgba(255,255,255,0.6); }

/* Result step */
.sq__step--result .sq__question-wrap { margin-bottom: 36px; }
.sq__result-sub {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.sq__result-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  border-radius: var(--radius-pill);
  background: var(--peach-dark);
  color: var(--white);
  border: none;
  padding: 18px 56px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.sq__result-btn:hover { background: var(--peach); }

.sq__reset {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color 0.2s;
}
.sq__reset:hover { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════════════════════
   SITE HERO
═══════════════════════════════════════════════════════ */
.site-hero {
  background: white;
  padding: 80px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.site-hero__eyebrow {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 16px;
}

.site-hero__title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.05;
}

.site-hero__title span {
  color: var(--peach-dark);
}

.site-hero__tagline {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   CATEGORY TILES
═══════════════════════════════════════════════════════ */
.cat-tiles {
  background: var(--cream);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.cat-tiles__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.cat-tile {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}

.cat-tile:hover {
  border-color: var(--peach-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.cat-tile__icon {
  display: block;
  margin: 0 auto 14px;
  width: 100%;
  aspect-ratio: 3/4;
  line-height: 0;
  overflow: hidden;
  background: var(--cream-dark);
}
.cat-tile__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.4s ease;
}
.cat-tile:hover .cat-tile__icon img {
  transform: scale(1.05);
}

.cat-tile {
  padding: 0 0 20px;
  border: 1px solid var(--border);
  background: #fff;
}

.cat-tile__name {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  display: block;
  padding: 0 12px;
}

.cat-tile__count {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════ */
.trust-strip {
  background: white;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item__icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.trust-item__title {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text);
}

.trust-item__desc {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════ */
.section-header {
  padding: 56px 0 32px;
  text-align: center;
}

.section-header__eyebrow {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 10px;
}

.section-header__title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: var(--text);
}

.section-header__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--peach-dark);
}

.section-header__desc {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn--primary {
  background: var(--peach-dark);
  color: white;
}

.btn--primary:hover {
  background: var(--peach);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--peach-dark);
  color: var(--peach-dark);
}

.btn--amazon {
  background: var(--peach-dark);
  color: white;
  border-radius: var(--radius-pill);
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.btn--amazon:hover {
  background: var(--peach);
}

/* ═══════════════════════════════════════════════════════
   SHOE GRID (class names .dress-* retained from lineage)
═══════════════════════════════════════════════════════ */
.section--dresses {
  padding: 80px 0;
  background: var(--cream);
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dress-card:nth-child(7n+1) {
  grid-column: span 2;
}

/* Shoe Card (class .dress-card retained from lineage) */
.dress-card {
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.25s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.dress-card__image-wrap {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.dress-card:nth-child(7n+1) .dress-card__image-wrap {
  aspect-ratio: 16/9;
}

.dress-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.dress-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--peach-dark);
  color: white;
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.dress-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.dress-card__wishlist.saved,
.dress-card__wishlist:hover {
  color: var(--peach-dark);
}

.dress-card__body {
  padding: 16px 18px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dress-card__brand {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 6px;
}

.dress-card__title a {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: block;
  transition: color 0.2s;
}

.dress-card__title a:hover {
  color: var(--peach-dark);
}

.dress-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.dress-card__stars {
  color: var(--peach-dark);
  font-size: 0.75rem;
}

.dress-card__rating {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.dress-card__reviews {
  font-family: var(--font);
  font-size: 0.6875rem;
  color: var(--text-light);
}

.dress-card__occasion {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 6px;
}

.dress-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 18px;
}

.dress-card__price {
  font-family: var(--font);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--peach-dark);
}

.dress-card__shop-btn {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--peach-dark);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.dress-card__shop-btn:hover {
  background: var(--peach);
  color: white;
}

/* ═══════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════ */
.pagination {
  text-align: center;
  padding: 48px 0;
}

.pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.pagination ul li a,
.pagination ul li span {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: all 0.2s;
}

.pagination ul li a:hover,
.pagination ul li span.current,
.pagination .current {
  background: var(--peach-dark);
  color: white;
  border-color: var(--peach-dark);
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════ */
.section--newsletter {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
}

.newsletter__eyebrow {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 12px;
}

.newsletter__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 10px;
}

.newsletter__subtitle {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.newsletter__form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.newsletter__input {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font);
  font-size: 0.9375rem;
  outline: none;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter__submit {
  background: var(--peach-dark);
  color: white;
  border: none;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter__submit:hover {
  background: var(--peach);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-logo a {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  display: block;
}

.footer-logo span {
  color: var(--peach);
}

.footer-brand__desc {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--peach-dark);
  color: white;
}

.footer-col__title {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 20px;
  display: block;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-bottom__copy {
  font-family: var(--font);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom__disclosure {
  font-family: var(--font);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  text-align: right;
}

/* ═══════════════════════════════════════════════════════
   SINGLE POST — SHOE DETAIL
═══════════════════════════════════════════════════════ */
.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.post-hero__image {
  overflow: hidden;
  background: var(--cream-dark);
}

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

.post-hero__content {
  padding: 60px 48px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-hero__brand {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin-bottom: 12px;
}

.post-hero__title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.post-hero__price {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--peach-dark);
  margin-bottom: 20px;
}

.post-hero__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.post-hero__stars {
  color: var(--peach-dark);
}

.post-hero__rating-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.post-hero__review-count {
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--text-light);
}

.post-hero__occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.occasion-tag {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  color: var(--text-light);
}

.post-hero__affiliate-btn {
  margin-bottom: 12px;
}

.post-hero__disclosure {
  font-family: var(--font);
  font-size: 0.6875rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Layout with sidebar */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
}

.post-body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.post-body p {
  margin-bottom: 20px;
}

.post-body h2 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 20px;
  letter-spacing: -0.02em;
}

/* Style scan */
.style-scan {
  margin-top: 40px;
  border-top: 2px solid var(--peach-dark);
  padding-top: 32px;
}

.style-scan__title {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.style-scan__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.style-scan__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
}

.style-scan__label {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 90px;
}

.style-scan__value {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
}

/* Sidebar */
.sidebar {
  padding-top: 0;
}

.sidebar-widget {
  border-top: 2px solid var(--peach-dark);
  padding-top: 20px;
  margin-bottom: 40px;
}

.sidebar-widget__title {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.sidebar-related-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.sidebar-related-item__img {
  flex-shrink: 0;
  width: 60px;
  height: 75px;
  overflow: hidden;
  background: var(--cream-dark);
  display: block;
  border-radius: 6px;
}

.sidebar-related-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-related-item__title {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.sidebar-related-item__title:hover { color: var(--peach-dark); }

.sidebar-related-item__price {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--peach-dark);
  font-weight: 800;
}

/* Post CTA Block */
.post-cta-block {
  background: var(--peach-dark);
  color: white;
  border-radius: var(--radius-card);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.post-cta-block h3 {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.post-cta-block p {
  font-family: var(--font);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════
   CATEGORY PAGE
═══════════════════════════════════════════════════════ */
.category-hero {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.filter-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 70px;
  z-index: 80;
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.filter-bar__label {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.filter-btn {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 6px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: white;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--peach-dark);
  color: white;
  border-color: var(--peach-dark);
}

/* ═══════════════════════════════════════════════════════
   MOSAIC
═══════════════════════════════════════════════════════ */
.mosaic-hero {
  background: var(--black);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}

.mosaic-img {
  overflow: hidden;
  position: relative;
}

.mosaic-img--tall {
  grid-row: span 2;
}

.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.mosaic-img:hover img {
  transform: scale(1.04);
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.mosaic-img:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-tagline {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

/* ═══════════════════════════════════════════════════════
   NO POSTS
═══════════════════════════════════════════════════════ */
.no-posts {
  text-align: center;
  color: var(--text-light);
  padding: 80px 0;
  font-family: var(--font);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .site-nav, .header-nav-row { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0; background: white; padding: 20px 24px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.08); z-index: 99; }
  .site-nav.open ul { flex-direction: column; align-items: flex-start; width: 100%; }
  .site-nav.open > ul > li { width: 100%; }
  .site-nav.open > ul > li > a { height: auto; padding: 14px 0; border-bottom: 1px solid var(--border); width: 100%; font-size: 1.25rem; }
  .site-nav.open .dropdown { position: static; display: none; box-shadow: none; border: 0; padding: 4px 0 8px 16px; background: transparent; }
  .site-nav.open .has-dropdown.open .dropdown { display: flex; }
  .site-nav.open .dropdown li a { padding: 10px 0; border-bottom: 0; }
  .nav-toggle { display: flex; }
  .dress-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dress-card:nth-child(7n+1) { grid-column: span 1; }
  .dress-card:nth-child(7n+1) .dress-card__image-wrap { aspect-ratio: 3/4; }
  .post-hero { grid-template-columns: 1fr; }
  .post-hero__content { padding: 36px 24px; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom__disclosure { text-align: center; }
  .cat-tiles__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .mosaic-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .mosaic-img--tall { grid-row: span 1; }
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .sq__options--6 { grid-template-columns: repeat(3, 1fr); }
  .sq__options--5 { grid-template-columns: repeat(3, 1fr); }
  .sq__options--4 { grid-template-columns: repeat(2, 1fr); }
  .newsletter__form { flex-direction: column; border-radius: var(--radius-card); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .dress-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-tiles__grid { grid-template-columns: repeat(2, 1fr); }
  .sq__options--6, .sq__options--5, .sq__options--4 { grid-template-columns: repeat(2, 1fr); }
  .style-scan__grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════════════════════════
   POST BODY EDITORIAL STYLES — applies to single product, review, and gift
   guide posts. Mirrors the in-pipeline preview CSS so WP posts render with
   the same magazine layout (Playfair Display + Cormorant Garamond + Open Sans
   + terracotta accents). All rules scoped under .dut-post-content so they
   don't override the rest of the theme.
   ════════════════════════════════════════════════════════════════════════════ */

.dut-post-content { font-family: 'Open Sans', Arial, sans-serif;
                    color: #525151; line-height: 1.75; font-size: 16px;
                    max-width: 880px; margin: 40px auto; padding: 0 24px; }

.dut-post-content h1 { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
     font-weight: 600; font-size: 3.25rem; line-height: 1.05;
     letter-spacing: -0.015em; color: #1c2a37; margin: 0 0 14px; }

.dut-post-content h2 { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
     font-weight: 500; font-style: italic; font-size: 2.25rem;
     line-height: 1.2; color: #2a3447; letter-spacing: -0.015em;
     margin: 60px 0 18px; position: relative; border: none; padding: 0; }
.dut-post-content h2::before { content: ""; display: block; width: 44px; height: 2px;
     background: #2a3447; margin-bottom: 14px; }

.dut-post-content h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600;
     font-size: 1.125rem; line-height: 1.3; color: #1c2a37;
     letter-spacing: 0.02em; text-transform: uppercase; margin: 32px 0 10px; }

.dut-post-content p.eyebrow { font-family: 'Open Sans', sans-serif; font-weight: 700;
     font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
     color: #2a3447; margin: 0 0 6px; }

.dut-post-content p.kicker { font-family: 'Open Sans', sans-serif; font-weight: 700;
     font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
     color: #2a3447; margin: 0 0 12px; padding-bottom: 4px;
     border-bottom: 1px solid rgba(207,148,96,0.4); display: inline-block; }

.dut-post-content p.lede { font-family: 'Cormorant Garamond', Georgia, serif;
     font-style: italic; font-size: 1.5rem; line-height: 1.45;
     color: #1c2a37; font-weight: 500; margin: 4px 0 24px;
     letter-spacing: -0.005em; }

.dut-post-content p.byline { font-family: 'Open Sans', sans-serif; font-size: 12px;
     color: #888; letter-spacing: 0.04em; font-style: italic;
     margin: 0 0 32px; padding-bottom: 18px; border-bottom: 1px solid #eaedf2; }

.dut-post-content p.lead-paragraph { font-size: 17px; line-height: 1.75; }
.dut-post-content p.lead-paragraph::first-letter {
     font-family: 'Cormorant Garamond', Georgia, serif;
     font-weight: 700; font-style: italic;
     font-size: 4.5rem; line-height: 0.85;
     color: #2a3447; float: left;
     padding: 6px 12px 0 0; margin: 0; }

.dut-post-content p.styling-note { font-family: 'Cormorant Garamond', Georgia, serif;
     font-style: italic; font-size: 1.25rem; line-height: 1.55;
     color: #1c2a37; margin-top: 32px; padding-left: 18px;
     border-left: 2px solid #2a3447; }

.dut-post-content blockquote.pullquote-large { margin: 48px 0; padding: 0;
     background: transparent; border: none;
     font-family: 'Cormorant Garamond', Georgia, serif;
     font-style: italic; font-size: 2rem; line-height: 1.3;
     color: #1c2a37; text-align: center; font-weight: 500; position: relative; }
.dut-post-content blockquote.pullquote-large em { color: #1c2a37; }
.dut-post-content blockquote.pullquote-large::before,
.dut-post-content blockquote.pullquote-large::after {
     content: ""; display: block; width: 60px; height: 1px;
     background: #2a3447; margin: 18px auto; }

.dut-post-content blockquote.pullquote { margin: 32px 0; padding: 16px 20px;
     background: #f0f3f7; border-left: 3px solid #2a3447;
     font-family: 'Cormorant Garamond', Georgia, serif;
     font-style: italic; font-size: 1.375rem; line-height: 1.4; color: #1c2a37; }

.dut-post-content aside.callout { margin: 36px 0; padding: 24px 28px;
     background: #f0f3f7; border: 1px solid rgba(42,52,71,0.3); position: relative; }
.dut-post-content aside.callout::before {
     content: "✦"; position: absolute; top: -10px; left: 24px;
     background: #fff; padding: 0 8px; color: #2a3447; font-size: 14px; }
.dut-post-content aside.callout p.callout__label {
     font-family: 'Open Sans', sans-serif; font-weight: 700;
     font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
     color: #2a3447; margin: 0 0 8px; }
.dut-post-content aside.callout p { font-size: 15px; line-height: 1.65;
     color: #525151; margin: 0; font-style: italic;
     font-family: 'Cormorant Garamond', Georgia, serif; }

.dut-post-content a { color: #2a3447; text-decoration: none;
     border-bottom: 1px solid rgba(207,148,96,0.4); transition: border-color 0.15s; }
.dut-post-content a:hover { border-bottom-color: #2a3447; }
.dut-post-content .cta, .dut-post-content .video-info__cta,
.dut-post-content .quick-cta a { border-bottom: none; }

.dut-post-content p { margin: 14px 0; }
.dut-post-content strong { color: #1c2a37; font-weight: 700; }
.dut-post-content em { color: #525151; }

.dut-post-content ul { margin: 12px 0 18px; padding-left: 22px; list-style: none; }
.dut-post-content ul li { margin: 8px 0; position: relative; padding-left: 18px; }
.dut-post-content ul li::before { content: "—"; position: absolute; left: 0;
     color: #2a3447; font-weight: 600; }

.dut-post-content blockquote { margin: 36px -8px; padding: 20px 28px;
     font-family: 'Playfair Display', Georgia, serif; font-style: italic;
     color: #1c2a37; font-size: 1.375rem; line-height: 1.4;
     background: #f0f3f7; border: none; border-left: 3px solid #2a3447; position: relative; }
.dut-post-content blockquote em { color: #1c2a37; }

.dut-post-content .meta { color: #888; font-size: 13px; letter-spacing: 0.04em;
     text-transform: uppercase; margin-bottom: 32px; font-weight: 600; }

.dut-post-content .image-grid { display: grid; grid-template-columns: 1fr 1fr;
     gap: 10px; margin: 28px 0; }
.dut-post-content .image-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.dut-post-content .inline-img { display: block; max-width: 100%; height: auto; margin: 40px auto; }
.dut-post-content .inline-img--1 { width: 100%; }
.dut-post-content .inline-img--2 { max-width: 65%; }
.dut-post-content .inline-img--3 { max-width: 80%; }
.dut-post-content .inline-img--4 { max-width: 55%; }
.dut-post-content .inline-img--5 { width: 100%; }
.dut-post-content .inline-img--6 { max-width: 70%; }
.dut-post-content img { max-width: 100%; height: auto; }

.dut-post-content .guide-hero { display: block; width: 100%; height: auto;
     aspect-ratio: 16/10; object-fit: cover; margin: 28px 0 36px; }

.dut-post-content .guide-card { display: grid; grid-template-columns: 280px 1fr;
     gap: 32px; margin: 56px 0; padding: 28px 0;
     border-top: 1px solid #eaedf2; position: relative; }
.dut-post-content .guide-card:first-of-type { border-top: 2px solid #2a3447; padding-top: 44px; }
.dut-post-content .guide-card__num { position: absolute; top: -10px; left: 0;
     font-family: 'Cormorant Garamond', Georgia, serif;
     font-style: italic; font-weight: 700; font-size: 3.5rem;
     color: #2a3447; line-height: 1; opacity: 0.85; pointer-events: none; }
.dut-post-content .guide-card__media { padding-top: 28px; }
.dut-post-content .guide-card__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.dut-post-content .guide-card__body { padding-top: 28px; min-width: 0; }
.dut-post-content .guide-card__brand { font-family: 'Open Sans', sans-serif;
     font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
     text-transform: uppercase; color: #888; margin: 0 0 8px; }
.dut-post-content .guide-card__title { font-family: 'Cormorant Garamond', Georgia, serif;
     font-size: 1.875rem; font-weight: 600; line-height: 1.2; margin: 0 0 12px;
     color: #1c2a37; letter-spacing: -0.01em; text-transform: none; }
.dut-post-content .guide-card__title a { color: inherit; text-decoration: none; border: none; }
.dut-post-content .guide-card__title a:hover { color: #2a3447; }
.dut-post-content .guide-card__meta { display: flex; align-items: baseline;
     gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.dut-post-content .card-price { font-family: 'Playfair Display', serif;
     font-size: 1.375rem; font-weight: 600; color: #2a3447; }
.dut-post-content .card-rating { font-size: 13px; color: #888; letter-spacing: 0.02em; }
.dut-post-content .card-rating-num { color: #1c2a37; font-weight: 600; margin-left: 4px; }
.dut-post-content .card-reviews { color: #999; }
.dut-post-content .guide-card__body p { font-size: 15.5px; line-height: 1.7; margin: 12px 0; }
.dut-post-content .guide-card__cta { display: inline-block;
     background: #2a3447; color: white !important; padding: 14px 32px;
     margin: 18px 0 6px; font-family: 'Playfair Display', serif;
     font-size: 1.0625rem; font-weight: 600; letter-spacing: 0.5px;
     text-decoration: none; border: none; transition: background 0.2s; }
.dut-post-content .guide-card__cta:hover { background: #b37a4c; color: white; }
.dut-post-content .guide-card__disclosure { font-size: 11px; color: #aaa;
     margin: 6px 0 0; letter-spacing: 0.02em; }

@media (max-width: 700px) {
  .dut-post-content .guide-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .dut-post-content .guide-card__num { position: static; font-size: 2.5rem; margin-bottom: 8px; }
  .dut-post-content .guide-card__media { padding-top: 0; }
  .dut-post-content .guide-card__body { padding-top: 0; }
}

.dut-post-content .amazon-gallery-section { margin: 60px 0 32px;
     padding-top: 36px; border-top: 1px solid #eaedf2; }
.dut-post-content .amazon-gallery-section h2 { color: #1c2a37; }
.dut-post-content .amazon-gallery-section h2::before { background: #888; }
.dut-post-content p.gallery-intro { font-size: 14px; color: #888;
     margin-bottom: 22px; letter-spacing: 0.02em; }
.dut-post-content .amazon-gallery { display: grid;
     grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 18px 0; }
.dut-post-content .amazon-gallery img { width: 100%; aspect-ratio: 3/4;
     object-fit: cover; display: block; }
@media (max-width: 480px) {
  .dut-post-content .amazon-gallery { grid-template-columns: 1fr; gap: 4px; }
}

.dut-post-content .cta { background: #2a3447; color: white; padding: 16px 40px;
     text-decoration: none; display: inline-block; margin: 28px 0 8px;
     font-family: 'Playfair Display', serif; font-size: 1.125rem;
     letter-spacing: 0.8px; font-weight: 600; transition: background 0.2s;
     border-bottom: none !important; }
.dut-post-content .cta:hover { background: #b37a4c; }
.dut-post-content .disclosure { font-size: 11px; color: #999;
     margin-top: 8px; letter-spacing: 0.03em; }
.dut-post-content .quick-cta { background: #f0f3f7; border-left: 3px solid #2a3447;
     padding: 16px 22px; margin: 28px 0; font-size: 15px;
     font-family: 'Open Sans', sans-serif; }
.dut-post-content .quick-cta a { color: #2a3447; font-weight: 600; text-decoration: none; }
.dut-post-content .quick-cta a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════════════════════
   RECOMMENDATION REVIEW — magazine-feature visual treatment, distinct from
   the standard product page. Wider canvas, centered typography, full-bleed
   imagery, section numbering, dramatic pull quotes.
   ════════════════════════════════════════════════════════════════════════════ */

.dut-post-content--review {
    max-width: 1080px;
    background: #fafaf7;
    padding: 60px 32px 80px;
    counter-reset: dut-section;
}

.dut-post-content--review p.kicker {
    display: block;
    margin: 0 auto 18px;
    text-align: center;
    border-bottom: 0;
    background: #2a3447;
    color: #fff;
    padding: 6px 18px;
    width: max-content;
}

.dut-post-content--review h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    text-align: center;
    line-height: 1.02;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin: 0 auto 18px;
}

.dut-post-content--review p.lede {
    text-align: center;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    max-width: 760px;
    margin: 0 auto 28px;
    color: #525151;
}

.dut-post-content--review p.byline {
    text-align: center;
    border-top: 1px solid #2a3447;
    border-bottom: 1px solid #2a3447;
    border-left: 0; border-right: 0;
    padding: 14px 0;
    max-width: 240px;
    margin: 0 auto 50px;
}

/* Top hero grid — make it ONE big cinematic image, hide the rest */
.dut-post-content--review .image-grid {
    grid-template-columns: 1fr;
    margin: 0 -32px 50px;
    gap: 0;
}
.dut-post-content--review .image-grid img:first-child {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
}
.dut-post-content--review .image-grid img:not(:first-child) {
    display: none;
}

/* Lead paragraph — bigger drop cap with vertical accent */
.dut-post-content--review p.lead-paragraph {
    font-size: 19px;
    line-height: 1.85;
    max-width: 760px;
    margin: 0 auto 28px;
}
.dut-post-content--review p.lead-paragraph::first-letter {
    font-size: 6.5rem;
    line-height: 0.85;
    padding: 8px 16px 0 0;
    border-right: 2px solid #2a3447;
    margin-right: 12px;
}

/* Main prose paragraphs — narrower column, centered, magazine feel */
.dut-post-content--review > p,
.dut-post-content--review > ul,
.dut-post-content--review > ol {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* H2 — section numbering, centered, larger, with rules above and below */
.dut-post-content--review h2 {
    counter-increment: dut-section;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 80px auto 28px;
    max-width: 900px;
    border-top: 1px solid #eaedf2;
    padding-top: 36px;
    color: #2a3447;
}
.dut-post-content--review h2::before {
    content: counter(dut-section, decimal-leading-zero);
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    width: auto;
    height: auto;
    background: transparent;
    font-style: normal;
}

/* H3 — emphasized */
.dut-post-content--review h3 {
    text-align: center;
    color: #1c2a37;
    font-size: 1rem;
    letter-spacing: 0.18em;
    margin-top: 28px;
}

/* Pull quote — full-bleed dramatic */
.dut-post-content--review blockquote.pullquote-large {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin: 80px -32px;
    padding: 48px 24px;
    background: #fff;
    border-top: 1px solid #2a3447;
    border-bottom: 1px solid #2a3447;
    line-height: 1.25;
}
.dut-post-content--review blockquote.pullquote-large::before {
    margin: 0 auto 24px;
}
.dut-post-content--review blockquote.pullquote-large::after {
    margin: 24px auto 0;
}

/* Inline images — every slot is either FULL bleed or PAIR. No floats. */
.dut-post-content--review .inline-img,
.dut-post-content--review .inline-img--1,
.dut-post-content--review .inline-img--2,
.dut-post-content--review .inline-img--3,
.dut-post-content--review .inline-img--4,
.dut-post-content--review .inline-img--5,
.dut-post-content--review .inline-img--6 {
    display: block;
    float: none;
    width: calc(100% + 80px);
    max-width: none;
    margin: 60px -40px;
    aspect-ratio: 16/10;
    object-fit: cover;
    clear: both;
    shape-outside: none;
}

/* Pair container — 2 images side by side, full bleed */
.dut-post-content--review .inline-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 60px -40px;
    width: calc(100% + 80px);
    clear: both;
}
.dut-post-content--review .inline-pair img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Clear floats around H2 */
.dut-post-content--review h2 {
    clear: both;
}

/* Callout — more prominent magazine sidebar */
.dut-post-content--review aside.callout {
    background: #2a3447;
    border: 0;
    padding: 32px 36px;
    margin: 56px auto;
    max-width: 700px;
    color: #fff;
}
.dut-post-content--review aside.callout::before {
    color: #fff;
    background: #2a3447;
    font-size: 18px;
}
.dut-post-content--review aside.callout p.callout__label {
    color: #fff;
    opacity: 0.85;
}
.dut-post-content--review aside.callout p {
    color: #fff;
    font-size: 17px;
}

/* Amazon gallery — wider grid, cleaner */
.dut-post-content--review .amazon-gallery-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #2a3447;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.dut-post-content--review .amazon-gallery-section h2 {
    color: #1c2a37;
    border: none;
    padding: 0;
}
.dut-post-content--review .amazon-gallery-section h2::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    background: #888;
    margin: 0 auto 14px;
}

/* Final CTA — bigger, breakout */
.dut-post-content--review .cta {
    font-size: 1.25rem;
    padding: 20px 56px;
    margin: 32px auto 8px;
    display: block;
    width: max-content;
}
.dut-post-content--review .disclosure {
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 720px) {
    .dut-post-content--review {
        padding: 40px 20px 60px;
    }
    .dut-post-content--review .inline-img,
    .dut-post-content--review .inline-img--1,
    .dut-post-content--review .inline-img--2,
    .dut-post-content--review .inline-img--3,
    .dut-post-content--review .inline-img--4,
    .dut-post-content--review .inline-img--5,
    .dut-post-content--review .inline-img--6 {
        width: 100%;
        margin: 40px 0;
    }
    .dut-post-content--review .inline-pair {
        grid-template-columns: 1fr;
        width: 100%;
        margin: 40px 0;
        gap: 10px;
    }
    .dut-post-content--review p.lead-paragraph::first-letter {
        font-size: 4.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   PERFECT SHOES — empty/no-match fallback
═══════════════════════════════════════════════════════ */
.dress-grid__empty {
  text-align: center;
  padding: 50px 24px;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}
.dress-grid__empty[hidden] { display: none; }
.dress-grid__reset-link {
  background: none;
  border: 0;
  color: var(--peach-dark);
  font: inherit;
  font-style: italic;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.dress-grid__reset-link:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — TRENDING + GIFT SECTIONS
═══════════════════════════════════════════════════════ */
.section--trending {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.section--gifts {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.section-cta-row {
  text-align: center;
  margin-top: 32px;
}
.dress-card__badge--review {
  background: var(--peach-dark);
  color: #fff;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   RECOMMENDATIONS GRID (page-recommendations.php + homepage)
═══════════════════════════════════════════════════════ */
.rec-grid-section {
  padding: 60px 0 100px;
  background: var(--cream);
}
.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.rec-card {
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.rec-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
}
.rec-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.rec-card:hover .rec-card__media img {
  transform: scale(1.04);
}
.rec-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--peach-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.rec-card__body {
  padding: 20px 22px 24px;
}
.rec-card__brand {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 8px;
}
.rec-card__title {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.rec-card__title a {
  color: var(--text);
  text-decoration: none;
  border: none;
}
.rec-card__title a:hover { color: var(--peach-dark); }
.rec-card__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}
.rec-card__stars { color: var(--peach-dark); letter-spacing: 0.04em; }
.rec-card__rating { color: var(--text); font-weight: 600; }
.rec-card__reviews { color: var(--text-light); font-size: 12px; }

/* ═══════════════════════════════════════════════════════
   GIFT GRID (page-gift-ideas.php + homepage)
═══════════════════════════════════════════════════════ */
.gift-grid-section {
  padding: 60px 0 100px;
  background: #fff;
}
.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gift-card {
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.gift-card__media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-dark);
}
.gift-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gift-card:hover .gift-card__media img {
  transform: scale(1.04);
}
.gift-card__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--peach-pale), var(--cream-dark));
}
.gift-card__body {
  padding: 22px 24px 28px;
}
.gift-card__kicker {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin: 0 0 10px;
}
.gift-card__title {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.gift-card__title a {
  color: var(--text);
  text-decoration: none;
  border: none;
}
.gift-card__title a:hover { color: var(--peach-dark); }
.gift-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 14px;
}
.gift-card__link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--peach-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid var(--peach-dark);
  padding-bottom: 2px;
}

/* ═══════════════════════════════════════════════════════
   OCCASION + STYLE LANDING PAGES
═══════════════════════════════════════════════════════ */
.occasion-grid-section,
.style-grid-section {
  padding: 50px 0 100px;
  background: var(--cream);
}
.occasion-grid,
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.occasion-tile,
.style-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  overflow: hidden;
}
.occasion-tile:hover,
.style-tile:hover {
  border-color: var(--peach-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.occasion-tile__media,
.style-tile__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-dark);
}
.occasion-tile__media img,
.style-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.occasion-tile:hover .occasion-tile__media img,
.style-tile:hover .style-tile__media img {
  transform: scale(1.04);
}
.occasion-tile__body,
.style-tile__body {
  padding: 24px 26px 28px;
}
.occasion-tile__title,
.style-tile__title {
  font-family: var(--font-accent);
  font-size: 1.625rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.occasion-tile__sub,
.style-tile__sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0 0 14px;
}
.occasion-tile__cta,
.style-tile__cta {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--peach-dark);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — editorial magazine layout
═══════════════════════════════════════════════════════ */
.about-page {
  background: #fff;
}
.about-hero {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 100px 24px 60px;
  text-align: center;
}
.about-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-hero__kicker {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin: 0 0 18px;
}
.about-hero__title {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 22px;
}
.about-hero__title em {
  color: var(--peach-dark);
  font-style: italic;
  font-weight: 500;
}
.about-hero__deck {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.5;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}
.about-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--peach-dark);
  margin: 40px auto 0;
}

.about-lede {
  padding: 40px 24px 60px;
}
.about-lede__inner {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.about-lede__paragraph::first-letter {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 0.85;
  color: var(--peach-dark);
  float: left;
  padding: 6px 12px 0 0;
  font-style: italic;
}
.about-lede p {
  margin: 0 0 18px;
}

.about-quote {
  padding: 50px 24px 70px;
  text-align: center;
}
.about-quote__inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-quote blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
}
.about-quote blockquote::before,
.about-quote blockquote::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--peach-dark);
  margin: 22px auto;
}

.about-section {
  padding: 80px 24px;
  background: #fff;
}
.about-section--cream {
  background: var(--cream);
}
.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-section__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin: 0 0 14px;
  text-align: center;
}
.about-section__title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 24px;
  text-align: center;
}
.about-section__title em {
  color: var(--peach-dark);
  font-style: italic;
  font-weight: 500;
}
.about-section__lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-mid);
  text-align: center;
  margin: 0 auto 38px;
  max-width: 700px;
}
.about-section__close {
  margin-top: 28px;
  font-style: italic;
  color: var(--text-mid);
  text-align: center;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
  margin-top: 50px;
}
.about-pillar {
  border-top: 2px solid var(--peach-dark);
  padding-top: 22px;
  position: relative;
}
.about-pillar__num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--peach-dark);
  line-height: 1;
  margin-bottom: 10px;
}
.about-pillar h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
  text-transform: none;
}
.about-pillar p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 760px;
}
.about-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.about-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--peach-dark);
  font-weight: 700;
}
.about-list li strong {
  color: var(--text);
  font-weight: 700;
  font-family: var(--font);
}
.about-list li:last-child {
  border-bottom: 0;
}

.about-pullquote {
  padding: 80px 24px;
  background: var(--peach-dark);
  text-align: center;
}
.about-pullquote__inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-pullquote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.about-feature {
  text-align: center;
  padding: 0 12px;
}
.about-feature h4 {
  font-family: var(--font-accent);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}
.about-feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.about-why {
  padding: 90px 24px;
  background: var(--cream);
}
.about-why__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-why__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin: 0 0 14px;
  text-align: center;
}
.about-why__title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 50px;
  color: var(--text);
  letter-spacing: -0.015em;
}
.about-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.about-why__card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 32px 36px;
  position: relative;
}
.about-why__bullet {
  display: block;
  font-family: var(--font-accent);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--peach-dark);
  margin-bottom: 12px;
  font-weight: 700;
}
.about-why__card h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--text);
  text-transform: none;
}
.about-why__card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.about-closing {
  padding: 90px 24px;
  background: #fff;
  text-align: center;
}
.about-closing__inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-closing__kicker {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach-dark);
  margin: 0 0 18px;
}
.about-closing__text {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 36px;
  font-style: italic;
}
.about-closing__cta {
  display: inline-block;
  background: var(--peach-dark);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 48px;
  text-decoration: none;
  border: 0;
  transition: background 0.2s;
}
.about-closing__cta:hover {
  background: #b37a4c;
  color: #fff;
}

@media (max-width: 720px) {
  .about-hero { padding: 70px 20px 40px; }
  .about-pillars,
  .about-why__grid,
  .about-features { grid-template-columns: 1fr; }
  .about-section { padding: 60px 20px; }
  .about-pullquote { padding: 60px 20px; }
  .about-why,
  .about-closing { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER SOCIAL ICONS — flat SVG, currentColor
═══════════════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text-mid);
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.2s;
  border-radius: 0;
}
.footer-social a:hover {
  color: #fff;
  background: var(--peach-dark);
  border-color: var(--peach-dark);
}
.footer-social svg {
  display: block;
}

/* ═══════════════════════════════════════════════════════
   MOBILE BREAKPOINTS for new sections
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cat-tiles__grid { grid-template-columns: repeat(3, 1fr); }
  .rec-grid,
  .gift-grid,
  .occasion-grid,
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .cat-tiles__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .rec-grid,
  .gift-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .occasion-grid,
  .style-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .occasion-tile__media,
  .style-tile__media { aspect-ratio: 16/10; }
}
