/* ============================================================
   VASTU HELPLINE â€” Shoopy preview (base theme: Cauvery)
   Palette tuned to the maroon logo + copper/brass product line
   ============================================================ */
:root {
  /* Brand / identity */
  --brand: #5c2326;
  /* deep maroon â€” extracted from logo */
  --brand-dark: #3a1418;
  /* footer / deep surfaces */
  --brand-soft: #7c3a3e;
  /* soft maroon */
  /* Accent (decorative gold/brass) */
  --gold: #c9a24b;
  --gold-deep: #a9842f;
  /* Deal / discount (distinct from CTA + accent) */
  --deal: #c25a2b;
  /* terracotta-orange â€” % off badges only */
  /* Copper eyebrow tint */
  --copper: #b5733f;
  /* Success / WhatsApp */
  --wa: #1fa855;
  --header-accent: #5c2326 !important;
  /* Neutrals */
  --cream: #fbf6ef;
  /* page bg (ivory) */
  --cream-2: #f4eadb;
  /* alt surface */
  --surface: #ffffff;
  --ink: #2b1a17;
  /* warm near-black text */
  --muted: #7a6a5f;
  /* secondary text */
  --line: #e9dfd0;
  /* hairline borders */
  --star: #e0a93b;
  /* Shape & layout */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(44px, 6vw, 78px);
  --shadow-sm: 0 2px 10px rgba(92, 35, 38, 0.06);
  --shadow: 0 12px 34px rgba(92, 35, 38, 0.12);
  --font-head: "Marcellus", serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-ghost:hover {
  background: var(--brand);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--brand-dark);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
}

.btn-wa {
  background: var(--wa);
  color: #fff;
}

.btn-wa:hover {
  filter: brightness(0.94);
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.section-heading {
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--brand);
}

.sec-head .eyebrow {
  margin-bottom: 7px;
}

.link-more {
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.link-more:hover {
  gap: 11px;
  transition: gap 0.2s;
}

/* ---------- 1. Notice bar ---------- */
.notice {
  /* Don't occupy full width */
  background: transparent;
  /* Background should be on marquee */
  color: #f2e2d2;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.notice .wrap {
  display: inline-flex;
  /* Inline instead of full width */
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 9px 0;
  white-space: nowrap;
}

.notice b {
  color: var(--gold);
  font-weight: 600;
}

.notice .om {
  color: var(--gold);
}

.notice .dot {
  opacity: 0.4;
}

.notice-message marquee {
  display: block;
  width: 100%;
  background: var(--brand-dark);
  padding: 0 16px;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .notice .hide-sm {
    display: none;
  }
}

/* ---------- 2. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header .bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-logo img {
  height: 42px;
  width: auto;
}

.brand-logo .bn {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--brand);
  line-height: 1;
}

.brand-logo .bt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-link {
  font-size: 16px !important;
}

.nav-link {
  font-size: 16px !important;
  display: flex;
  gap: 22px;
  margin-inline: auto;
  font-weight: bold !important;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brand);
  transition: width 0.22s;
}

.nav-link :hover::after {
  width: 100%;
}

.nav-link :hover {
  color: var(--brand);
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  min-width: 210px;
}

.search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13.5px;
  width: 100%;
  color: var(--ink);
}

.search svg {
  color: var(--muted);
  flex: none;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--cream-2);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--deal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.hamburger {
  display: none;
}

.head-wa {
  display: inline-flex;
}

@media (max-width: 1080px) {
  .search {
    min-width: 150px;
  }

  .nav {
    gap: 16px;
  }
}

@media (max-width: 980px) {

  .nav,
  .search,
  .head-wa {
    display: none;
  }

  .hamburger {
    display: grid;
  }

  .nav {
    margin-inline: 0;
  }
}

/* mobile drawer */
.drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(43, 17, 21, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 80;
}

.drawer-bg.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  max-width: 320px;
  background: var(--cream);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}

.drawer.open {
  transform: none;
}

.drawer .d-search {
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
}

.drawer .d-search input {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
}

.drawer a.d-link {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- 3. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.5, 0, 0.1, 1);
}

.slide {
  min-width: 100%;
}

.slide-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 64px) var(--gutter);
}

.slide-copy .eyebrow {
  margin-bottom: 14px;
}

.slide-copy h1 {
  font-size: clamp(30px, 5vw, 54px);
  color: var(--brand);
  margin-bottom: 16px;
}

.slide-copy h1 em {
  font-style: italic;
  color: var(--copper);
}

.slide-copy p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 12.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}

.hero-trust svg {
  color: var(--gold-deep);
  flex: none;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%,
      #7c3a3e 0%,
      #5c2326 55%,
      #3a1418 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 42%,
      transparent 0 26px,
      rgba(201, 162, 75, 0.1) 26px 27px);
}

.hero-visual img {
  position: relative;
  width: 74%;
  height: 74%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

.hero-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(251, 246, 239, 0.94);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 2;
}

.hero-tag b {
  color: var(--deal);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(251, 246, 239, 0.9);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand);
  cursor: pointer;
  z-index: 5;
}

.hero-arrow:hover {
  background: var(--brand);
  color: #fff;
}

.hero-arrow.prev {
  left: 14px;
}

.hero-arrow.next {
  right: 14px;
}

.dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  padding: 0 0 22px;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: 0.2s;
}

.dots button.active {
  background: var(--brand);
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 840px) {
  .slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slide-copy p {
    margin-inline: auto;
  }

  .hero-ctas,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }
}

/* ---------- 4. Trust strip ---------- */
.trust {
  background: var(--brand);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 26px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex: none;
}

.trust-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.trust-item p {
  font-size: 12px;
  color: #ead3c2;
}

@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 460px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ---------- 5. Featured Helix spotlight ---------- */
.spotlight {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.spot-media {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  padding: 8%;
  box-shadow: var(--shadow-sm);
}

.spot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spot-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
}

.spot-copy h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  color: var(--brand);
  margin: 10px 0 14px;
}

.spot-copy>p {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 20px;
}

.spot-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 24px;
}

.spot-feats li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.spot-feats svg {
  color: var(--gold-deep);
  flex: none;
  margin-top: 2px;
}

.spot-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.spot-price .now {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--brand);
}

.spot-price .mrp {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 17px;
}

.spot-price .off {
  background: #f6e4cf;
  color: var(--deal);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.spot-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spot-media {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .spot-feats {
    grid-template-columns: 1fr;
  }
}

/* ---------- 6. Category showcase ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat {
  display: block;
  text-align: center;
  group: cat;
}

.cat-thumb {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 14%;
  transition: 0.22s;
  position: relative;
}

.cat:hover .cat-thumb {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.cat:hover .cat-thumb img {
  transform: scale(1.05);
}

.cat-thumb.ph {
  background: radial-gradient(circle at 50% 38%, var(--cream-2), #eadcc6);
  padding: 0;
}

.cat-thumb.ph .glyph {
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--gold-deep);
}

.cat h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin-top: 11px;
  color: var(--ink);
}

.cat span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ---------- 7. Solve by life area ---------- */

.solve .section-heading {
  color: #fff;
}

.solve .eyebrow {
  color: var(--gold);
}

.solve-sub {
  color: #d9c2b2;
  max-width: 54ch;
  margin: -12px 0 26px;
}

.solve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solve-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: 0.2s;
}

.solve-card:hover {
  background: rgba(201, 162, 75, 0.12);
  transform: translateY(-4px);
}

.solve-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 162, 75, 0.16);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.solve-card h3 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 7px;
}

.solve-card p {
  font-size: 13px;
  color: #d9c2b2;
  margin-bottom: 14px;
}

.solve-card .go {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

@media (max-width: 860px) {
  .solve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .solve-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- product card (shared) ---------- */
.pr-long-card {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.pr-long-card::-webkit-scrollbar {
  display: none;
}

.pr-long-card .card {
  min-width: 240px;
  scroll-snap-align: start;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: #ead9c2;
}

.card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 13%;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card-off {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--deal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}

.card-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(251, 246, 239, 0.92);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--brand);
  cursor: pointer;
}

.card-wish:hover {
  background: var(--brand);
  color: #fff;
}

.card-body {
  padding: 13px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.card-cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.pr-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--ink);
}

.card .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.card .rating .stars {
  color: var(--star);
  letter-spacing: 1px;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.pr-sale-price {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--brand);
}

.pr-mrp-price {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.pr-outlined-button {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 13.5px;
  background-color: #5C2326;
  color: #fff;
  border-radius: 30px;
}

.pr-outlined-button:hover {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 13.5px;
  background-color: #381416;
  color: #fff;
  border-radius: 30px;
}

.pr-plus-minus-button {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 13.5px;
  background-color: #5C2326;
  color: #fff;
  border-radius: 30px;
}

.pr-plus-minus-button:hover {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 13.5px;
  background-color: #5C2326;
  color: #fff;
  border-radius: 30px;
}

@media (max-width: 860px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pr-long-card .card {
    min-width: 200px;
  }
}

.row-nav {
  display: flex;
  gap: 8px;
}

.row-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.row-nav button:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ---------- 8. Promo banners ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.promo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
}

.promo.kit {
  background: radial-gradient(circle at 80% 30%, #7c3a3e, #3a1418);
}

.promo.consult {
  background: linear-gradient(120deg, #a9842f, #7a5d1d);
}

.promo .pc {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.promo .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.promo.consult .eyebrow {
  color: #fff;
  opacity: 0.85;
}

.promo h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 10px;
}

.promo p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.promo-img {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 46%;
  max-width: 280px;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.promo.consult .promo-img {
  opacity: 0.96;
}

@media (max-width: 760px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo .pc {
    max-width: 64%;
  }
}

@media (max-width: 440px) {
  .promo .pc {
    max-width: 78%;
  }

  .promo-img {
    opacity: 0.5;
  }
}

/* ---------- 9. Testimonials ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tst {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.tst .stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.tst p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 16px;
}

.tst .who {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tst .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 17px;
}

.tst .who b {
  font-size: 13.5px;
  font-weight: 600;
}

.tst .who span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .tst-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ---------- 10. Footer ---------- */
.footer {
  background: var(--brand-dark);
  color: #e7d2c2;
  padding-top: 56px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 38px;
}

.foot-brand .fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.foot-brand .fb-logo .bn {
  font-family: var(--font-head);
  font-size: 22px;
  color: #fff;
}

.foot-brand p {
  font-size: 13.5px;
  color: #cdb6a6;
  max-width: 34ch;
  margin-bottom: 16px;
}

.foot-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  margin-bottom: 9px;
  color: #e7d2c2;
}

.foot-contact a:hover {
  color: var(--gold);
}

.foot-contact svg {
  color: var(--gold);
  flex: none;
}

.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
}

.footer li a {
  font-size: 13.5px;
  color: #cdb6a6;
}

.footer li a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #e7d2c2;
}

.socials a:hover {
  background: var(--gold);
  color: var(--brand-dark);
}

.pay {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pay span {
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 5px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #b89e8e;
}

@media (max-width: 880px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* floating whatsapp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(31, 168, 85, 0.45);
}

.wa-float:hover {
  transform: scale(1.06);
}

#notice,
.notice {
  padding: 0px !important;
  background-color: #3a1418 !important;
}

.search-container {
  padding: 0px 10px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
}

.search-container .input-container {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  width: 280px !important;
}

#desktop-search-bar {
  color: #000 !important;
}

.input-container .search-box {
  border-bottom: none !important;
}

.app-bar-main {
  background: rgba(251, 246, 239, 0.92) !important;
  border-bottom: #5c2326 !important;
}

.search-icon svg {
  color: #7a6a5f !important;
}

.search-container {
  border-radius: 999px !important;
  border-color: #e9dfd0 !important;
  background-color: #fff !important;
  height: 40px !important;
}

.badge {
  background-color: #5c2326 !important;
  color: #fff !important;
}

.page-container {
  max-width: 1280px !important;
}

.section {
  background-color: #fbf6ef !important;
}

[class^="section-wrapper-"] {
  background-color: #fbf6ef !important;
}

.section-wrapper-2 {
  background-color: #f9f2e8 !important;
}

.section-wrapper-1 {
  background-color: #5c2326 !important;
}

.section-wrapper-4 {
  background-color: #3a1418 !important;
}

.section-wrapper-4 .section {
  background-color: #3a1418 !important;
  padding: 20px 0px !important;
}