:root {
  --rose: #8b2942;
  --rose-deep: #5c1a2c;
  --blush: #f6e6ea;
  --cream: #fff8f3;
  --gold: #c4a574;
  --ink: #1c1412;
  --muted: #6d5b58;
  --line: #ead8d4;
  --white: #fffdfb;
  --shadow: 0 18px 50px rgba(92, 26, 44, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(196, 165, 116, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 10%, rgba(139, 41, 66, 0.06), transparent 50%),
    var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, .logo, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  background: rgba(255, 248, 243, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--rose-deep);
  color: #f8e6ea;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 12px;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.logo { display: inline-flex; align-items: center; gap: 8px; font-size: 28px; }
.logo-mark { color: var(--rose); }
.nav { display: flex; gap: 22px; font-size: 15px; }
.nav a.is-on, .nav a:hover { color: var(--rose); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-field { position: relative; }
.search-field input {
  -webkit-appearance: none;
  appearance: none;
}
.search-field input {
  width: 220px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 16px;
  font-size: 16px;
}
.search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(360px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(47, 22, 30, 0.14);
  z-index: 20;
  overflow: hidden;
  padding: 6px;
}
.search-hit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  color: inherit;
}
.search-hit:hover { background: var(--blush); }
.search-hit img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.search-hit strong { display: block; font-size: 14px; }
.search-hit em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
}
.search-empty {
  margin: 0;
  padding: 14px 12px;
  color: var(--muted);
  font-size: 14px;
}
.icon-btn, .text-btn, button, .btn {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
.icon-btn {
  position: relative;
  font-size: 20px;
  padding: 6px 10px;
}
.cart-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-deep);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(92, 26, 44, 0.12);
}
.cart-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rose);
  color: white;
  border-radius: 99px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--blush);
  color: var(--rose-deep);
  border: 1px solid transparent;
}
.btn-dark { background: var(--rose); color: white; }
.btn-ghost { background: transparent; border-color: var(--line); }
.btn-light { background: #fffdfb; color: var(--rose-deep); }
.btn-ghost-light { background: transparent; border-color: rgba(255,253,251,.45); color: #fffdfb; }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-full { width: 100%; }
.btn:hover { transform: translateY(-1px); }

.kicker {
  color: var(--rose);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.kicker.light { color: #f2c9cf; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 0; flex-wrap: wrap; }

.hero-full {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdfb;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 8, 12, 0.28) 0%, rgba(20, 8, 12, 0.18) 36%, rgba(20, 8, 12, 0.72) 100%),
    linear-gradient(90deg, rgba(20, 8, 12, 0.45), transparent 58%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 140px 0 72px;
}
.hero-copy h1 {
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.92;
  margin: 12px 0 18px;
  max-width: 12ch;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f6d5c8;
}
.hero-lead {
  color: #f3e4e0;
  max-width: 42ch;
  font-size: 18px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-pills span {
  border: 1px solid rgba(255, 253, 251, 0.28);
  background: rgba(255, 253, 251, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

body.is-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(16, 7, 10, 0.42), transparent);
  border-bottom: 0;
  backdrop-filter: none;
}
body.is-home .topbar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 253, 251, 0.14);
  color: #f6e6ea;
}
body.is-home .site-header .logo,
body.is-home .site-header .nav a { color: #fffdfb; }
body.is-home .search-field input {
  background: #fff;
  border-color: rgba(255, 253, 251, 0.85);
  color: var(--ink);
}
body.is-home .cart-btn {
  background: rgba(255, 253, 251, 0.95);
  color: var(--rose-deep);
  border-color: rgba(255, 253, 251, 0.8);
}
body.is-home .site-header .logo-mark { color: #f2c9cf; }
body.is-home .nav a.is-on,
body.is-home .nav a:hover { color: #f6d5c8; }
body.is-home.is-scrolled .site-header {
  position: fixed;
  background: rgba(255, 248, 243, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
body.is-home.is-scrolled .topbar {
  background: var(--rose-deep);
  border-bottom: 0;
  color: #f8e6ea;
}
body.is-home.is-scrolled .site-header .logo,
body.is-home.is-scrolled .site-header .nav a { color: var(--ink); }
body.is-home.is-scrolled .cart-btn {
  background: var(--white);
  color: var(--rose-deep);
  border-color: var(--line);
}
body.is-home.is-scrolled .site-header .logo-mark,
body.is-home.is-scrolled .nav a.is-on,
body.is-home.is-scrolled .nav a:hover { color: var(--rose); }

.section { padding: 80px 0; }
.section h2, .sec-head h2, .atelier h2, .cta-band h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  margin: 0 0 8px;
  line-height: 1.05;
}
.lead { color: var(--muted); margin: 0 0 28px; max-width: 54ch; }
.sec-head { margin-bottom: 32px; }
.sec-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.grid-4, .grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 200px 200px;
  gap: 14px;
}
.occ-tile {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  color: #fffdfb;
}
.occ-tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.occ-tile:nth-child(2) { grid-column: span 2; }
.occ-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.occ-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 7, 10, 0.05), rgba(16, 7, 10, 0.72));
}
.occ-tile span { position: relative; z-index: 1; padding: 22px; }
.occ-tile h3 { margin: 0; font-size: clamp(26px, 3vw, 40px); }
.occ-tile:hover img { transform: scale(1.07); }

.card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.card-media { position: relative; display: block; overflow: hidden; }
.card-media img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card:hover .card-media img { transform: scale(1.06); }
.badge,
.poster-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--white);
  color: var(--rose);
  font-size: 12px;
  font-style: normal;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0;
  text-transform: none;
}
.atelier-poster .poster-tag { top: 16px; left: 16px; }
.card-body { padding: 16px 16px 18px; }
.card-body h3 { margin: 0 0 10px; font-size: 24px; }
.meta { color: var(--muted); font-size: 13px; margin: 0 0 4px; }
.card-row { display: flex; justify-content: space-between; align-items: center; }
.card.is-soldout img { filter: saturate(0.7); }
.badge.is-soldout,
.poster-tag.is-soldout {
  background: var(--rose);
  color: #fff;
}
.sold-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
}

.atelier {
  background: #2a1719;
  color: #f6e6ea;
  padding: 80px 0;
}
.atelier-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.atelier-poster {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1a0e10;
  box-shadow:
    0 0 0 1px rgba(255, 248, 243, 0.08),
    0 28px 70px rgba(0, 0, 0, 0.38);
}
.atelier-poster img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}
.atelier-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 7, 10, 0.72) 100%);
  pointer-events: none;
}
.atelier-poster figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #f8e6ea;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: "DM Sans", system-ui, sans-serif;
}
.about-poster img {
  height: 440px;
}
.atelier p { color: #d9c2bf; max-width: 46ch; }
.promise {
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}
.promise li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(246, 230, 234, 0.12);
}
.promise li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: #e8b4b8;
}

.quotes figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
}
.quotes p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 18px;
}
.quotes figcaption { color: var(--muted); font-size: 13px; }

.cta-band {
  background:
    linear-gradient(135deg, rgba(20, 8, 12, 0.28), rgba(20, 8, 12, 0.55)),
    url("https://images.unsplash.com/photo-1762032313203-b51ec8f65964?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fffdfb;
  border-radius: 32px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.cta-band p { color: #f3e4e0; max-width: 44ch; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  background: var(--white);
  border-radius: 22px;
  padding: 26px 22px;
  border: 1px solid var(--line);
}
.step b { color: var(--rose); font-size: 13px; letter-spacing: 0.14em; }
.step h3 { margin: 8px 0 8px; font-size: 28px; }
.step p { color: var(--muted); margin: 0; }

.site-footer {
  margin-top: 40px;
  background: #2a1719;
  color: #f4e6e4;
  padding: 56px 0 28px;
}
.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 8px;
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 0.9fr);
  gap: 28px;
}
.site-footer .footer-logo,
body.is-home .site-footer .footer-logo,
body.is-home.is-scrolled .site-footer .footer-logo {
  color: #f4e6e4;
  white-space: nowrap;
  line-height: 1;
  font-size: 28px;
}
.site-footer .footer-logo .logo-mark,
body.is-home .site-footer .footer-logo .logo-mark,
body.is-home.is-scrolled .site-footer .footer-logo .logo-mark {
  color: #e8b4b8;
}
.site-footer h4 { margin: 8px 0 14px; font-size: 18px; }
.site-footer p {
  margin: 0 0 10px;
  color: #ead6d3;
  font-size: 14px;
}
.site-footer a { color: #ead6d3; }
.site-footer a:hover { color: #f2c9cf; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 230, 228, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pay-pills span {
  display: inline-block;
  border: 1px solid rgba(244, 230, 228, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  margin-right: 6px;
  color: #e8d4d1;
}
.tiny { font-size: 13px; color: var(--muted); }
.site-footer .tiny { color: #c9b0ad; width: auto; margin: 0; }
.legal-page { max-width: 760px; }
.legal-page h1 { font-size: clamp(40px, 5vw, 58px); margin: 8px 0 16px; }
.legal-page h3 { margin: 28px 0 8px; font-size: 28px; }
.legal-page p { color: var(--muted); }

.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 18, 0.35);
  z-index: 20;
  justify-items: end;
}
.cart-drawer[hidden] { display: none; }
.cart-drawer:not([hidden]) { display: grid; }
.cart-panel {
  width: min(420px, 100%);
  height: 100%;
  background: var(--white);
  padding: 22px;
  overflow: auto;
  box-shadow: var(--shadow);
}
.cart-head, .card-row, .row, .qty { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.line { display: grid; grid-template-columns: 72px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.line img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blush);
}
.cart-foot { padding-top: 16px; }
.row { margin: 8px 0; }
.row.total { font-size: 20px; }
.empty { color: var(--muted); }

.toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
}
.chip.is-on { background: var(--rose); color: white; border-color: var(--rose); }

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px 0;
}
.product-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.product img,
.product-poster img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}
.price { font-size: 32px; }
.qty-box { display: flex; align-items: center; gap: 10px; margin: 18px 0; }

.checkout, .admin { padding: 32px 0 60px; }
body.pay-complete .razorpay-container,
body.pay-complete .razorpay-backdrop,
body.pay-complete iframe[src*="razorpay"],
body.pay-complete iframe[name*="razorpay"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
label { display: block; font-size: 13px; margin: 12px 0 6px; color: var(--muted); }
input, textarea, select {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  height: fit-content;
}
.summary .row span:first-child { min-width: 0; }
.summary .row span:last-child {
  flex-shrink: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.success {
  background: #eef7ef;
  border: 1px solid #b7d8bc;
  color: #1f4d28;
  padding: 16px;
  border-radius: 14px;
  display: none;
}
.success.show { display: block; }
.success.show:has(.thanks) {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
}
.thanks {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px 24px;
  text-align: left;
}
.thanks h2 { font-size: clamp(32px, 4vw, 44px); margin: 6px 0 10px; }
.thanks p { color: var(--muted); margin: 0 0 12px; }
.thanks .order-id {
  display: inline-block;
  background: var(--blush);
  color: var(--rose-deep);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.thanks ul { margin: 0 0 16px; padding-left: 18px; color: var(--ink); }
.thanks .thanks-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.kpi { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.kpi b { font-size: 30px; display: block; }
.order {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.pin-box { max-width: 360px; margin: 60px auto; }

.admin-body { background: var(--cream); min-height: 100vh; }
.admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 24px;
  background: #2a1719;
  color: #f4e6e4;
}
.admin-bar a { color: #ead6d3; }
.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-tab {
  border: 1px solid rgba(244, 230, 228, 0.2);
  color: #f4e6e4;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.admin-tab.is-on { background: var(--rose); border-color: var(--rose); color: #fff; }
.admin-bar-actions { display: flex; gap: 16px; align-items: center; }
.admin-page { padding: 36px 0 64px; }
.admin-table-wrap { overflow: auto; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.check-row { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-bottom: 12px; }
.check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink); }
.check input { width: auto; }

@media (max-width: 900px) {
  .wrap, .nav-wrap, .footer-grid, .footer-bottom {
    width: min(1160px, calc(100% - 28px));
  }
  .product, .atelier-grid, .cta-band, .steps, .grid-2 { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .footer-grid, .occ-grid { grid-template-columns: 1fr 1fr; }
  .occ-grid { grid-template-rows: none; }
  .occ-tile,
  .occ-tile:nth-child(1),
  .occ-tile:nth-child(2) { grid-column: auto; grid-row: auto; height: 220px; }
  .hero-full { min-height: 86vh; }
  .hero-copy { padding: 196px 0 48px; }
  .hero-copy h1 { font-size: clamp(40px, 12vw, 68px); }
  .section { padding: 56px 0; }
  .atelier { padding: 48px 0; }
  .atelier-poster img, .about-poster img, .product img, .product-poster img {
    min-height: 240px;
    height: 360px;
  }
  .nav-wrap { flex-wrap: wrap; padding: 10px 0; }
  .nav {
    display: flex;
    width: 100%;
    order: 3;
    justify-content: space-between;
    gap: 10px;
    font-size: 14px;
    padding-top: 4px;
  }
  .nav-cta { display: none; }
  .site-search {
    order: 4;
    flex: 1 0 100%;
    width: 100%;
    padding: 8px 0 4px;
  }
  .site-search .search-field {
    display: block;
    position: relative;
    width: 100%;
  }
  .site-search .search-field input {
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
  }
  .search-results {
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(58vh, 420px);
    overflow: auto;
  }
  .search-hit { padding: 12px 8px; }
  .cta-band { padding: 36px 22px; border-radius: 22px; }
  .sec-head.split { align-items: start; flex-direction: column; }
  .form { padding: 18px; }
  .cart-panel {
    width: min(420px, 100%);
    padding: 18px 16px max(24px, env(safe-area-inset-bottom));
  }
  .qty button,
  .qty-box .chip {
    width: 44px;
    height: 44px;
  }
  .chip { padding: 10px 14px; min-height: 40px; }
  .site-header { padding-top: env(safe-area-inset-top); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2, .footer-grid, .occ-grid { grid-template-columns: 1fr; }
  .logo { font-size: 24px; }
  .hero-copy { padding: 220px 0 40px; }
  .hero-lead { font-size: 16px; }
  .card-media img { height: 220px; }
  .product-poster img, .product img { height: 300px; }
  .thanks-actions { flex-direction: column; }
  .thanks-actions .btn { width: 100%; }
  .admin-bar { padding: 12px 14px; }
  .topbar { font-size: 11px; padding: 8px 10px; }
}
