/* Firdouse Heena storefront — mint & dark-green, gold accent (from the brand mark) */
:root {
  --maroon: #1a2d11;
  --maroon-dark: #0f1c0a;
  --ink: #1c2415;
  --muted: #6f7859;
  --line: #d7ddc3;
  --bg: #f3f6ea;
  --sand: #dfe6c9;
  --gold: #b8863b;
  --ok: #1a7f4b;
  --err: #b3261e;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(20, 32, 13, 0.14);
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.55 "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  position: relative;
}
/* faint brand mark watermark, sitting behind everything */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56vw;
  max-width: 620px;
  aspect-ratio: 1 / 1;
  background: url("../images/brand/logo-full.jpg") center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.site-header, .offerbar, main, .site-footer, dialog.dialog, .drawer, .drawer-backdrop {
  position: relative;
  z-index: 1;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
a { color: var(--maroon); }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border: 1px solid transparent; border-radius: 999px;
  padding: 11px 20px; font-weight: 600; text-decoration: none; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn-primary { background: var(--maroon); color: #fff; box-shadow: 0 4px 14px rgba(26, 45, 17, .22); }
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(26, 45, 17, .32); }
.btn-primary:disabled { background: #b9a7ac; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { border-color: var(--maroon); color: var(--maroon); background: #fff; }
.btn-ghost:hover { background: var(--sand); transform: translateY(-2px); }
.btn.block { display: block; width: 100%; }
.hero-text .btn-primary {
  animation: fadeUp .6s ease both .27s, breathe 3s ease-in-out 1s infinite;
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 4px 14px rgba(26, 45, 17, .22); }
  50% { box-shadow: 0 8px 24px rgba(184, 134, 59, .4); }
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .hero-text .btn-primary { animation: none; }
}

/* ---------- header ---------- */
.offerbar {
  background: var(--maroon); color: #fff; text-align: center;
  font-size: .87rem; padding: 7px 12px; letter-spacing: .01em;
}
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 18px rgba(20, 32, 13, .12); }
.header-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.05rem; color: var(--maroon); text-decoration: none; white-space: nowrap; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text small { font-weight: 600; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.logo-badge { border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(20, 32, 13, .18); flex: none; }
.main-nav {
  order: 3; width: 100%; display: flex; gap: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.main-nav a {
  color: var(--ink); font-size: .89rem; font-weight: 600; white-space: nowrap;
  text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color .18s ease, border-color .18s ease;
}
.main-nav a:hover { color: var(--maroon); border-color: var(--gold); }
.header-actions { order: 2; margin-left: auto; display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: inline-grid; place-items: center; position: relative; width: 38px; height: 38px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 50%; flex: none;
  transition: border-color .18s ease, color .18s ease;
}
.icon-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--ink); border-radius: 999px; min-width: 18px;
  height: 18px; display: inline-grid; place-items: center; font-size: .68rem; padding: 0 4px; font-weight: 700;
}
.cart-count.bump { animation: cartBump .4s ease; }
@keyframes cartBump { 0% { transform: scale(1); } 45% { transform: scale(1.4); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .cart-count.bump { animation: none; }
}
.btn-book { background: var(--maroon); color: #fff; white-space: nowrap; }
.btn-book:hover { background: var(--maroon-dark); color: #fff; transform: translateY(-2px); }
.search-wrap { position: relative; }
.search {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 50;
  width: min(280px, 80vw); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow); padding: 3px;
}
.search input {
  width: 100%; padding: 8px 14px; border: 0; border-radius: 999px;
  background: transparent; color: var(--ink); font-size: .9rem;
}
.search input::placeholder { color: var(--muted); }
@media (min-width: 900px) {
  .header-inner { flex-wrap: nowrap; }
  .main-nav { order: 0; width: auto; flex: 1; justify-content: center; overflow: visible; }
  .header-actions { order: 0; margin-left: 0; }
}

/* ---------- hero ---------- */
.hero { padding: 46px 18px 20px; text-align: center; }
.hero-text { max-width: 640px; margin: 0 auto; }
.hero-text h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); animation: fadeUp .6s ease both .05s; }
.hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 46ch; margin-left: auto; margin-right: auto; animation: fadeUp .6s ease both .16s; }
.hero-text .btn { margin: 8px 6px 0; animation: fadeUp .6s ease both .27s; }
.hero-media img { border-radius: var(--radius); width: 100%; height: auto; object-fit: contain; background: var(--sand); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero-text h1, .hero-text p, .hero-text .btn { animation: none; }
}

/* ---------- shop ---------- */
.shop { padding: 26px 18px 60px; }
.shop-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 18px; margin-bottom: 8px; }
.shop-head h2 { margin: 0; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 6px 13px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  transition: transform .15s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.chip:hover { transform: translateY(-1px); border-color: var(--maroon); color: var(--maroon); }
.chip[aria-selected="true"] { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.chip[aria-selected="true"]:hover { color: #fff; }
.result-note { color: var(--muted); font-size: .88rem; margin: 4px 0 16px; }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: transform .28s ease, box-shadow .28s ease; cursor: pointer; }
.card:hover { box-shadow: 0 16px 32px rgba(26, 45, 17, .16); transform: translateY(-6px); }
.card-media { position: relative; aspect-ratio: 1 / 1; background: var(--sand); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.08); }
.card-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-wrap: wrap; gap: 5px; }
.quick-view {
  position: absolute; left: 50%; bottom: 10px; transform: translate(-50%, 8px);
  background: #fff; color: var(--ink); border: 0; border-radius: 999px;
  padding: 8px 16px; font-size: .8rem; font-weight: 700; box-shadow: var(--shadow);
  opacity: 0; transition: opacity .22s ease, transform .22s ease; white-space: nowrap;
}
.card:hover .quick-view, .card:focus-within .quick-view { opacity: 1; transform: translate(-50%, 0); }
.quick-view:hover { background: var(--maroon); color: #fff; }
@media (hover: none) {
  .quick-view { opacity: 1; transform: translate(-50%, 0); bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .quick-view { transition: none; }
}
.badge { background: var(--maroon); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 7px; border-radius: 5px; letter-spacing: .03em; text-transform: uppercase; }
.badge.soft { background: var(--gold); }
.badge.out { background: #8a8079; }
.card-body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.card-title { font-size: .95rem; font-weight: 600; margin: 0; }
.card-title button { all: unset; cursor: pointer; }
.card-title button:hover { color: var(--maroon); }
.price { display: flex; align-items: baseline; gap: 7px; margin-top: auto; }
.price .now { font-weight: 800; font-size: 1.05rem; }
.price .mrp { color: var(--muted); text-decoration: line-through; font-size: .85rem; }
.price .off { color: var(--ok); font-size: .78rem; font-weight: 700; }
.price .onwards { color: var(--muted); font-size: .78rem; font-weight: 600; }

/* variable pack sizes (quick view) */
.pd-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-sizes button {
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .9rem;
  transition: transform .15s ease, border-color .18s ease, color .18s ease, background-color .18s ease;
}
.pd-sizes button:hover { border-color: var(--maroon); color: var(--maroon); transform: translateY(-1px); }
.pd-sizes button[aria-pressed="true"] { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.pd-sizes button[aria-pressed="true"]:hover { color: #fff; }
.pd-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pd-price .now { font-weight: 800; font-size: 1.2rem; }
.card .btn { padding: 9px 14px; font-size: .9rem; }
.empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- our work gallery ---------- */
.work { padding: 10px 18px 60px; }
.work h2 { margin-bottom: 4px; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.work-grid img {
  width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius);
  transition: transform .4s ease, box-shadow .4s ease;
}
.work-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.work-grid img:first-child { grid-row: span 2; aspect-ratio: 3 / 5; }
@media (min-width: 640px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid img:first-child { grid-row: auto; aspect-ratio: 3 / 4; }
}
@media (prefers-reduced-motion: reduce) {
  .work-grid img { transition: none; }
}

/* ---------- why choose us ---------- */
.center-heading { text-align: center; margin-bottom: 10px; }
.why { padding: 40px 18px 10px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 760px; margin: 24px auto 0; }
.why-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; color: var(--maroon); }
.why-item span { color: var(--ink); font-weight: 600; font-size: .92rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- services ---------- */
.services { padding: 40px 18px 10px; }
.services-grid { display: grid; gap: 16px; margin: 24px 0; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- gift banner ---------- */
.gift-banner { padding: 10px 18px 40px; }
.gift-inner {
  background: var(--maroon); color: #fff; border-radius: var(--radius); padding: 36px 26px;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.gift-inner h2 { margin-bottom: 10px; }
.gift-inner p { color: #d9e2cf; max-width: 46ch; margin: 0 auto 18px; }
.gift-inner .btn-primary { background: var(--gold); color: var(--ink); }
.gift-inner .btn-primary:hover { background: #a5793a; }

/* ---------- testimonials ---------- */
.testimonials { padding: 40px 18px 10px; }
.testi-grid { display: grid; gap: 20px; margin-top: 24px; }
.testi-card {
  position: relative; background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 22px; margin: 0; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(26, 45, 17, .18); }
.testi-card::before {
  content: "“"; position: absolute; top: -6px; right: 16px; font-size: 5rem; line-height: 1;
  font-family: Georgia, serif; color: var(--gold); opacity: .3; pointer-events: none;
}
.testi-card .shot { display: block; overflow: hidden; border-radius: 10px; margin: 0 auto 16px; max-width: 220px; box-shadow: var(--shadow); }
.testi-card .shot img { width: 100%; display: block; transition: transform .5s ease; }
.testi-card:hover .shot img { transform: scale(1.06); }
.testi-card .verified {
  display: inline-flex; align-items: center; gap: 5px; background: var(--maroon); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
}
.testi-card p { font-size: 1.02rem; font-style: italic; margin: 0 0 10px; position: relative; }
.testi-card cite { font-style: normal; font-weight: 600; color: var(--maroon); }
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) {
  .testi-card, .testi-card .shot img { transition: none; }
  .testi-card:hover { transform: none; }
}

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- henna care tips ---------- */
.tips { padding: 40px 18px 10px; }
.tips-grid { display: grid; gap: 16px; margin-top: 24px; }
.tip-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.tip-card h3 { margin-bottom: 8px; font-size: 1.02rem; }
.tip-card p { color: var(--muted); font-size: .92rem; margin: 0; }
@media (min-width: 640px) { .tips-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- instagram ---------- */
.insta { padding: 40px 18px 50px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0 22px; }
.insta-grid img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; transition: transform .3s ease; }
.insta-grid a:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) { .insta-grid img { transition: none; } }

/* ---------- dialogs / drawer ---------- */
dialog.dialog {
  border: 0; border-radius: 14px; padding: 22px; max-width: 560px; width: calc(100% - 32px);
  max-height: min(90vh, 760px); overflow-y: auto;
  box-shadow: var(--shadow); color: var(--ink);
  animation: dialogIn .22s ease;
}
@keyframes dialogIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
dialog.dialog::backdrop { background: rgba(31, 26, 27, .5); }
.dialog-close {
  position: absolute; top: 10px; right: 12px; background: none; border: 0;
  font-size: 1.7rem; line-height: 1; color: var(--muted); transition: color .18s ease, transform .18s ease;
}
.dialog-close:hover { color: var(--maroon); transform: rotate(90deg); }
.product-dialog { position: relative; }
.pd-body { display: grid; gap: 14px; }
.pd-media { border-radius: 10px; background: var(--sand); aspect-ratio: 4 / 3; max-height: 46vh; object-fit: cover; width: 100%; transition: transform .35s ease; }
.pd-media:hover { transform: scale(1.02); }
.pd-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-thumbs img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); cursor: pointer; transition: border-color .18s ease, transform .15s ease; }
.pd-thumbs img:hover { transform: translateY(-2px); border-color: var(--gold); }
.pd-thumbs img[aria-current="true"] { border-color: var(--maroon); }
@media (prefers-reduced-motion: reduce) {
  dialog.dialog { animation: none; }
  .pd-media, .pd-thumbs img, .dialog-close { transition: none; }
  .dialog-close:hover { transform: none; }
}
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { background: var(--sand); border: 0; width: 34px; height: 36px; font-size: 1.1rem; }
.qty input { width: 42px; text-align: center; border: 0; font: inherit; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

.drawer-backdrop { position: fixed; inset: 0; background: rgba(31,26,27,.5); z-index: 140; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(400px, 92vw); background: #fff;
  z-index: 150; display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .25s ease; box-shadow: var(--shadow);
}
.drawer.open { transform: none; }
.drawer-head, .drawer-foot { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-head h2 { margin: 0; font-size: 1.15rem; }
.drawer-foot { border-bottom: 0; border-top: 1px solid var(--line); }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 18px; }
.citem { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.citem img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: var(--sand); }
.citem .ct { font-size: .9rem; font-weight: 600; }
.citem .cp { color: var(--muted); font-size: .85rem; }
.citem .rm { background: none; border: 0; color: var(--err); font-size: .8rem; text-decoration: underline; padding: 4px 0 0; }
.cart-empty { color: var(--muted); text-align: center; padding: 40px 10px; }
.totrow { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 6px; }

/* ---------- checkout form ---------- */
.checkout-dialog { position: relative; max-width: 620px; }
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.field label { font-size: .85rem; font-weight: 600; }
.field input, .field textarea {
  border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; font: inherit; width: 100%;
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--err); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-summary { background: var(--sand); border-radius: 10px; padding: 12px 14px; font-size: .9rem; margin: 6px 0 12px; }
.co-summary .li { display: flex; justify-content: space-between; padding: 2px 0; }
.co-summary .tot { font-weight: 800; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.form-error { background: #fdecea; color: var(--err); border-radius: 8px; padding: 9px 12px; font-size: .88rem; margin: 0 0 10px; }

.success-dialog { text-align: center; }
.success-mark { width: 56px; height: 56px; margin: 4px auto 10px; border-radius: 50%; background: var(--ok); color: #fff; font-size: 2rem; display: grid; place-items: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--maroon); color: rgba(255,255,255,.82); margin-top: 40px; }
.footer-inner { display: grid; gap: 30px; padding-top: 40px; padding-bottom: 30px; }
.footer-inner h3 { color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.footer-brand strong { color: #fff; display: block; margin: 12px 0 6px; font-size: 1.05rem; }
.footer-brand p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.7); }
.footer-script { font-style: italic; color: var(--gold) !important; font-size: .95rem !important; margin: 0 0 4px !important; }
.site-footer nav { display: flex; flex-direction: column; gap: 9px; }
.site-footer nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .9rem; transition: color .18s ease; }
.site-footer nav a:hover { color: var(--gold); }
.footer-contact p { display: flex; align-items: flex-start; gap: 8px; margin: 0 0 9px; font-size: .88rem; color: rgba(255,255,255,.82); }
.footer-contact p svg { flex: none; margin-top: 3px; color: var(--gold); }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.22);
  transition: background-color .18s ease, transform .18s ease;
}
.social-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding: 18px 18px 26px;
  display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.65); }
.footer-bottom nav { flex-direction: row; flex-wrap: wrap; gap: 6px 16px; }
.footer-bottom nav a { font-size: .82rem; }

/* ---------- responsive ---------- */
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; }
}
@media (min-width: 960px) {
  .grid { grid-template-columns: repeat(4, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .drawer { transition: none; }
  .card, .card-media img, .chip { transition: none; }
  .card:hover { transform: none; }
  .card:hover .card-media img { transform: none; }
}

/* ---------- simple content pages ---------- */
.page { max-width: 760px; margin: 0 auto; padding: 40px 18px 70px; }
.page h1 { font-size: 1.8rem; }
.page h2 { font-size: 1.15rem; margin-top: 1.6em; }
.page p, .page li { color: #332c2d; }
.page .back { display: inline-block; margin-bottom: 20px; font-weight: 600; text-decoration: none; }
.page .fillin { background: #fff6d9; border: 1px dashed var(--gold); padding: 2px 6px; border-radius: 4px; font-size: .92em; }
.page .updated { color: var(--muted); font-size: .85rem; }

/* ---------------- AI henna consultant widget ---------------- */
.fh-consultant-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  display: flex; align-items: center; gap: 8px;
  background: var(--maroon); color: #fff; border: 0; border-radius: 999px;
  padding: 12px 18px; font-size: .88rem; font-weight: 700;
  box-shadow: 0 10px 26px rgba(20, 32, 13, .3);
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
}
.fh-consultant-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20, 32, 13, .38); }

.fh-consultant-panel {
  position: fixed; right: 18px; bottom: 84px; z-index: 200;
  width: min(340px, calc(100vw - 32px)); max-height: min(520px, calc(100vh - 120px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden;
}
.fh-consultant-panel[hidden] { display: none; }
.fh-consultant-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; background: var(--maroon); color: #fff;
}
.fh-consultant-close { background: transparent; border: 0; color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer; }
.fh-consultant-log { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; background: var(--bg); }
.fh-bubble { max-width: 88%; padding: 8px 12px; border-radius: 14px; font-size: .86rem; line-height: 1.4; white-space: pre-wrap; }
.fh-bubble-assistant { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.fh-bubble-user { align-self: flex-end; background: var(--maroon); color: #fff; border-bottom-right-radius: 4px; }
.fh-bubble-pending { opacity: .6; }
.fh-recs { display: flex; flex-direction: column; gap: 8px; background: transparent; border: 0; padding: 0; max-width: 100%; }
.fh-rec-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.fh-rec-title { font-weight: 700; font-size: .85rem; }
.fh-rec-meta { color: var(--muted); font-size: .78rem; margin: 2px 0 8px; }
.fh-rec-btn { width: 100%; padding: 7px 10px; font-size: .8rem; }
.fh-consultant-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: #fff; }
.fh-consultant-form input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: .86rem;
}
.fh-consultant-form input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.fh-consultant-form button {
  background: var(--maroon); color: #fff; border: 0; border-radius: 50%;
  width: 36px; height: 36px; flex: none; font-size: 1rem; cursor: pointer;
}
.fh-consultant-form button:hover { background: var(--maroon-dark); }

@media (max-width: 480px) {
  .fh-consultant-fab span:not([aria-hidden]) { display: none; }
  .fh-consultant-panel { right: 10px; left: 10px; width: auto; bottom: 76px; }
}
