/* ============================================================
   THE RENTAL CLOSET — design system
   Palette: MIST BLUE dominant + cream + brick red
             (from user-provided 4 colors)
   Typography: Playfair Display (headings) + Cormorant (accents)
              + system sans (body)
   ============================================================ */

:root {
  /* palette — PANTONE Ice Melt (page bg) + Merlot (header/footer/hero) */
  --cream: #d3e4f1;            /* Ice Melt 淡冰蓝 页面主背景 */
  --cream-deep: #bcd3e6;       /* 稍深冰蓝 区块背景 */
  --blush: #79383d;            /* Merlot 深酒红 按钮/徽章 */
  --blush-soft: #d3e4f1;       /* Ice Melt 高亮/点缀 */
  --taupe: #a9c3db;            /* 中冰蓝 边框/描边 */
  --brown: #79383d;            /* Merlot 标题/CTA 辅色 */
  --brown-dark: #482124;       /* 深 Merlot 深文字/页脚最深处 */
  --brown-soft: #8a4a4f;       /* 浅酒红 标签文字 */
  --text: #2e333f;             /* 深蓝黑 正文 */
  --text-light: #56616e;       /* 深蓝灰 次要文字 */
  --border: #b7cfe0;           /* 冰蓝 边框线 */
  --white: #ffffff;            /* 白 卡片/按钮文字 */

  /* fonts */
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sub: "Cormorant", Georgia, serif;
  --font-body: "Jost", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* layout */
  --container: 1200px;
  --radius: 10px;
  --shadow-sm: 0 2px 12px rgba(57, 18, 18, 0.08);
  --shadow-md: 0 8px 30px rgba(57, 18, 18, 0.14);
  --transition: all 0.25s ease;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--brown-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.section-label {
  font-family: var(--font-sub);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 1.05rem;
}

.eyebrow {
  font-family: var(--font-sub);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ---------- announcement bar ---------- */
.announcement {
  background: var(--blush);
  color: #eef3f9;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(121, 56, 61, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(211, 228, 241, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: #eef3f9;
  white-space: nowrap;
}

.logo em {
  font-family: var(--font-sub);
  font-style: italic;
  color: #bcd3e6;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7e3f0;
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: #ffffff;
  transition: var(--transition);
}

.main-nav a:hover { color: #ffffff; }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions a {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d7e3f0;
  transition: var(--transition);
}

.header-actions a:hover { color: #ffffff; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #eef3f9;
  line-height: 1;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 40px;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--brown);
  color: var(--cream);
}

.btn-dark {
  background: var(--brown);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--blush);
  color: var(--white);
}

.btn-outline {
  border-color: var(--taupe);
  color: var(--brown);
  background: transparent;
}

.btn-outline:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(135deg, #8fa4d1 0%, #a9bade 55%, #c3d6e8 100%);
  color: #2e333f;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.28), transparent 42%),
    radial-gradient(circle at 85% 78%, rgba(143, 164, 209, 0.2), transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero .eyebrow {
  color: #6b2e33;
  opacity: 0.92;
}

.hero h1 {
  color: #79383d;
  margin: 18px 0 22px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.hero p {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  color: #5a2328;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: #79383d;
  color: #eef3f9;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}
.hero .btn-primary:hover { background: #5a2328; color: #ffffff; }
.hero .btn-outline { border-color: #79383d; color: #5a2328; }
.hero .btn-outline:hover { background: #79383d; color: #eef3f9; border-color: #79383d; }

/* ---------- section spacing ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-deep); }
.section-cream-2 { background: #bcd3e6; }

/* ---------- featured products / product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream);
}

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

.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--brown);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}

.product-card__badge--blush { background: var(--blush); color: var(--white); }

.product-card__body {
  padding: 18px 20px 22px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brown-dark);
}

.product-card__color {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 4px 0 10px;
  letter-spacing: 0.04em;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown);
}

.product-card__price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__cta {
  margin-top: 14px;
  display: block;
  text-align: center;
  padding: 10px 16px;
  border: 1px solid var(--blush);
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  transition: var(--transition);
}

.product-card__cta:hover {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--white);
}

.view-all {
  text-align: center;
  margin-top: 48px;
}

/* ---------- occasion cards (collection list) ---------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.occasion-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
}

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

.occasion-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.occasion-card__bg svg {
  width: 62%;
  height: auto;
  opacity: 0.5;
}

.occasion-card__label {
  position: relative;
  width: 100%;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(58, 17, 21, 0.9));
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ---------- how it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  padding: 32px 20px;
}

.step__num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- as seen on ---------- */
.as-seen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.as-seen-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.as-seen-card__media {
  aspect-ratio: 3 / 4;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-seen-card__media svg { width: 55%; height: auto; opacity: 0.6; }

.as-seen-card__body {
  padding: 14px 16px;
}

.as-seen-card__name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--brown-dark);
}

.as-seen-card__wearing {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #5a2328 0%, #79383d 100%);
  color: #eef3f9;
  text-align: center;
  padding: 80px 0;
}

.cta-band h2 { color: #f2f6fb; margin-bottom: 14px; text-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.cta-band p { color: #dde8f2; opacity: 0.95; font-family: var(--font-sub); font-size: 1.2rem; margin-bottom: 34px; }
.cta-band .btn-primary {
  background: #d3e4f1;
  border-color: #d3e4f1;
  color: #482124;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover { background: #ffffff; border-color: #ffffff; color: #482124; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(180deg, #5a2328 0%, #3a1115 100%);
  color: #d7e3f0;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .logo { color: #eef3f9; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.8; color: #d7e3f0; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #bcd3e6;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; transition: var(--transition); color: #d7e3f0; }
.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #a8c0d8;
}

/* ============================================================
   CATALOGUE PAGE
   ============================================================ */
.page-hero {
  background: var(--cream-deep);
  text-align: center;
  padding: 70px 0 60px;
}

.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--text-light); font-family: var(--font-sub); font-size: 1.15rem; }

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 28px 0 8px;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--blush);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
  transition: var(--transition);
}

.filter-pill:hover { border-color: var(--blush-soft); background: var(--blush-soft); color: var(--white); }
.filter-pill.active {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--white);
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.catalog-meta .count { font-size: 0.88rem; color: var(--text-light); letter-spacing: 0.04em; }

.sort-select {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: var(--white);
  color: var(--brown);
}

.catalog-section { padding: 40px 0 90px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 60px 0 80px;
  align-items: start;
}

.product-detail__media {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-detail__media img { width: 100%; }

/* ---------- 360° showcase ---------- */
.rot360 {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.rot360:active { cursor: grabbing; }
.rot360__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.12s linear;
  pointer-events: none;
}
.rot360__frame.active { opacity: 1; }
.rot360__frame img,
.rot360__frame svg {
  width: 82%;
  height: auto;
  max-height: 92%;
  object-fit: contain;
}
.rot360__badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(57, 18, 18, 0.75);
  color: #eef3f9;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}
.rot360__hint {
  position: absolute;
  bottom: 12px; right: 12px;
  color: rgba(57, 18, 18, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: rgba(237, 219, 194, 0.7);
  padding: 4px 10px;
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}
.rot360__progress {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  color: rgba(57, 18, 18, 0.75);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: rgba(237, 219, 194, 0.7);
  padding: 3px 10px;
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}

/* ---------- product gallery (thumbnail strip) ---------- */
.product-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.product-gallery__thumb {
  width: 60px;
  height: 78px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.2s, transform 0.2s;
  padding: 0;
}
.product-gallery__thumb img,
.product-gallery__thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery__thumb:hover { transform: translateY(-2px); }
.product-gallery__thumb.active { border-color: var(--brown); }

/* main stage image */
.product-media__stage {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media__stage img,
.product-media__stage svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* compact 360 block (independent of the main gallery) */
.rot360--compact {
  margin-top: 16px;
  aspect-ratio: 3 / 4;
  max-height: 380px;
  border: 1px solid var(--border);
}
.rot360--compact .rot360__frame img,
.rot360--compact .rot360__frame svg { width: 78%; }

/* 360 heading */
.product-media__360label {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 500;
}

.product-detail__info .eyebrow { color: var(--brown-soft); }

.product-detail__info h1 { margin: 10px 0 6px; }
.product-detail__color { color: var(--text-light); font-size: 1rem; margin-bottom: 18px; }

.product-detail__price-box {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--brown);
}

.product-detail__price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.product-detail__deposit { font-size: 0.9rem; color: var(--brown-soft); }

.product-detail__desc { margin: 20px 0 26px; color: var(--text); font-size: 1rem; }

.size-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 28px;
}

.size-tag {
  padding: 9px 18px;
  border: 1px solid var(--blush);
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--blush);
}

.size-tag.active { background: var(--blush); color: var(--white); border-color: var(--blush); }

.booking-note {
  margin-top: 22px;
  padding: 16px 20px;
  border-left: 3px solid var(--blush);
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--brown-dark);
}

.booking-note strong { color: var(--brown); }

.related-section { padding: 70px 0 90px; }

/* ============================================================
   RENTAL GUIDE / FAQ / ABOUT
   ============================================================ */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 48px 0 18px;
}

.prose h3 { margin: 30px 0 12px; font-size: 1.15rem; }

.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; }

.guide-steps { margin: 30px 0; }

.guide-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.guide-step:last-child { border-bottom: none; }

.guide-step__num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-step h3 { margin-bottom: 6px; font-size: 1.1rem; }
.guide-step p { color: var(--text); font-size: 0.98rem; margin: 0; }

/* size table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 40px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.size-table th, .size-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.size-table th {
  background: var(--brown);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.size-table tr:last-child td { border-bottom: none; }
.size-table tr:hover td { background: var(--cream-deep); }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--brown-dark);
  text-align: left;
}

.faq-item__q .icon {
  font-size: 1.3rem;
  color: var(--brown-soft);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-item__q .icon { transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__a-inner {
  padding: 0 24px 22px;
  color: var(--text);
  font-size: 0.96rem;
}

/* contact / about */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contact-card .icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; }

/* ---------- DM modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 13, 16, 0.66);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--cream);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 34px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--brown-soft);
  line-height: 1;
}

.modal h3 { margin-bottom: 8px; }
.modal .modal-sub { color: var(--text-light); font-size: 0.92rem; margin-bottom: 20px; }

.modal .form-group { margin-bottom: 16px; }

.modal label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 6px;
}

.modal input, .modal select, .modal textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--taupe);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown-dark);
}

.modal textarea { resize: vertical; min-height: 90px; }

.modal-template {
  background: var(--white);
  border: 1px dashed var(--taupe);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.85rem;
  white-space: pre-wrap;
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.modal .btn { width: 100%; margin-bottom: 10px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream-deep);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 24px;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open ul { flex-direction: column; gap: 6px; }
  .main-nav.open a { color: var(--text); display: block; padding: 10px 0; }
  .main-nav.open a:hover { color: var(--brown-dark); }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail__media { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 14px 18px; }
  .hero { padding: 80px 0 90px; }
  .section { padding: 60px 0; }
  .hero-actions .btn { width: 100%; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE SHOPPING FEED (information-flow product cards)
   A shopping-app style feed used on mobile devices only.
   ============================================================ */
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* shopping feed card */
  .feed-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
  }

  .feed-card:active { transform: scale(0.98); }

  .feed-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--cream);
  }

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

  .feed-card__badge {
    position: absolute;
    top: 8px; left: 8px;
    background: var(--blush);
    color: var(--white);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 20px;
  }

  .feed-card__body {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .feed-card__name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    line-height: 1.25;
    color: var(--brown-dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .feed-card__color {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }

  .feed-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
  }

  .feed-card__price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--brown);
    font-weight: 600;
  }

  .feed-card__price small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .feed-card__btn {
    margin-top: 2px;
    background: var(--blush);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 8px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition);
    width: 100%;
  }

  .feed-card__btn:active { background: var(--brown); color: var(--cream); }

  /* hide desktop-style card body extras on feed */
  .feed-card .product-card__cta { display: none; }
  .feed-card .product-card__body { display: none; }
}

/* ============================================================
   MOBILE INFO-FLOW LIST (single-column card feed)
   ============================================================ */
@media (max-width: 640px) {
  .infoflow .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-1 { margin-bottom: 12px; } .mb-2 { margin-bottom: 24px; }
.fade-in { animation: fadeIn 0.6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
