:root {
  --brand: #1e3b28;
  --brand-deep: #14281a;
  --brand-mid: #2f5233;
  --gold: #a9702e;
  --star: #e0a83a;
  --text: #23301f;
  --muted: #4c5a45;
  --sage: #eef1e5;
  --page: #fdfcf8;
  --cream: #f3f1ea;
  --line: #dde5d4;
  --white: #fff;
  --header-h: 76px;
  --bottom-h: 68px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --shadow: 0 10px 28px rgba(30,59,40,.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  line-height: 1.55;
  padding-bottom: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

/* Announcement scroll */
.top-bar { background: var(--brand); color: #f4efe4; font-size: 12.5px; font-weight: 500; overflow: hidden; }
.announce-marquee { overflow: hidden; width: 100%; }
.announce-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  animation: marquee-rtl 24s linear infinite; will-change: transform;
}
.announce-item { flex: 0 0 auto; white-space: nowrap; padding: 9px 0 9px 30px; }
.announce-item::after { content: "•"; color: #d4b56a; margin-left: 30px; }
.announce-item strong { color: #f0d39a; }
@keyframes marquee-rtl {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 18px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--sage); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--brand); line-height: 1.1;
}
.brand-tag {
  font-size: 9px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px;
}
.desk-nav { display: flex; gap: 18px; margin-left: auto; }
.desk-nav a { font-size: 14px; font-weight: 500; color: var(--text); }
.desk-nav a:hover, .desk-nav a.active { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.menu-trigger { display: none; }
.order-btn { margin-left: 6px; }
.icon-btn {
  width: 40px; height: 40px; border: 0; background: transparent; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand); cursor: pointer; position: relative;
}
.icon-btn:hover { background: var(--sage); }
.icon-btn svg {
  width: 20px; height: 20px; stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.badge {
  position: absolute; top: 3px; right: 3px; min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 999px; background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 600; display: none; align-items: center; justify-content: center;
}
.badge.show { display: inline-flex; }

.search-panel {
  display: none; border-top: 1px solid var(--line); background: #fff; padding: 12px 0 14px;
}
.search-panel.open { display: block; }
.search-wrap { position: relative; }
.search-wrap input {
  width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 999px;
  padding: 0 18px; background: var(--page);
}
.search-results {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); max-height: 300px; overflow: auto; z-index: 120;
}
.search-results.open { display: block; }
.search-item {
  display: flex; gap: 10px; align-items: center; padding: 10px 12px;
  border-bottom: 1px solid var(--sage);
}
.search-item img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }
.search-item strong { display: block; font-size: 13px; }
.search-item span { font-size: 12px; color: var(--muted); }
.search-empty { padding: 14px; color: var(--muted); font-size: 13px; }

.menu-overlay {
  position: fixed; inset: 0; background: rgba(20,40,26,.45);
  opacity: 0; pointer-events: none; transition: .25s; z-index: 200;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.side-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 88vw);
  background: #fff; transform: translateX(100%); transition: .28s; z-index: 210;
  padding: 22px 18px; display: flex; flex-direction: column; gap: 6px;
}
.side-menu.open { transform: translateX(0); }
.side-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.side-menu-head h3 { font-family: var(--font-display); color: var(--brand); font-size: 22px; }
.side-menu a { padding: 11px 10px; border-radius: 10px; font-weight: 500; }
.side-menu a:hover { background: var(--sage); }
.menu-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }

/* ===== HERO full-bleed (identical composition mobile/desktop) ===== */
.hero {
  position: relative;
  min-height: clamp(480px, 68vh, 640px);
  display: flex; align-items: center;
  overflow: hidden;
  background: #1a2e22;
  container-type: inline-size;
  container-name: hero;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 72% center;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(253,252,248,.94) 0%, rgba(253,252,248,.82) 28%, rgba(253,252,248,.35) 52%, rgba(253,252,248,0) 70%),
    linear-gradient(180deg, rgba(20,40,26,.08) 0%, rgba(20,40,26,.05) 60%, rgba(20,40,26,.18) 100%);
}
.hero-badge {
  position: absolute; top: clamp(16px, 3vw, 36px); right: clamp(16px, 4vw, 48px);
  z-index: 3; width: clamp(78px, 9cqi, 108px); height: clamp(78px, 9cqi, 108px);
  border-radius: 50%; background: var(--brand); color: #f5efe3;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-size: clamp(10px, 1.15cqi, 13px);
  font-style: italic; line-height: 1.25;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(36px, 6vw, 72px) 0;
  max-width: min(560px, 52%);
}
.eyebrow {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brand); font-weight: 600;
}
.eyebrow.light { color: var(--brand-mid); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15; color: var(--brand-deep); font-weight: 700;
  margin: 12px 0;
}
.hero-desc {
  color: var(--muted); font-size: clamp(13px, 1.3vw, 15.5px);
  max-width: 42ch; margin-bottom: 16px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.hero-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px;
}
.hf {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: var(--brand-deep);
}
.hf i {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(30,59,40,.1);
  display: grid; place-items: center; font-style: normal; font-size: 13px; flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 44px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-mid); }
.btn-ghost {
  background: rgba(255,255,255,.9); border-color: #222; color: var(--text);
}
.btn-ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-sm { height: 38px; padding: 0 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* Trust bar */
.trust-bar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 16px 0;
}
.trust-cell {
  text-align: center; padding: 8px 10px;
  border-right: 1px solid var(--line);
}
.trust-cell:last-child { border-right: 0; }
.trust-cell strong { display: block; font-size: 13.5px; color: var(--brand); }
.trust-cell span { font-size: 12px; color: var(--muted); }

/* Sections */
.section { padding: clamp(42px, 6vw, 70px) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); color: var(--brand);
}
.section-link { font-size: 14px; font-weight: 500; color: var(--brand-mid); }

.filters {
  display: flex; flex-wrap: nowrap; gap: 8px; overflow-x: auto;
  margin-bottom: 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; border: 1px solid var(--line); background: #fff; color: var(--muted);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 500; cursor: pointer;
}
.chip.active, .chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.product-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: .2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card .thumb { position: relative; background: var(--cream); }
.product-card .thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.wish-toggle {
  position: absolute; top: 8px; right: 8px; width: 32px; height: 32px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); color: var(--gold); cursor: pointer;
  display: grid; place-items: center;
}
.wish-toggle.active { background: var(--brand); color: #fff; }
.wish-toggle svg { width: 15px; height: 15px; fill: currentColor; stroke: none; }
.product-card .body { padding: 12px; }
.product-card h3 { font-family: var(--font-display); font-size: 15px; color: var(--brand); margin-bottom: 2px; }
.product-meta { font-size: 12px; color: var(--muted); }
.price-row { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 10px; }
.price { font-weight: 700; color: var(--brand-deep); }
.rating { color: var(--star); font-size: 11px; font-weight: 600; }
.card-actions { display: flex; gap: 6px; }
.card-actions .btn { flex: 1; height: 36px; font-size: 12px; padding: 0 8px; }
.card-actions .btn-outline {
  background: #fff; border: 1px solid var(--brand); color: var(--brand);
}

/* Promo */
.promo-section { padding-top: 0; }
.promo-grid {
  display: grid; grid-template-columns: 1.1fr 1.1fr .85fr; gap: 16px; align-items: stretch;
}
.promo-media { border-radius: 16px; overflow: hidden; min-height: 280px; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.promo-copy {
  background: #e7efe6; border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.promo-copy h2 {
  font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); color: var(--brand); line-height: 1.2;
}
.promo-copy p { color: var(--muted); font-size: 14px; }
.promo-quote {
  background: var(--cream); border-radius: 16px; padding: 32px 24px;
  display: grid; place-items: center; text-align: center;
}
.promo-quote p {
  font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 2vw, 24px);
  color: var(--brand); line-height: 1.35;
}

/* Categories circular marquee */
.cat-marquee, .t-marquee { overflow: hidden; width: 100%; }
.cat-marquee-track, .t-marquee-track {
  display: flex; flex-wrap: nowrap; gap: 22px; width: max-content;
  animation: marquee-rtl 28s linear infinite; padding: 8px 14px;
  will-change: transform;
}
.t-marquee-track { animation-duration: 32s; }
.cat-marquee .cat-card {
  flex: 0 0 auto; width: 140px; text-align: center; background: transparent; border: 0;
}
.cat-marquee .cat-card img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px;
  border: 4px solid #fff; box-shadow: 0 8px 20px rgba(30,59,40,.12); aspect-ratio: auto;
}
.cat-marquee .cat-card .body { padding: 0; }
.cat-marquee .cat-card h3 { font-family: var(--font-display); font-size: 15px; color: var(--brand); }
.cat-marquee .cat-card p { display: none; }
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cat-grid .cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.cat-grid .cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cat-grid .cat-card .body { padding: 12px 14px; }
.cat-grid .cat-card h3 { font-family: var(--font-display); color: var(--brand); font-size: 17px; }

/* Commitment */
.commit-grid {
  display: grid; grid-template-columns: 1.1fr 1.2fr .9fr; gap: 22px; align-items: center;
}
.commit-copy h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); color: var(--brand); margin: 8px 0 12px;
}
.commit-copy p { color: var(--muted); margin-bottom: 16px; }
.commit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.commit-card {
  background: var(--sage); border-radius: 14px; padding: 16px;
}
.commit-card strong { display: block; color: var(--brand); margin-bottom: 4px; }
.commit-card span { font-size: 13px; color: var(--muted); }
.commit-visual { border-radius: 16px; overflow: hidden; min-height: 260px; }
.commit-visual img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

/* Delivery */
.delivery-section { background: var(--cream); }
.delivery-grid {
  display: grid; grid-template-columns: 1fr .8fr 1.2fr; gap: 20px; align-items: center;
}
.delivery-copy h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 30px); color: var(--brand); margin: 8px 0 10px;
}
.delivery-copy p { color: var(--muted); margin-bottom: 14px; }
.delivery-art {
  background: #fff; border-radius: 16px; min-height: 200px;
  display: grid; place-items: center; text-align: center; border: 1px solid var(--line);
}
.india-pin { font-size: 56px; }
.delivery-art p { color: var(--brand); font-weight: 600; margin-top: 6px; }
.delivery-table-wrap {
  background: #fff; border-radius: 16px; padding: 18px; border: 1px solid var(--line);
}
.delivery-table-wrap h3 {
  font-size: 15px; color: var(--brand); margin-bottom: 12px; font-weight: 600;
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--sage); font-size: 13.5px; }
th { background: var(--brand); color: #fff; }
th:first-child { border-radius: 8px 0 0 0; }
th:last-child { border-radius: 0 8px 0 0; }

/* Testimonials */
.t-marquee .t-card {
  flex: 0 0 300px; width: 300px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 20px;
}
.t-card .t-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-display);
}
.t-card .stars { color: var(--star); font-size: 12px; letter-spacing: 1px; }
.t-card p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.t-card strong { display: block; color: var(--brand); }
.t-card span { font-size: 12px; color: var(--gold); }

/* Inquiry */
.inquiry-grid {
  display: grid; grid-template-columns: .85fr 1.35fr; gap: 28px; align-items: start;
}
.inquiry-copy h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); color: var(--brand); margin: 8px 0 10px;
}
.inquiry-copy p { color: var(--muted); }
.inquiry-phone { margin-top: 16px; font-size: 18px; font-weight: 600; color: var(--brand); }
.inquiry-form {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  display: grid; gap: 12px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { display: grid; gap: 6px; font-size: 13px; font-weight: 500; color: var(--brand); }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 12px; background: var(--page);
}
textarea { min-height: 110px; resize: vertical; }

/* Page helpers for other pages */
.page-hero { padding: 28px 0 8px; }
.page-hero h1 { font-family: var(--font-display); font-size: 32px; color: var(--brand); }
.page-hero p { color: var(--muted); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.form-grid { display: grid; gap: 12px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.about-grid img { border-radius: 16px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature-list { display: grid; gap: 10px; margin-top: 14px; }
.feature-item { background: var(--sage); border-radius: 12px; padding: 12px; }
.feature-item strong { display: block; color: var(--brand); }
.feature-item span { font-size: 13px; color: var(--muted); }
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.cart-list { display: grid; gap: 10px; }
.line-item {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; align-items: center;
  padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.line-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; }
.qty-ctrl { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-ctrl button {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--line);
  background: var(--sage); cursor: pointer;
}
.cart-summary { margin-top: 14px; padding: 16px; border-radius: 14px; background: var(--sage); }
.cart-summary .row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.cart-summary .total {
  font-size: 17px; font-weight: 700; color: var(--brand);
  border-top: 1px solid var(--line); padding-top: 8px; margin-top: 6px;
}
.empty-state {
  text-align: center; padding: 40px 16px; border: 1px dashed var(--line);
  border-radius: 14px; background: #fff; color: var(--muted);
}
.empty-state h3 { font-family: var(--font-display); color: var(--brand); margin-bottom: 6px; }

/* Footer */
.site-footer { background: var(--brand-deep); color: #d7e2cf; padding: 44px 0 22px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 22px; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; margin-bottom: 10px; }
.site-footer h4 { font-family: var(--font-display); color: #fff; margin-bottom: 10px; font-size: 17px; }
.site-footer a, .site-footer span { color: #b7c6ad; font-size: 14px; display: inline-block; margin-bottom: 7px; }
.footer-brand p { font-size: 13.5px; color: #9fae93; max-width: 32ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px;
  font-size: 12.5px; color: #8f9f84; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}

/* Bottom nav */
.bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0; height: var(--bottom-h);
  background: rgba(255,255,255,.97); border-top: 1px solid var(--line);
  display: none; z-index: 150; box-shadow: 0 -6px 20px rgba(30,59,40,.08);
}
.bottom-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; font-size: 10px; font-weight: 500; color: var(--muted); position: relative;
}
.bottom-bar a svg {
  width: 20px; height: 20px; stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.bottom-bar a.active { color: var(--brand); }
.bottom-bar .badge { top: 4px; right: calc(50% - 16px); }
.toast {
  position: fixed; left: 50%; bottom: calc(var(--bottom-h) + 16px);
  transform: translateX(-50%) translateY(16px); background: var(--brand); color: #fff;
  padding: 9px 14px; border-radius: 999px; font-size: 13px; opacity: 0;
  pointer-events: none; transition: .25s; z-index: 300; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   MOBILE ONLY — desktop styles above remain untouched
   Breakpoint: max-width 767px (phones)
   ========================================================= */
@media (max-width: 767px) {
  .container { width: calc(100% - 28px); }

  /* --- Header --- */
  .desk-nav { display: none !important; }
  .menu-trigger { display: inline-flex !important; }
  .order-btn { display: none !important; }
  .header-actions .icon-btn[aria-label="Account"] { display: none; }
  .site-header { --header-h: 64px; }
  .header-inner { height: 64px; gap: 8px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 15px; }
  .brand-tag { max-width: 120px; font-size: 7.5px; }
  .header-actions { margin-left: auto; gap: 2px; }
  .icon-btn { width: 38px; height: 38px; }

  /* --- Hero: image on top, content stacked below (readable) --- */
  .hero {
    display: block;
    min-height: 0;
    overflow: visible;
    background: var(--page);
  }
  .hero-bg {
    position: relative;
    height: min(46vw, 220px);
    min-height: 180px;
  }
  .hero-bg img {
    object-fit: cover;
    object-position: 65% center;
  }
  .hero-shade {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: min(46vw, 220px);
    min-height: 180px;
    background: linear-gradient(180deg, rgba(20,40,26,.12) 0%, rgba(20,40,26,.05) 40%, rgba(253,252,248,.55) 100%);
    pointer-events: none;
  }
  .hero-badge {
    top: 12px;
    right: 14px;
    width: 72px;
    height: 72px;
    font-size: 10px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 0 8px;
    background: var(--page);
  }
  .hero h1 {
    font-size: 26px;
    margin: 10px 0;
    max-width: none;
  }
  .hero h1 br { display: none; }
  .hero-desc {
    font-size: 14px;
    max-width: none;
    margin-bottom: 16px;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }
  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }
  .hero-actions .btn {
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
    min-width: 120px;
  }
  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }
  .hf { font-size: 12px; }
  .hf i { width: 28px; height: 28px; font-size: 13px; }
  .eyebrow { font-size: 11px; letter-spacing: .2em; }

  /* --- Trust / USP: 2-column readable cards --- */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .trust-cell {
    text-align: left;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    border-right: 1px solid var(--line);
  }
  .trust-cell strong { font-size: 13px; }
  .trust-cell span { font-size: 11.5px; }

  /* --- Products: 2-column --- */
  .section { padding: 36px 0; }
  .section-head h2 { font-size: 24px; }
  .section-link { font-size: 13px; }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-card h3 { font-size: 14px; line-height: 1.3; }
  .product-card .body { padding: 10px; }
  .product-meta { font-size: 11.5px; }
  .price { font-size: 14px; }
  .card-actions { flex-direction: column; gap: 6px; }
  .card-actions .btn {
    width: 100%;
    height: 40px;
    font-size: 12.5px;
  }

  /* --- Herbal Solutions: stack --- */
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .promo-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
  .promo-media img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }
  .promo-copy {
    padding: 22px 18px;
    gap: 10px;
    border-radius: 14px;
  }
  .promo-copy h2 { font-size: 22px; }
  .promo-copy p {
    font-size: 14px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .promo-quote {
    grid-column: auto;
    padding: 22px 18px;
    min-height: 100px;
    border-radius: 14px;
  }
  .promo-quote p { font-size: 18px; }

  /* --- Categories: keep horizontal scroll carousel --- */
  .cat-marquee-track {
    animation-duration: 22s;
    gap: 16px;
    padding: 6px 14px 10px;
  }
  .cat-marquee .cat-card { width: 118px; }
  .cat-marquee .cat-card img {
    width: 100px;
    height: 100px;
  }
  .cat-marquee .cat-card h3 { font-size: 13px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* --- Why Choose Us: stack --- */
  .commit-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .commit-copy h2 { font-size: 24px; }
  .commit-copy p { font-size: 14px; }
  .commit-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .commit-card { padding: 14px; }
  .commit-card strong { font-size: 13.5px; }
  .commit-card span { font-size: 12px; }
  .commit-visual {
    display: block;
    grid-column: auto;
    max-height: none;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }
  .commit-visual img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  /* --- Delivery: vertical stack + scrollable table --- */
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .delivery-copy h2 { font-size: 24px; }
  .delivery-copy p { font-size: 14px; }
  .delivery-art {
    display: grid;
    min-height: 140px;
    border-radius: 14px;
  }
  .delivery-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .delivery-table-wrap table { min-width: 320px; }
  th, td { font-size: 13px; padding: 10px; }

  /* --- Testimonials: swipeable marquee cards --- */
  .t-marquee-track {
    animation-duration: 26s;
    gap: 12px;
    padding: 4px 14px;
  }
  .t-marquee .t-card {
    flex: 0 0 min(300px, 82vw);
    width: min(300px, 82vw);
    padding: 16px;
  }

  /* --- Inquiry form: single column --- */
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .inquiry-copy h2 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .inquiry-form { padding: 16px; }
  input, select, textarea {
    padding: 13px 14px;
    font-size: 16px; /* prevents iOS zoom */
  }
  .btn-block { height: 48px; font-size: 15px; }

  /* --- Footer: stacked --- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* --- Bottom nav --- */
  .bottom-bar { display: flex; }
  body { padding-bottom: calc(var(--bottom-h) + 14px); }

  .announce-track { animation-duration: 18s; }
  .about-grid,
  .form-grid.two { grid-template-columns: 1fr; }

  /* Prevent page overflow */
  html, body { overflow-x: hidden; }
  img { max-width: 100%; height: auto; }
}

/* Very small phones */
@media (max-width: 359px) {
  .brand-tag { display: none; }
  .hero h1 { font-size: 22px; }
  .product-card h3 { font-size: 12.5px; }
  .trust-cell strong { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .announce-track, .cat-marquee-track, .t-marquee-track { animation-duration: 80s; }
}
