:root {
  --ink: #171313;
  --muted: #766a66;
  --line: #eadfdc;
  --cream: #fffaf6;
  --ivory: #fffdfb;
  --nude: #ead2cb;
  --rose: #bd7e74;
  --rose-deep: #8e4f49;
  --gold: #b9925c;
  --shadow: 0 18px 45px rgba(71, 39, 34, .12);
  --soft-shadow: 0 10px 24px rgba(71, 39, 34, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.top-ribbon {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 16px;
  background: #171313;
  color: #fff7ef;
  font-size: 13px;
}
.top-ribbon i { color: var(--gold); margin-right: 6px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(234,223,220,.8);
  background: rgba(255,250,246,.84);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; }
.site-search {
  position: relative;
  width: min(100%, 360px);
  flex: 0 1 360px;
  order: 1;
  margin-right: auto;
}
.site-search-field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-mark {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: var(--rose-deep);
  font-size: 15px;
}
.site-search-input {
  width: 100%;
  height: 44px;
  padding: 0 88px 0 36px;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  outline: none;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(71, 39, 34, .06);
}
.site-search-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(189,126,116,.12);
}
.search-animated-placeholder {
  position: absolute;
  left: 36px;
  right: 94px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c7f7a;
  font-size: 13px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
}
.search-animated-placeholder.visible {
  opacity: 1;
  transform: translateY(-50%);
}
.search-animated-placeholder.exit {
  opacity: 0;
  transform: translateY(calc(-50% - 6px));
}
.search-tool-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #7e6f6b;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.search-tool-btn:hover {
  background: #fff1ed;
  color: var(--rose-deep);
  transform: translateY(-50%) scale(1.03);
}
.search-tool-btn i { font-size: 13px; }
.search-tool-btn[data-search-mic] { right: 38px; }
.search-tool-camera { right: 8px; }
.search-tool-camera input { display: none; }
.site-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  padding: 10px 0;
  border: 1px solid rgba(234,223,220,.95);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.site-search-dropdown.open { display: block; }
.suggestion {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}
.suggestion:hover { background: #fff7f3; }
.suggestion strong { color: var(--ink); }
.suggestion span { color: var(--muted); font-size: 13px; }
.suggestion-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.suggestion-meta i { color: var(--rose-deep); font-size: 11px; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, #171313, #9b625c 58%, #cda56b);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions { order: 2; }
.icon-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); background: #fff; }
.cart-link { position: relative; }
.cart-link span {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--rose-deep);
  color: white;
  font-size: 11px;
}
.top-notification,
.top-account { display: inline-grid; }

.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); }
.btn-ghost { border: 1px solid rgba(23,19,19,.18); background: rgba(255,255,255,.62); color: var(--ink); }
.btn-rose { background: var(--rose-deep); color: white; }
.btn-small { padding: 10px 16px; font-size: 13px; }
.full { width: 100%; }
.lux-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  padding: 13px 15px;
  color: var(--ink);
  outline: none;
}
.lux-input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(189,126,116,.12); }

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 90px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,250,246,.94), rgba(255,250,246,.68) 42%, rgba(255,250,246,.08));
}
.hero-content { position: relative; max-width: 650px; z-index: 1; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0; color: var(--rose-deep); font-size: 12px; font-weight: 800; }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.04; margin: 0; }
h1 { font-size: clamp(56px, 9vw, 118px); }
h2 { font-size: clamp(32px, 5vw, 58px); }
h3 { font-size: 24px; }
.hero-content p:not(.eyebrow) { max-width: 520px; color: #4b403d; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.floating-icons span {
  position: absolute;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  color: var(--rose-deep);
  box-shadow: var(--soft-shadow);
  animation: float 5s ease-in-out infinite;
}
.floating-icons span:nth-child(1) { right: 18%; top: 22%; }
.floating-icons span:nth-child(2) { right: 8%; bottom: 30%; animation-delay: .7s; }
.floating-icons span:nth-child(3) { right: 28%; bottom: 15%; animation-delay: 1.2s; }
@keyframes float { 50% { transform: translateY(-18px) rotate(6deg); } }

.section, .promise-strip, .shop-layout, .product-detail, .cart-layout, .checkout-layout, .dashboard-grid, .info-grid, .faq-list, .coupon-grid, .split-story, .newsletter, .testimonials, .instagram-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 76px);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head a { color: var(--rose-deep); font-weight: 800; }
.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.promise-strip div, .category-tile, .dashboard-card, .info-grid article, .coupon-card, .testimonials article, .summary-card {
  border: 1px solid rgba(234,223,220,.85);
  background: rgba(255,255,255,.68);
  box-shadow: var(--soft-shadow);
}
.promise-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 22px;
  padding: 18px;
  font-weight: 700;
}
.promise-strip i, .category-tile i, .info-grid i, .coupon-card i { color: var(--gold); font-size: 22px; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.category-tile { border-radius: 24px; padding: 24px; min-height: 180px; transition: transform .25s ease, box-shadow .25s ease; }
.category-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-tile p { color: var(--muted); margin-bottom: 0; }
.blush-band { background: linear-gradient(135deg, #fff7f3, #efd5cf); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(234,223,220,.92);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5e8e1;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.product-card:hover .product-media img { transform: scale(1.08); filter: saturate(1.08); }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 999px;
  padding: 7px 11px;
  color: white;
  background: rgba(23,19,19,.86);
  font-size: 12px;
  font-weight: 800;
}
.quick-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s ease;
}
.product-card:hover .quick-actions { opacity: 1; transform: translateY(0); }
.quick-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: white;
  cursor: pointer;
}
.product-info { padding: 18px; }
.product-brand { color: var(--rose-deep); text-transform: uppercase; font-size: 12px; font-weight: 800; margin: 0 0 5px; }
.product-info h3 { font-size: 22px; margin-bottom: 8px; }
.product-info p:not(.product-brand) { color: var(--muted); font-size: 14px; min-height: 44px; }
.rating { color: var(--gold); font-weight: 800; font-size: 14px; }
.rating span { color: var(--muted); font-weight: 500; }
.price-row, .detail-price, .order-line { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 12px; }
del { color: var(--muted); }

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.split-story > div:first-child { max-width: 580px; }
.story-image { min-height: 480px; border-radius: 30px; background-size: cover; background-position: center; box-shadow: var(--shadow); }
.offer-banner {
  margin: 40px clamp(18px, 5vw, 76px);
  border-radius: 34px;
  padding: clamp(30px, 5vw, 58px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: white;
  background: radial-gradient(circle at top left, #c29386, #2b2020 62%);
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials article { border-radius: 24px; padding: 24px; }
.stars { color: var(--gold); }
.instagram-section { background: #fff; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 24px; }
.newsletter { text-align: center; background: linear-gradient(135deg, #f4ded8, #fffaf6); }
.newsletter form { max-width: 560px; display: flex; gap: 10px; margin: 24px auto 0; }

.page-hero {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 90px);
  background: linear-gradient(135deg, #f6ded8, #fffaf6 72%);
}
.page-hero.compact h1 { font-size: clamp(42px, 6vw, 72px); }
.offers-hero, .about-hero { min-height: 360px; }
.shop-layout { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; }
.filters-panel {
  position: sticky;
  top: 94px;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft-shadow);
}
.filters-panel form { display: grid; gap: 14px; }
.filters-panel label { color: var(--muted); font-size: 13px; font-weight: 800; }
.range-row, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-line { display: flex; gap: 8px; align-items: center; }
.shop-toolbar { display: flex; justify-content: space-between; color: var(--muted); margin-bottom: 18px; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 42px; align-items: start; }
.viewer {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: #f2dfd6;
  box-shadow: var(--shadow);
  perspective: 900px;
}
.viewer img, .viewer video { width: 100%; height: 100%; object-fit: cover; transition: transform .12s ease; }
.viewer-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}
.thumbs { display: flex; gap: 10px; margin-top: 14px; }
.thumbs button { position: relative; border: 1px solid var(--line); border-radius: 16px; padding: 0; overflow: hidden; width: 82px; aspect-ratio: 1; cursor: pointer; background: #f5e8e1; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.play-dot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(23,19,19,.22);
  font-size: 18px;
}
.product-copy { display: grid; gap: 18px; }
.detail-price strong { font-size: 34px; }
.stock { font-weight: 800; }
.stock.in { color: #27714a; }
.stock.out { color: #a33d3d; }
.qty-row { display: flex; width: 160px; }
.qty-row button { width: 44px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.qty-row input { border-radius: 0; text-align: center; }
.detail-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.icon-btn.big { width: 50px; height: 50px; }
.coupon-highlight { border: 1px dashed var(--gold); border-radius: 18px; padding: 14px; color: var(--rose-deep); background: #fff; font-weight: 800; }
.accordion details { border-top: 1px solid var(--line); padding: 18px 0; }
.accordion summary { cursor: pointer; font-weight: 900; }
.review-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}
.review-list { display: grid; gap: 14px; }
.review-card, .review-form {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--soft-shadow);
}
.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
}
.review-head strong { color: var(--ink); }
.review-card h3 { font-size: 22px; margin-top: 10px; }
.review-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.review-images img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.review-form {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
}
.review-form textarea { resize: vertical; }
.file-drop {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 124px;
  border: 1px dashed var(--gold);
  border-radius: 20px;
  background: #fffaf6;
  color: var(--rose-deep);
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}
.file-drop input { display: none; }
.before-after { background: #fff; }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.proof-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #f5e8e1;
  box-shadow: var(--soft-shadow);
}
.proof-card img, .proof-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.proof-card span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.82);
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 370px; gap: 28px; align-items: start; }
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  margin-bottom: 12px;
}
.cart-line img { width: 96px; height: 112px; border-radius: 18px; object-fit: cover; }
.cart-qty { display: flex; gap: 8px; align-items: center; }
.summary-card { border-radius: 26px; padding: 22px; position: sticky; top: 94px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.summary-row.total { font-weight: 900; font-size: 20px; border-bottom: 0; }
.summary-card form { display: flex; gap: 8px; margin: 18px 0 10px; }
.checkout-form { border: 1px solid var(--line); border-radius: 28px; padding: 24px; background: rgba(255,255,255,.75); box-shadow: var(--soft-shadow); }
.payment-methods { display: grid; gap: 10px; margin: 18px 0; }

.coupon-grid, .dashboard-grid, .info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.coupon-card, .dashboard-card, .info-grid article { border-radius: 24px; padding: 24px; }
.faq-list { max-width: 900px; margin: auto; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; margin-bottom: 12px; }
.image-fallback { display: grid; place-items: center; height: 100%; color: var(--rose-deep); font-size: 46px; }
.image-fallback.large { min-height: 500px; }

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  padding: 54px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: #fff7ef;
}
.site-footer a { display: block; margin: 8px 0; color: #f4dcd4; }
.footer-brand { color: white; }
.socials { display: flex; gap: 14px; font-size: 22px; }

.modal-shell {
  position: fixed;
  z-index: 80;
  transition: opacity .2s ease, transform .25s ease;
}
.modal-shell {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(23,19,19,.38);
  padding: 18px;
}
.modal-shell.open { display: grid; }
.modal-card {
  position: relative;
  width: min(460px, 100%);
  border-radius: 30px;
  background: var(--cream);
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; right: 16px; top: 16px; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.auth-tabs button { border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; background: white; cursor: pointer; }
.auth-tabs .active { background: var(--ink); color: white; }
.auth-form { display: none; gap: 12px; }
.auth-form.active { display: grid; }
.form-note { color: var(--rose-deep); font-weight: 700; }
.suggestion img { width: 58px; height: 68px; object-fit: cover; border-radius: 12px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translate(-50%, 18px);
  opacity: 0;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.mobile-panel { display: none; }
.mobile-bottom-nav { display: none; }
.reveal { opacity: 1; transform: translateY(0); }
html.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
html.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail, .cart-layout, .checkout-layout, .shop-layout { grid-template-columns: 1fr; }
  .filters-panel, .summary-card, .review-form { position: static; }
}
@media (max-width: 760px) {
  body { padding-bottom: 78px; }
  .top-ribbon { display: none; }
  .site-header {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 12px 14px;
    gap: 8px;
  }
  .site-search {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }
  .site-search-input {
    height: 40px;
    padding-right: 82px;
  }
  .nav-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .top-notification,
  .top-account,
  .nav-actions a[aria-label="Wishlist"] { display: inline-grid; }
  .nav-actions a[aria-label="Cart"] {
    display: inline-grid;
  }
  .nav-actions .icon-btn {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
  }
  .hero { min-height: 68vh; }
  .promise-strip, .product-grid, .testimonials, .coupon-grid, .dashboard-grid, .info-grid, .site-footer { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .category-grid, .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head, .offer-banner, .newsletter form, .summary-card form { align-items: stretch; flex-direction: column; }
  .split-story { grid-template-columns: 1fr; }
  .story-image { min-height: 320px; }
  .cart-line { grid-template-columns: 78px 1fr; }
  .cart-line img { width: 78px; height: 92px; }
  .form-grid, .range-row { grid-template-columns: 1fr; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255,250,246,.96);
    border-top: 1px solid rgba(234,223,220,.95);
    backdrop-filter: blur(18px);
  }
  .mobile-bottom-link {
    position: relative;
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--ink);
    display: grid;
    place-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
  }
  .mobile-bottom-link i { font-size: 18px; }
  .mobile-bottom-link span,
  .mobile-bottom-link label {
    margin: 0;
    line-height: 1;
    font-size: 11px;
    font-weight: 700;
  }
  .mobile-bottom-link-badge span {
    position: absolute;
    top: 4px;
    right: calc(50% - 20px);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--rose-deep);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
  }
}
