/* =============================================
   Lumière Home — Premium candle e-commerce
   Soft pink · white · champagne gold
   ============================================= */

:root {
  --pink: #f7d6e0;
  --blush: #f3c6d3;
  --rose: #f8e8ee;
  --rose-deep: #e8b4c4;
  --white: #fffcfb;
  --cream: #fbf6f2;
  --champagne: #c9a36a;
  --champagne-soft: #e8d5b5;
  --ink: #4a3b3f;
  --muted: #7d6b70;
  --line: #ead8de;
  --shadow: 0 18px 50px rgba(184, 122, 140, 0.12);
  --radius: 18px;
  --header: 78px;
  --announce: 34px;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --body: "Poppins", Inter, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(760px, calc(100% - 40px)); }

h1, h2, h3, .logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 10px;
}

/* ---------- Announcement / Header ---------- */
.announce {
  background: linear-gradient(90deg, #f8e4ea, #f6efe4, #f8e4ea);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  height: var(--announce);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 251, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--muted);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}

.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 4px; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border: 0; background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.icon-btn:hover { background: var(--rose); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn.hamburger { display: none; }
.icon-btn.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); margin: 3px 0;
}

.badge-count {
  position: absolute;
  top: 6px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--rose-deep);
  color: white;
  font-size: 0.62rem;
  border-radius: 99px;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 13px 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #d4b07a, #c9a36a);
  color: #fff;
  box-shadow: 0 8px 20px rgba(201, 163, 106, 0.25);
}
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.8);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--champagne); }
.btn.full { width: 100%; }
.btn.small { padding: 9px 14px; font-size: 0.66rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: auto;
  padding: 72px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfb 0%, #f8e8ee 52%, #fff8f5 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: auto;
  margin: 0;
  text-align: left;
}

.hero-content h1 {
  max-width: 14ch;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  margin: 0;
  padding: 4px;
  background: transparent;
  display: block;
}

.hero-media img {
  width: 100%;
  height: min(640px, 74vh);
  object-fit: cover;
  object-position: 58% 50%;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(184, 122, 140, 0.16);
}

.hero-media::after {
  display: none;
}

.fade-up {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--rose); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); margin-top: 10px; }
.section-head.row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  max-width: none;
  gap: 20px;
}

/* ---------- Categories ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cat-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
  cursor: pointer;
  border: 0;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: transform 0.3s ease;
}

.cat-card:hover { transform: translateY(-6px); }

.cat-card .thumb {
  height: 190px;
  overflow: hidden;
}

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover img { transform: scale(1.07); }

.cat-card .body { padding: 16px 18px 20px; }
.cat-card h3 { margin-bottom: 6px; }
.cat-card p { color: var(--muted); font-size: 0.86rem; margin-bottom: 12px; }

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-8px); }

.product-card .media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--cream);
}

.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .media img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,252,251,0.92);
  color: var(--champagne);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.wish-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  color: var(--muted);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.wish-btn.active { color: #d46a8a; }
.wish-btn.active svg { fill: #d46a8a; animation: heartPop 0.35s ease; }

@keyframes heartPop {
  0% { transform: scale(0.7); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.product-card .info { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card h3 { font-size: 1.15rem; cursor: pointer; }
.product-card .desc { color: var(--muted); font-size: 0.84rem; }
.product-card .meta { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.price { color: var(--champagne); font-weight: 500; }
.stars { color: #c9a36a; font-size: 0.78rem; letter-spacing: 1px; }
.card-actions { display: flex; gap: 8px; margin-top: 10px; }
.card-actions .btn { flex: 1; }

/* ---------- Bloom ---------- */
.bloom {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
  background: var(--cream);
}

.bloom-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.bloom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}

.bloom-copy p { color: var(--muted); margin: 16px 0 28px; }
.bloom-related { padding-top: 40px; }

/* ---------- Families / Why ---------- */
.family-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.family-card, .why-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
}

.family-card {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.family-card:hover { transform: translateY(-5px); border-color: var(--champagne-soft); }
.family-card span { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.family-card p, .why-grid p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.why-icon { color: var(--champagne); font-size: 1.3rem; margin-bottom: 10px; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about-copy {
  background: var(--rose);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p { color: var(--muted); margin-top: 14px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.stats div {
  text-align: center;
  background: rgba(255,255,255,0.55);
  padding: 16px 8px;
  border-radius: 14px;
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.stats span { font-size: 0.78rem; color: var(--muted); }

/* ---------- Reviews / Gallery / Newsletter ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.review-card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}

.review-card p { font-style: italic; color: var(--muted); margin: 10px 0 14px; }
.review-card h4 { font-family: var(--body); font-weight: 500; font-size: 0.9rem; }

.gallery-section { padding: 40px 0 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 8px;
  padding: 0 8px 8px;
}

.insta-grid figure { overflow: hidden; position: relative; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-grid figure:hover img { transform: scale(1.06); }
.insta-grid .tall { grid-row: span 2; }
.insta-grid figcaption {
  position: absolute; left: 10px; bottom: 10px;
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.newsletter {
  background: linear-gradient(180deg, #f8e8ee, #f3d5df);
  padding: 80px 0;
  text-align: center;
}

.newsletter p { color: var(--muted); margin: 12px 0 24px; }

.news-form, .footer-news {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-form input, .footer-news input, .contact-form input, .contact-form textarea,
.checkout-form input, .modal-card input, .qty input, .search-bar input {
  border: 1px solid var(--line);
  background: white;
  padding: 13px 16px;
  border-radius: 999px;
  outline: none;
  color: var(--ink);
}

.news-form input { min-width: 280px; }
.contact-form textarea { border-radius: 16px; resize: vertical; }
.news-form input:focus, .contact-form input:focus, .contact-form textarea:focus,
.checkout-form input:focus, .search-bar input:focus { border-color: var(--champagne); }

/* ---------- FAQ / Contact ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 8px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--ink);
}

.faq-item button span { color: var(--champagne); }
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 8px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .answer { max-height: 220px; padding: 0 8px 18px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-meta { list-style: none; margin: 28px 0; }
.contact-meta li { margin-bottom: 16px; }
.contact-meta strong { display: block; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); }
.socials { display: flex; gap: 16px; font-size: 0.85rem; }
.socials a:hover { color: var(--champagne); }

.contact-form, .checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label, .checkout-form label, .modal-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
}

.form-error { color: #b04a64; font-size: 0.85rem; min-height: 1em; }
.fine { font-size: 0.78rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #fff, #f8e8ee);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer h3 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.footer a, .footer p { display: block; color: var(--muted); font-size: 0.9rem; margin: 8px 0; }
.footer a:hover { color: var(--ink); }
.footer-news { margin-top: 14px; }
.footer-news input { flex: 1; min-width: 0; }

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.credit {
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9a3a8 !important;
  margin-top: 6px !important;
}

/* ---------- Shop ---------- */
.shop-page { padding: 48px 0 80px; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filters { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-btn {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--muted);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.sort-label {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label select {
  border: 1px solid var(--line);
  background: white;
  padding: 8px 12px;
  border-radius: 999px;
}

.empty-msg {
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.4rem;
}

/* ---------- Product detail ---------- */
.product-detail { padding: 48px 0 80px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
}

.detail-gallery .main {
  border-radius: 22px;
  overflow: hidden;
  background: var(--cream);
  height: 520px;
}

.detail-gallery .main img { width: 100%; height: 100%; object-fit: cover; }

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  border: 1px solid transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  height: 88px;
  cursor: pointer;
  background: var(--cream);
}

.thumbs button.active { border-color: var(--champagne); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }

.detail-info .price { font-size: 1.4rem; }
.detail-info p { color: var(--muted); margin: 12px 0; }

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 18px 0 24px;
  font-size: 0.9rem;
}

.spec-list strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--champagne); }

.qty-row, .buy-row { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }

.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  width: 38px; height: 42px;
  border: 0; background: white;
  cursor: pointer;
}

.qty input {
  width: 48px;
  text-align: center;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.related { margin-top: 64px; }

/* ---------- Drawers / Modals ---------- */
.nav-drawer, .side-drawer {
  position: fixed;
  top: 0; height: 100%;
  background: #fffafb;
  z-index: 60;
  width: min(380px, 92vw);
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow);
}

.side-drawer { right: 0; left: auto; transform: translateX(110%); }
.nav-drawer.open, .side-drawer.open { transform: none; }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-body { padding: 16px; overflow: auto; flex: 1; }
.drawer-foot { padding: 16px 20px 24px; border-top: 1px solid var(--line); }
.mobile-nav { display: flex; flex-direction: column; padding: 12px 8px; }
.mobile-nav a {
  padding: 14px 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
.drawer-tag { padding: 24px 20px; color: var(--muted); font-style: italic; font-family: var(--serif); }

.scrim {
  position: fixed; inset: 0;
  background: rgba(74, 59, 63, 0.28);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.scrim.show { opacity: 1; pointer-events: auto; }

.line-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.line-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.line-item h4 { font-size: 0.95rem; }
.line-item p { font-size: 0.8rem; color: var(--muted); }
.remove { border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 0.75rem; }
.totals { font-size: 0.92rem; }
.totals div { display: flex; justify-content: space-between; margin: 6px 0; }
.totals .grand { font-weight: 600; font-size: 1.05rem; margin-top: 10px; }

.overlay {
  position: fixed; inset: 0;
  background: rgba(255, 252, 251, 0.96);
  z-index: 70;
  overflow: auto;
  padding: 24px;
}

.search-panel { width: min(1100px, 100%); margin: 20px auto; }
.search-bar { display: flex; gap: 10px; margin-bottom: 24px; }
.search-bar input { flex: 1; font-size: 1.05rem; }

.modal {
  position: fixed; inset: 0;
  background: rgba(74, 59, 63, 0.35);
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  background: white;
  width: min(920px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 22px;
  padding: 24px;
  position: relative;
  animation: fadeUp 0.35s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.modal-card.slim { width: min(420px, 100%); grid-template-columns: 1fr; }
.modal-card img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; }
.modal-close {
  position: absolute;
  top: 10px; right: 14px;
  border: 0; background: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding-bottom: 80px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-summary {
  background: var(--rose);
  border-radius: var(--radius);
  padding: 24px;
  height: fit-content;
}

.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.3s ease;
}

.page-view { min-height: 50vh; background: var(--white); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .category-grid, .product-grid { grid-template-columns: repeat(3, 1fr); }
  .family-grid, .why-grid, .reviews-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .bloom, .about, .contact-wrap, .detail-grid, .checkout-grid, .modal-card { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { gap: 40px; }
  .hero-media img { height: min(540px, 68vh); }
}

@media (max-width: 820px) {
  .desktop-nav { display: none; }
  .icon-btn.hamburger { display: grid; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 40px 0 56px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-content h1 { max-width: none; }
  .hero-media img { height: 420px; }
  .about-copy, .bloom-copy { padding: 40px 24px; }
  .section-head.row { flex-direction: column; align-items: flex-start; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .insta-grid .tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .family-grid, .why-grid, .reviews-grid, .footer-grid, .stats, .two-col { grid-template-columns: 1fr; }
  .hero-actions, .card-actions, .buy-row { flex-direction: column; }
  .btn { width: 100%; }
  .news-form input { min-width: 0; width: 100%; }
  .modal-card img, .detail-gallery .main { height: 300px; }
}
