/* ==========================================================================
   AEZ Press & Floral — Design System
   Serving all 5 NYC boroughs + Nassau County
   ========================================================================== */

@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/Lora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../assets/fonts/Lora-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../assets/fonts/WorkSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../assets/fonts/WorkSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('../assets/fonts/WorkSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nothing You Could Do';
  src: url('../assets/fonts/NothingYouCouldDo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette — drawn from the AEZ rose mark + reference moodboard */
  --ink: #221c1a;
  --ink-soft: #4a3f3c;
  --cream: #f7f0e6;
  --cream-deep: #efe3d2;
  --white: #ffffff;
  --rose: #a92439;
  --rose-dark: #7e1a2a;
  --rose-bright: #c8324a;
  --blush: #f6dde0;
  --blush-soft: #faeaea;
  --peach: #f2d6b8;
  --gold: #a9803f;
  --line: rgba(34, 28, 26, 0.12);

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Nothing You Could Do', cursive;

  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(34, 20, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(34, 20, 20, 0.10);
  --shadow-lg: 0 24px 60px rgba(34, 20, 20, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 116px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 10px 0 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(169, 36, 57, 0.28);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(169, 36, 57, 0.34); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--rose);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.42s; }

/* ==========================================================================
   Announcement bar + Header
   ========================================================================== */
.announce {
  background: var(--rose-dark);
  color: var(--white);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 12px;
}
.announce a { text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(247, 240, 230, 0.92);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 56px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
}
.main-nav > li > a:hover { color: var(--rose); background: rgba(169, 36, 57, 0.06); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown a:hover { background: var(--blush-soft); color: var(--rose-dark); padding-left: 18px; }

.mobile-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink);
  transition: background 0.25s ease, transform 0.25s ease;
}
.icon-btn:hover { background: var(--blush-soft); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.4s var(--ease); }
@keyframes bump { 0%{transform:scale(1);} 40%{transform:scale(1.35);} 100%{transform:scale(1);} }

.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.search-panel.is-open { max-height: 420px; }
.search-panel-inner { max-width: 640px; margin: 0 auto; padding: 22px 28px 28px; }
.search-panel input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.98rem;
}
.search-panel input:focus { outline: none; border-color: var(--rose); }
.search-results { margin-top: 6px; }
.search-results.has-results { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 8px; }
.search-result { display: flex; justify-content: space-between; padding: 12px 8px; border-radius: 8px; font-size: 0.92rem; transition: background 0.2s ease; }
.search-result:hover { background: var(--blush-soft); }
.search-empty { font-size: 0.86rem; color: var(--ink-soft); padding: 14px 8px; line-height: 1.6; }
.search-empty a { color: var(--rose); text-decoration: underline; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--peach) 0%, var(--blush) 52%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
}
.hero::before {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  top: -120px; right: -80px;
}
.hero::after {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(169,36,57,0.14), transparent 70%);
  bottom: -100px; left: 6%;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 76px 28px 84px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.hero-copy .eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--rose); }
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.06;
  margin: 18px 0 20px;
  font-weight: 700;
}
.hero-copy h1 em { font-style: italic; color: var(--rose); }
.hero-copy p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.5rem; }
.hero-trust span { font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.03em; }

.hero-visual { position: relative; }
.hero-cards {
  position: relative;
  aspect-ratio: 1 / 1;
}
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo--main { width: 72%; height: 76%; top: 0; right: 0; z-index: 2; }
.hero-photo--sub { width: 46%; height: 46%; left: 0; bottom: 0; z-index: 3; border: 6px solid var(--cream); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.hero-badge {
  position: absolute;
  top: 14%;
  left: -6%;
  z-index: 4;
  background: var(--white);
  border-radius: 999px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  animation: floaty 7s ease-in-out infinite;
  animation-delay: 0.4s;
}
.hero-badge span.dot { width: 10px; height: 10px; border-radius: 50%; background: #3ea55c; box-shadow: 0 0 0 4px rgba(62,165,92,0.18); }

/* ==========================================================================
   Trust / marquee strip
   ========================================================================== */
.trust-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}
.marquee { display: flex; width: max-content; animation: scroll-left 28s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span {
  display: inline-flex;
  align-items: center;
  padding: 0 36px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  white-space: nowrap;
  opacity: 0.92;
}
.marquee span::after { content: '✦'; margin-left: 36px; color: var(--rose-bright); font-style: normal; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Product cards / grids
   ========================================================================== */
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--blush { background: var(--blush-soft); }
.section--ink { background: var(--ink); color: var(--cream); }

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.section-top .section-head { text-align: left; margin: 0; }
.section-top .section-head p { margin-top: 8px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blush-soft);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.08); }

.media-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ph-bg, linear-gradient(150deg, #f6dde0, #f2d6b8));
}
.media-placeholder svg { width: 34%; height: 34%; opacity: 0.85; }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}
.badge.badge-dark { background: var(--ink); }

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}
.wishlist-btn svg { width: 16px; height: 16px; }
.product-card:hover .wishlist-btn { opacity: 1; transform: translateY(0); }
.wishlist-btn.active { background: var(--rose); color: var(--white); }

.quick-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  transition: bottom 0.4s var(--ease);
  z-index: 2;
}
.product-card:hover .quick-add { bottom: 12px; }

.product-info { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rose); font-weight: 700; margin-bottom: 6px; }
.product-info h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.product-price { margin-top: auto; padding-top: 10px; display: flex; align-items: center; gap: 8px; font-weight: 700; }
.product-price .was { color: #a09590; text-decoration: line-through; font-weight: 500; font-size: 0.9rem; }
.stars { display: flex; gap: 2px; margin-bottom: 6px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }

/* ==========================================================================
   Lifestyle band / story
   ========================================================================== */
.lifestyle-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lifestyle-band img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.lifestyle-copy {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifestyle-copy .eyebrow { color: var(--rose-bright); }
.lifestyle-copy h2 { font-family: var(--font-display); font-size: 2.1rem; margin: 14px 0 16px; line-height: 1.2; }
.lifestyle-copy p { color: rgba(247,240,230,0.78); line-height: 1.7; margin-bottom: 26px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-list { display: flex; flex-direction: column; gap: 40px; }
.process-item { display: flex; gap: 22px; }
.process-num {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.process-item h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.process-item p { color: var(--ink-soft); line-height: 1.65; }
.process-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5;}
.process-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Video feature
   ========================================================================== */
.video-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 21 / 9;
  background: var(--ink);
}
.video-feature video, .video-feature img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,28,26,0.28);
  transition: background 0.35s ease;
}
.video-play button {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s var(--ease);
}
.video-play button svg { width: 26px; height: 26px; margin-left: 4px; fill: var(--rose); }
.video-play:hover button { transform: scale(1.08); }
.video-play.is-hidden { opacity: 0; pointer-events: none; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-card .stars { margin-bottom: 14px; }
.testi-card p.quote { font-family: var(--font-display); font-style: italic; line-height: 1.6; margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--rose); }
.testi-who strong { display: block; font-size: 0.92rem; }
.testi-who span { font-size: 0.78rem; color: var(--ink-soft); }

/* ==========================================================================
   Newsletter CTA
   ========================================================================== */
.newsletter {
  background: linear-gradient(120deg, var(--rose-dark), var(--rose));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '✦'; position: absolute; font-size: 8rem; opacity: 0.08; top: -30px; left: -10px; font-family: var(--font-display);
}
.newsletter h2 { font-family: var(--font-display); font-size: 2.1rem; margin-bottom: 12px; }
.newsletter p { opacity: 0.9; max-width: 480px; margin: 0 auto 28px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 999px;
  border: none;
  font-size: 0.92rem;
}
.newsletter-note { margin-top: 14px; font-size: 0.76rem; opacity: 0.75; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(247,240,230,0.82); padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,240,230,0.12);
}
.footer-brand img { height: 52px; margin-bottom: 16px; border-radius: 8px; }
.footer-brand p { line-height: 1.65; font-size: 0.92rem; color: rgba(247,240,230,0.65); max-width: 300px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 18px; color: var(--cream); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(247,240,230,0.68); transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: rgba(247,240,230,0.75); line-height: 1.5; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--rose-bright); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(247,240,230,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-row a:hover { background: var(--rose); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(247,240,230,0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(34,28,26,0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 91;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.cart-drawer-head h3 { font-family: var(--font-display); font-size: 1.2rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-item { display: flex; gap: 14px; }
.cart-item-media { width: 78px; height: 88px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--blush-soft); }
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; display: flex; flex-direction: column; }
.cart-item-body h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.cart-item-meta { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 8px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty-control button { width: 26px; height: 26px; background: none; border: none; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.qty-control span { min-width: 22px; text-align: center; font-size: 0.85rem; font-weight: 600; }
.cart-item-remove { font-size: 0.76rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.cart-item-remove:hover { color: var(--rose); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty svg { width: 52px; height: 52px; margin-bottom: 14px; opacity: 0.4; }
.cart-drawer-foot { padding: 22px 24px 26px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 16px; font-family: var(--font-display); font-size: 1.15rem; }
.cart-drawer-foot .btn { margin-bottom: 10px; }
.cart-note { font-size: 0.74rem; color: var(--ink-soft); text-align: center; line-height: 1.5; }

/* ==========================================================================
   Generic page header / breadcrumb
   ========================================================================== */
.page-hero {
  background: linear-gradient(120deg, var(--peach), var(--blush));
  padding: 60px 0 48px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; display: flex; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); margin: 12px 0 10px; }
.breadcrumb { font-size: 0.82rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--rose); }

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--rose); color: var(--rose); }
.filter-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.92rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--rose); background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: #3ea55c; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); max-width: 420px; margin: 0 auto; line-height: 1.6; }

/* ---------- Utility ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.swatch.active { box-shadow: 0 0 0 2px var(--rose); transform: scale(1.1); }
.size-pill {
  width: 42px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.size-pill:hover { border-color: var(--rose); }
.size-pill.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.stat-strip { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 26px; }
.stat-strip div strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--rose); }
.stat-strip div span { font-size: 0.84rem; color: var(--ink-soft); letter-spacing: 0.02em; }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
  position: relative;
}
.borough-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.borough-pill {
  background: rgba(247,240,230,0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.borough-pill:hover { background: var(--rose); transform: translateY(-3px); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--rose); color: var(--white);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   Chat widget
   ========================================================================== */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(169, 36, 57, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.chat-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 36px rgba(169, 36, 57, 0.4); }
.chat-fab svg { width: 26px; height: 26px; transition: opacity 0.2s ease, transform 0.2s ease; }
.chat-fab .icon-close { position: absolute; opacity: 0; transform: scale(0.7) rotate(-45deg); }
.chat-fab.is-open .icon-chat { opacity: 0; transform: scale(0.7) rotate(45deg); }
.chat-fab.is-open .icon-close { opacity: 1; transform: scale(1) rotate(0); }
.chat-fab-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3ea55c;
  border: 2px solid var(--white);
}
.chat-fab-badge.hide { display: none; }

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 98px;
  z-index: 80;
  width: 372px;
  max-width: calc(100vw - 32px);
  height: min(560px, calc(100vh - 140px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: scale(0.9) translateY(16px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.chat-panel.is-open { opacity: 1; transform: scale(1) translateY(0); visibility: visible; pointer-events: auto; }

.chat-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  background: var(--ink);
  color: var(--cream);
  flex-shrink: 0;
}
.chat-head-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; background: var(--cream); flex-shrink: 0; }
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-head-info strong { display: block; font-family: var(--font-display); font-size: 0.98rem; }
.chat-head-info span { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; color: rgba(247,240,230,0.65); }
.chat-head-info span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #3ea55c; }
.chat-panel-head .icon-btn { color: var(--cream); width: 32px; height: 32px; }
.chat-panel-head .icon-btn:hover { background: rgba(247,240,230,0.12); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}
.chat-msg { display: flex; gap: 9px; max-width: 85%; }
.chat-msg-bubble {
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
}
.chat-msg-bubble a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.bot .chat-msg-bubble { background: var(--white); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg.user .chat-msg-bubble { background: var(--rose); color: var(--white); border-bottom-right-radius: 4px; }
.chat-msg-avatar { width: 24px; height: 24px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--blush); }
.chat-msg-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat-typing { display: flex; gap: 4px; padding: 13px 16px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); opacity: 0.5; animation: chat-bounce 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 18px 14px;
  background: var(--cream);
  flex-shrink: 0;
}
.chat-quick-replies:empty { display: none; }
.chat-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--rose);
  background: var(--white);
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}
.chat-chip:hover { background: var(--rose); color: var(--white); }

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}
.chat-input-row input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.86rem;
}
.chat-input-row input:focus { outline: none; border-color: var(--rose); background: var(--white); }
.chat-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.chat-send-btn:hover { background: var(--rose-dark); transform: scale(1.05); }
.chat-send-btn svg { width: 17px; height: 17px; }

@media (max-width: 480px) {
  .chat-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .chat-panel {
    right: 8px; left: 8px; bottom: 84px;
    width: auto; max-width: none;
    height: min(70vh, calc(100vh - 120px));
  }
}

/* ==========================================================================
   Design Lab
   ========================================================================== */
.design-shell {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 28px;
  align-items: start;
}

.design-toolbar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  position: sticky;
  top: 140px;
}
.design-toolbar h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px; }
.tool-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.tool-btn:hover { border-color: var(--rose); background: var(--white); }
.tool-btn svg { width: 18px; height: 18px; color: var(--rose); flex-shrink: 0; }
.tool-hint { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.6; margin-top: 8px; }

.design-canvas-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.design-color-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.design-color-row .swatch { width: 28px; height: 28px; }
.design-color-label { font-size: 0.82rem; font-weight: 700; margin-right: 4px; }

.mockup-stage {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mockup-svg { width: 78%; height: 78%; }
.mockup-svg .garment-fill { fill: #1c1c1c; transition: fill 0.3s ease; }
.mockup-svg .garment-fill-stroke { stroke: #1c1c1c; transition: stroke 0.3s ease; }

.print-area {
  position: absolute;
  border: 1.5px dashed rgba(34, 28, 26, 0.28);
  border-radius: 4px;
}
.print-area::before {
  content: 'Print Area';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

.design-layer {
  position: absolute;
  cursor: grab;
  touch-action: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.design-layer:active { cursor: grabbing; }
.design-layer img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.design-layer .layer-text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.15;
  pointer-events: none;
}
.design-layer.is-selected { outline: 2px solid var(--rose); outline-offset: 3px; }
.layer-delete {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: 2px solid var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  z-index: 5;
}
.design-layer.is-selected .layer-delete { display: flex; }
.layer-resize {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose);
  display: none;
  cursor: nwse-resize;
  touch-action: none;
  z-index: 5;
}
.design-layer.is-selected .layer-resize { display: block; }

.text-font-controls {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 6px;
  background: var(--ink);
  border-radius: 999px;
  padding: 5px 6px;
  z-index: 5;
  white-space: nowrap;
}
.design-layer.is-selected .text-font-controls { display: flex; }
.text-font-controls button {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(247,240,230,0.12);
  color: var(--cream);
  border: none;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}
.text-font-controls button:hover { background: var(--rose); }

.design-empty-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  opacity: 0.75;
  pointer-events: none;
}

.design-view-label { margin-top: 18px; font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

.design-sidebar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  position: sticky;
  top: 140px;
}
.design-sidebar h2 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.design-sidebar .design-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--rose); margin-bottom: 18px; }
.design-field { margin-bottom: 20px; }
.design-field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; }
.size-pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-row .qty-control { border: 1px solid var(--line); }
.qty-row .qty-control button { width: 34px; height: 34px; font-size: 1.1rem; }
.qty-row .qty-control span { min-width: 30px; font-size: 0.95rem; }

/* Add-text modal */
.text-modal-overlay {
  position: fixed; inset: 0; background: rgba(34,28,26,0.5); z-index: 95;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.text-modal-overlay.is-open { opacity: 1; visibility: visible; }
.text-modal {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  width: 100%; max-width: 380px; box-shadow: var(--shadow-lg);
  transform: scale(0.94); transition: transform 0.3s var(--ease);
}
.text-modal-overlay.is-open .text-modal { transform: scale(1); }
.text-modal h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 16px; }
.text-modal textarea {
  width: 100%; min-height: 70px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--cream); font-size: 0.92rem;
  font-family: inherit; resize: vertical; margin-bottom: 16px;
}
.text-modal textarea:focus { outline: none; border-color: var(--rose); background: var(--white); }
.text-color-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.text-modal-actions { display: flex; gap: 10px; }

/* Design preview modal */
.preview-modal-overlay {
  position: fixed; inset: 0; background: rgba(34,28,26,0.65); z-index: 96;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.preview-modal-overlay.is-open { opacity: 1; visibility: visible; }
.preview-modal {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  width: 100%; max-width: 460px; box-shadow: var(--shadow-lg);
  transform: scale(0.94); transition: transform 0.3s var(--ease);
  max-height: 90vh; overflow-y: auto;
}
.preview-modal-overlay.is-open .preview-modal { transform: scale(1); }
.preview-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.preview-modal-head h3 { font-family: var(--font-display); font-size: 1.2rem; }
.preview-modal-image {
  width: 100%; aspect-ratio: 1 / 1; border-radius: var(--radius-md);
  overflow: hidden; background: var(--cream); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  position: relative;
}
.preview-modal-image img { width: 100%; height: 100%; object-fit: contain; }
.preview-modal-loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: var(--cream); font-size: 0.86rem; color: var(--ink-soft);
}
.preview-modal-meta { text-align: center; margin-bottom: 22px; }
.preview-modal-meta strong { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.preview-modal-meta span { font-size: 0.84rem; color: var(--ink-soft); }
.preview-modal-actions { display: flex; gap: 10px; }

@media (max-width: 1080px) {
  .design-shell { grid-template-columns: 1fr; }
  .design-toolbar { position: static; display: flex; gap: 10px; overflow-x: auto; padding: 14px; }
  .design-toolbar h3 { display: none; }
  .tool-btn { width: auto; flex-shrink: 0; margin-bottom: 0; white-space: nowrap; }
  .tool-hint { display: none; }
  .design-sidebar { position: static; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 52px; }
  .hero-visual { order: -1; width: 100%; max-width: 460px; margin: 0 auto; }
  .lifestyle-band { grid-template-columns: 1fr; }
  .lifestyle-band img { min-height: 280px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .icon-btn.search-icon { display: none; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testi-track { grid-template-columns: 1fr; }
  .process-item { flex-direction: row; }
  .section { padding: 64px 0; }
  .section-top { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .borough-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { gap: 30px 18px; }

  .mobile-nav {
    display: block;
    position: fixed; inset: 0; top: var(--header-h);
    background: var(--cream);
    z-index: 55;
    padding: 20px 24px 40px;
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }
  .mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .mobile-nav > li > a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 4px; font-size: 1.05rem; font-weight: 700;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; display: none; padding: 0 0 10px 14px;
  }
  .mobile-nav li.is-expanded .dropdown { display: block; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-grid { padding: 40px 20px 56px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 20px; }
  .lifestyle-copy { padding: 40px 26px; }
  .borough-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 100vw; }
  .video-feature { aspect-ratio: 4/5; }
  .text-modal-actions, .preview-modal-actions { flex-direction: column; }
  .preview-modal, .text-modal { padding: 24px; }
}
