.nav-link {
  color: #000;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
:root {
  --ink: #141210; /* text Â· dark banners */
  --ink-2: #0d0b08; /* deepest banner */
  --ink-soft: #2c281f;
  --bg: #ffffff; /* page background (light) */
  --bg-2: #faf8f4; /* subtle alt section */
  --bg-3: #f4f1ea;
  --surface: #ffffff; /* cards */
  --line: #ece8df; /* hairlines */
  --line-strong: #ddd6c8;
  --gold: #c5a253;
  --gold-deep: #a87f35;
  --gold-soft: #efe3c6;
  --muted: #6b6353;
  --faint: #9a9079;
  --wine: #8a2433; /* sale / discount text */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 18, 12, 0.04), 0 8px 24px rgba(20, 18, 12, 0.06);
  --shadow-hover:
    0 4px 12px rgba(20, 18, 12, 0.07), 0 18px 44px rgba(20, 18, 12, 0.12);
  --container: 1240px;
  --ff-body:
    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-display:
    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; /* sans-serif, Bella Vita-aligned */
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.section {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
  max-width: var(--container) !important;
  margin: 0 auto !important;
}
.page-container {
  max-width: var(--container) !important;
  margin: 0 auto !important;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Announcement bar (light Â· Bella Vita-style) ---------- */
.announce {
  background: #f4f1ea;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 32px;
  text-align: center;
}
.announce span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.announce .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}
.announce b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Header (WHITE Â· logo left Â· search centre Â· actions right) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 84px;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}
.brand img {
  height: 62px;
  width: auto;
}

/* centred search (MOM requirement) */
.search-wrap {
  justify-self: stretch;
  display: flex;
  justify-content: center;
}
.search-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  width: 100%;
  max-width: 520px;
  padding: 0 18px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--muted);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.search-pill:focus-within {
  border-color: var(--gold);
  background: #fff;
}
.search-pill svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--gold-deep);
}
.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  color: var(--ink);
  font-family: inherit;
}
.search-pill input::placeholder {
  color: var(--faint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  position: relative;
}
.icon-btn:hover {
  background: var(--bg-3);
  color: var(--gold-deep);
}
.icon-btn svg {
  width: 21px;
  height: 21px;
}
.cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.hamburger {
  display: none;
}

/* sub-nav strip (light) */
.subnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.subnav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  height: 48px;
}
.subnav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.18s ease;
}
.subnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.subnav a:hover,
.subnav a.active {
  color: var(--ink);
}
.subnav a.active::after {
  transform: scaleX(1);
}

/* ---------- Hero band (full-bleed image banner Â· text overlay left) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 480px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #0d0b08;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 32%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 5, 0.94) 0%,
    rgba(8, 7, 5, 0.78) 30%,
    rgba(8, 7, 5, 0.35) 55%,
    rgba(8, 7, 5, 0.05) 80%,
    rgba(8, 7, 5, 0) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  width: 100%;
}
.hero-copy {
  max-width: 540px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(
    180deg,
    #e6cb86 0%,
    var(--gold) 55%,
    var(--gold-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
  margin: 0 0 26px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 26px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 162, 83, 0.32);
  background: #d4b362;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
/* dark-on-light variant used on light promo sections */
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 18, 12, 0.22);
  background: #000;
}

.hero-figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11; /* shorter, banner-like */
  background: radial-gradient(
    120% 95% at 50% 28%,
    #ffffff 0%,
    #f7f1e6 42%,
    #ece0c9 100%
  );
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(197, 162, 83, 0.3);
}
.hero-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}
.hero-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(20, 18, 12, 0.86);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(197, 162, 83, 0.4);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-badge .ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--gold);
}
.hero-badge small {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge b {
  font-size: 13.5px;
  color: #fff;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 60px 0;
}
.section.tight {
  padding: 44px 0;
}
.section.alt {
  background: var(--bg-2);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.section-head.center .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
.section-head .sub {
  font-size: 14.5px;
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 540px;
  line-height: 1.55;
}
.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.view-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.view-all:hover svg {
  transform: translateX(3px);
}

/* ---------- Shop by Notes (LIGHT â€” moved directly under hero) ---------- */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.note-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.note-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--gold-deep);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 35%,
    #fff 0%,
    var(--gold-soft) 100%
  );
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-ic svg {
  width: 26px;
  height: 26px;
}
.note-ic.photo {
  padding: 0;
  overflow: hidden;
  background: none;
}
.note-ic.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.note-card b {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  display: block;
  color: var(--ink);
}
.note-card span {
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* ---------- Shop by Collection (NEW layout â€” image-forward tiles, text overlay) ---------- */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.coll-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: radial-gradient(
    120% 100% at 50% 25%,
    #ffffff 0%,
    #f6efe2 60%,
    #ece0c9 100%
  );
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.coll-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.coll-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.coll-card:hover img {
  transform: scale(1.05);
}
/* dark filler tile (no photo yet) â€” keeps the row cohesive */
.coll-card.dark {
  background:
    radial-gradient(
      80% 90% at 70% 18%,
      rgba(197, 162, 83, 0.22),
      transparent 60%
    ),
    linear-gradient(160deg, #211a11 0%, #0d0b08 100%);
}
.coll-card.dark .coll-orn {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  color: var(--gold);
  opacity: 0.55;
}
.coll-card.dark .coll-orn svg {
  width: 100%;
  height: 100%;
}
.coll-card .coll-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px 18px 18px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(13, 11, 8, 0.92) 0%,
    rgba(13, 11, 8, 0.72) 45%,
    rgba(13, 11, 8, 0) 100%
  );
}
.coll-card .coll-cap b {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  display: block;
}
.coll-card .coll-cap span {
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.coll-card .coll-cap span::after {
  content: "\2192";
  transition: transform 0.22s ease;
}
.coll-card:hover .coll-cap span::after {
  transform: translateX(4px);
}

/* ---------- Offer banners (DARK promo Â· Buy 3 / Buy 2 Get 1 etc.) ---------- */
.offer-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.offer-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 188px;
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(197, 162, 83, 0.28);
}
.offer-banner.b1 {
  background:
    radial-gradient(
      90% 130% at 88% 0%,
      rgba(197, 162, 83, 0.28),
      transparent 58%
    ),
    linear-gradient(135deg, #1c1810 0%, #0d0b08 100%);
}
.offer-banner.b2 {
  background:
    radial-gradient(
      90% 130% at 88% 0%,
      rgba(138, 36, 51, 0.34),
      transparent 58%
    ),
    linear-gradient(135deg, #211318 0%, #0d0b08 100%);
}
.offer-banner .of-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.offer-banner .of-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 5, 0.93) 0%,
    rgba(8, 7, 5, 0.74) 38%,
    rgba(8, 7, 5, 0.3) 72%,
    rgba(8, 7, 5, 0.05) 100%
  );
}
.offer-banner .of-kicker,
.offer-banner h3,
.offer-banner p,
.offer-banner .of-link {
  position: relative;
  z-index: 2;
}
.offer-banner .of-kicker {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 600;
}
.offer-banner h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.08;
  margin: 0 0 6px;
}
.offer-banner h3 em {
  font-style: normal;
  color: var(--gold);
}
.offer-banner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}
.offer-banner .of-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 24px;
  transition:
    transform 0.15s ease,
    background 0.2s ease;
}
.offer-banner .of-link:hover {
  transform: translateY(-2px);
  background: #d4b362;
}
.offer-banner .of-link svg {
  width: 15px;
  height: 15px;
}
.offer-banner .of-orn {
  position: absolute;
  right: 22px;
  bottom: -14px;
  font-family: var(--ff-display);
  font-size: 128px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  font-style: italic;
  pointer-events: none;
}

/* ---------- Wide promo strip (Premium Attar / Best Seller â€” DARK) ---------- */
.promo-strip {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(
      70% 130% at 12% 20%,
      rgba(197, 162, 83, 0.2),
      transparent 55%
    ),
    linear-gradient(120deg, #1b1710 0%, #0d0b08 60%);
  border: 1px solid rgba(197, 162, 83, 0.3);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 40px 44px;
  color: #fff;
}
.promo-strip .ps-copy .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.promo-strip .ps-copy h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  margin: 0 0 12px;
}
.promo-strip .ps-copy p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 22px;
  max-width: 420px;
}
.promo-strip .ps-figs {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.promo-strip .ps-figs .ps-bottle {
  width: 116px;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 25%, #fff 0%, #f3ead8 100%);
  border: 1px solid rgba(197, 162, 83, 0.4);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}
.promo-strip .ps-figs .ps-bottle:nth-child(2) {
  margin-top: 24px;
}
.promo-strip .ps-figs .ps-bottle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}
/* full-bleed image variant (background photo + left scrim) */
.promo-strip.has-img {
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 44px;
}
.promo-strip .ps-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.promo-strip .ps-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 5, 0.92) 0%,
    rgba(8, 7, 5, 0.72) 40%,
    rgba(8, 7, 5, 0.3) 74%,
    rgba(8, 7, 5, 0.05) 100%
  );
}
.promo-strip.has-img .ps-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

/* ---------- Crazy Deals (DARK promo â€” Amazon-linked products) ---------- */
.crazy {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(
      80% 140% at 85% 0%,
      rgba(138, 36, 51, 0.4),
      transparent 55%
    ),
    linear-gradient(125deg, #1d1410 0%, #0d0b08 65%);
  border: 1px solid rgba(197, 162, 83, 0.3);
  padding: 38px 20px;
}
.crazy-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.crazy-head .ch-l .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.crazy-head h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.04;
  margin: 0;
}
.crazy-head h2 em {
  font-style: italic;
  color: var(--gold);
}
.crazy-head .ch-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
  margin: 8px 0 0;
}
.crazy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.deal-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 162, 83, 0.26);
  border-radius: 14px;
  padding: 16px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.deal-card:hover {
  border-color: var(--gold);
  background: rgba(197, 162, 83, 0.08);
  transform: translateY(-3px);
}
.deal-card .dc-img {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 25%, #fff 0%, #f3ead8 100%);
}
.deal-card .dc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.deal-card .dc-cat {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 5px;
}
.deal-card .dc-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #fff;
}
.deal-card .dc-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
  line-height: 1.4;
}
.deal-card .dc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.deal-card .dc-price .now {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.deal-card .dc-price .mrp {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}
.deal-card .dc-price .off {
  font-size: 12px;
  font-weight: 700;
  color: #ff9eae;
}
.deal-card .dc-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  border: none;
  padding: 9px 18px;
  border-radius: 22px;
  transition: background 0.2s ease;
}
.deal-card .dc-add:hover {
  background: #d4b362;
}
.deal-card .dc-add svg {
  width: 15px;
  height: 15px;
}
/* Mobile Slider Styling (Screens smaller than 768px) */
/* Mobile View Adjustment (Under 768px) */
@media (max-width: 767px) {
  /* 1. Make the container a horizontal scrollbar area */
  .crazy-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important; /* Controlled spacing between cards */
    padding: 10px 15px !important;
    margin: 0 -15px !important; /* Extends container to touch screen edges smoothly */
  }

  /* Hide default scrollbar aesthetics */
  .crazy-grid::-webkit-scrollbar {
    display: none !important;
  }
  .crazy-grid {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }

  /* 2. Fix card dimensions and prevent overlapping */
  .crazy-grid .deal-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 0 0 75% !important;
    width: 75% !important;
    min-width: 100% !important;
    scroll-snap-align: start !important;
    box-sizing: border-box !important;
  }

  /* 3. Keep images from shrinking out of proportion */
  .crazy-grid .deal-card .dc-img {
    flex: 0 0 35% !important; /* Locks image space so it doesn't compress text */
    max-width: 35% !important;
  }

  .crazy-grid .deal-card .dc-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  /* 4. Allow content section to wrap naturally */
  .crazy-grid .deal-card .dc-info {
    flex: 1 !important;
    min-width: 0 !important; /* Crucial fix: stops text strings from busting layout bounds */
    padding-left: 10px !important;
  }
}
/* ---------- Product cards (Aerion: soft shadow) ---------- */
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}
.product-grid-6 {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 66px) / 4);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  align-items: start;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.product-grid-6 .product-card {
  scroll-snap-align: start;
}
.product-grid-6::-webkit-scrollbar {
  height: 6px;
}
.product-grid-6::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 3px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.pc-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s ease;
}
.product-card:hover .pc-media img {
  transform: scale(1.05);
}
.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.pc-tag.gold {
  background: var(--gold);
  color: var(--ink);
}
.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease;
}
.pc-wish:hover {
  transform: scale(1.08);
  color: var(--wine);
}
.pc-wish svg {
  width: 17px;
  height: 17px;
  color: inherit;
}
.pc-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}
.pc-cat {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 6px;
}
.pc-name {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}
.pc-notes {
  font-size: 12px;
  color: var(--faint);
  line-height: 1.4;
  margin: 5px 0 0;
}
.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin: 7px 0 0;
}
.pc-rating .stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 12px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.pc-price .now {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.pc-price .mrp {
  font-size: 13px;
  color: var(--faint);
  text-decoration: line-through;
}
.pc-price .off {
  font-size: 12px;
  font-weight: 600;
  color: var(--wine);
}
.pc-add {
  margin-top: 13px;
  height: 42px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.pc-add svg {
  width: 16px;
  height: 16px;
}
.product-card:hover .pc-add {
  background: var(--ink);
  color: #fff;
}

/* ---------- GenericCollectionCard (banner + products) ---------- */
.gcc {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}
.gcc-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, #211a11 0%, #0d0b08 100%);
  border: 1px solid rgba(197, 162, 83, 0.3);
  box-shadow: var(--shadow);
}
.gcc-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 50% at 80% 12%,
    rgba(197, 162, 83, 0.22),
    transparent 60%
  );
}
.gcc-banner .gcc-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: #fff;
}
.gcc-banner .gcc-content .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.gcc-banner .gcc-content h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.12;
  margin: 0 0 12px;
}
.gcc-banner .gcc-content p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 20px;
  max-width: 240px;
}
.gcc-banner .gcc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(197, 162, 83, 0.5);
  padding-bottom: 4px;
}
.gcc-banner .gcc-ornament {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  opacity: 0.5;
  color: var(--gold);
}
.gcc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

/* ---------- Why Zehra (trust) ---------- */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.why-card {
  text-align: center;
  position: relative;
}
.why-card + .why-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-strong);
}
.why-card .ic {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 35%,
    #fff 0%,
    var(--gold-soft) 100%
  );
  border: 1px solid var(--gold);
  box-shadow: 0 8px 22px -6px rgba(197, 162, 83, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card .ic svg {
  width: 28px;
  height: 28px;
  color: var(--gold-deep);
}
.why-card h4 {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
}
.why-card p {
  font-size: 13px;
  line-height: 1.62;
  color: var(--muted);
  margin: 0;
}

/* ---------- Testimonials ---------- */
.tst {
  background: var(--bg);
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tst-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tst-card .quote-mark {
  font-family: var(--ff-display);
  font-size: 56px;
  line-height: 0.5;
  color: var(--gold);
  height: 26px;
}
.tst-card .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.tst-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
  font-style: italic;
}
.tst-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.tst-who .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
}
.tst-who b {
  font-size: 14px;
  display: block;
}
.tst-who span {
  font-size: 12px;
  color: var(--faint);
}
.tst-note {
  text-align: center;
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--faint);
  font-style: italic;
}

/* ---------- Newsletter (light Â· Bella Vita "exclusive") ---------- */
.newsletter {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.nl-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  background:
    radial-gradient(
      80% 130% at 10% 10%,
      rgba(197, 162, 83, 0.1),
      transparent 55%
    ),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: var(--shadow);
}
.nl-copy .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 10px;
}
.nl-copy h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  margin: 0 0 8px;
  color: var(--ink);
}
.nl-copy p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.nl-form {
  display: flex;
  gap: 10px;
}
.nl-form input {
  flex: 1;
  height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: var(--bg-2);
  padding: 0 20px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.nl-form input:focus {
  border-color: var(--gold);
  background: #fff;
}
.nl-form input::placeholder {
  color: var(--faint);
}
.nl-form button {
  height: 50px;
  padding: 0 26px;
  border: none;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}
.nl-form button:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ---------- Footer (DARK) ---------- */
.site-footer {
  background: var(--ink-2);
  color: #cfc7b6;
  padding: 64px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9a917e;
  max-width: 320px;
  margin: 0 0 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(197, 162, 83, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.footer-social a:hover {
  background: rgba(197, 162, 83, 0.14);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.footer-col h5 {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #9a917e;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid rgba(197, 162, 83, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: #837a68;
  margin: 0;
}
.pay-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pay-badges span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #cfc7b6;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 162, 83, 0.22);
  border-radius: 5px;
  padding: 5px 9px;
}

/* ===========================================================
   V3 â€” closer Bella Vita alignment
   (hero carousel Â· ratings everywhere Â· 6 category tiles Â·
    countdown urgency Â· "as seen in" press strip Â· testimonial handles)
   =========================================================== */

/* ---------- Hero carousel ---------- */
.hero-carousel {
  position: relative;
}
.hero-slide {
  position: relative;
  display: none;
}
.hero-slide.active {
  display: block;
}
.hero-slide .hero {
  border-bottom: none;
}
.hero-slide.s2 .hero-scrim {
  background: linear-gradient(
    90deg,
    rgba(28, 9, 14, 0.94) 0%,
    rgba(28, 9, 14, 0.74) 34%,
    rgba(28, 9, 14, 0.3) 68%,
    rgba(8, 7, 5, 0) 100%
  );
}
.hero-slide.s3 .hero-scrim {
  background: linear-gradient(
    90deg,
    rgba(20, 16, 9, 0.94) 0%,
    rgba(20, 16, 9, 0.72) 34%,
    rgba(20, 16, 9, 0.28) 68%,
    rgba(8, 7, 5, 0) 100%
  );
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(13, 11, 8, 0.45);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.hero-arrow:hover {
  background: rgba(13, 11, 8, 0.8);
  border-color: var(--gold);
  color: var(--gold);
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
}
.hero-arrow.prev {
  left: 22px;
}
.hero-arrow.next {
  right: 22px;
}
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 6;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  transition:
    background 0.2s ease,
    width 0.2s ease,
    border-radius 0.2s ease;
}
.hero-dots button.active {
  background: var(--gold);
  width: 26px;
  border-radius: 5px;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--gold);
  padding: 7px 14px;
  border-radius: 20px;
  margin: 0 0 16px;
}

/* ---------- Ratings on every card (series line + stars) ---------- */
.pc-series {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 4px;
  font-weight: 600;
}
.pc-rating .rcount {
  color: var(--faint);
}

/* ---------- 6 category tiles (Luxury Categories) ---------- */
.coll-grid.six {
  grid-template-columns: repeat(3, 1fr);
}
.coll-grid.six .coll-card {
  aspect-ratio: 5 / 4;
}

/* ---------- Countdown (Crazy Deals urgency) ---------- */
.crazy-timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.crazy-timer .ct-label {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.crazy-timer .ct-clock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.crazy-timer .ct-seg {
  min-width: 44px;
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 162, 83, 0.32);
  border-radius: 8px;
  padding: 6px 8px;
  line-height: 1;
}
.crazy-timer .ct-seg small {
  display: block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 4px;
}
.crazy-timer .ct-colon {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- "As seen in" press strip ---------- */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.press .container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 26px;
  padding-bottom: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.press .press-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
}
.press .press-logos {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.press .press-logos span {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--muted);
  opacity: 0.68;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}
.press .press-logos span:hover {
  opacity: 1;
  color: var(--ink);
}
.press .press-logos .serif {
  font-style: italic;
}

/* ---------- Testimonial Instagram handle ---------- */
.tst-who .ig {
  color: var(--gold-deep);
  font-weight: 600;
}
.tst-who .av.photo {
  padding: 0;
  overflow: hidden;
}
.tst-who .av.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- V3 card refinement â†’ Bella Vita-style (CSS-only, no markup change) ---------- */
/* Bella Vita uses near-square cards â€” drop the inherited rounded radius */
.product-card {
  position: relative;
  border-radius: 4px;
}
.product-card .pc-media {
  border-radius: 0;
}
/* square-up the in-card badges + button to match the crisp card */
.product-card .pc-price .off,
.product-card .pc-tag {
  border-radius: 3px;
}
.product-card .pc-add {
  border-radius: 4px;
}
/* discount lifted onto the image corner â€” reuses the existing .pc-price .off element */
.product-card .pc-price .off {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  background: var(--wine);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(138, 36, 51, 0.32);
}
/* type badge ("Signature"/"Bestseller"â€¦) now stacks just below the discount badge */
.product-card .pc-tag {
  top: 44px;
}
/* solid, always-visible add-to-cart (was outline-until-hover) */
.product-card .pc-add {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.product-card .pc-add:hover,
.product-card:hover .pc-add {
  background: #000;
  border-color: #000;
  color: #fff;
}

@media (max-width: 920px) {
  .coll-grid.six {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-arrow {
    display: none;
  }
}
@media (max-width: 680px) {
  .crazy-timer {
    gap: 8px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid-6 {
    grid-auto-columns: calc((100% - 44px) / 3);
  }
  .notes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 920px) {
  .subnav {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }
  .search-pill {
    max-width: none;
  }
  .hero {
    min-height: 400px;
  }
  .hero-inner {
    padding: 46px 0;
  }
  .hero-scrim {
    background: linear-gradient(
      90deg,
      rgba(8, 7, 5, 0.95) 0%,
      rgba(8, 7, 5, 0.82) 48%,
      rgba(8, 7, 5, 0.5) 100%
    );
  }
  .offer-duo {
    grid-template-columns: 1fr;
  }
  .promo-strip {
    grid-template-columns: 1fr;
  }
  .promo-strip .ps-figs {
    justify-content: flex-start;
  }
  .crazy-grid {
    grid-template-columns: 1fr;
  }
  .gcc {
    grid-template-columns: 1fr;
  }
  .gcc-banner {
    min-height: 240px;
  }
  .nl-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 26px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
  }
  .why-card + .why-card::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 44px 0;
  }
  .announce .container {
    gap: 14px;
    font-size: 11.5px;
  }
  .announce .hide-sm {
    display: none;
  }
  .brand img {
    height: 52px;
  }
  .header-actions .icon-btn.acct {
    display: none;
  }
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-grid-6 {
    grid-auto-columns: 44%;
    gap: 14px;
  }
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gcc-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gcc-products .product-card:nth-child(3) {
    display: none;
  }
  .deal-card {
    grid-template-columns: 100px 1fr;
  }
  .tst-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .section-head.center {
    align-items: center;
  }
  .hero h1 {
    font-size: 34px;
  }
  .offer-banner h3 {
    font-size: 26px;
  }
}
#notice {
  padding: 0px !important;
}
.product-card-info {
  height: auto !important;
}
.product-card:hover .product-card-info {
  transform: none !important;
}
.header-transparent,
.header-solid,
.luxury-header {
  background-color: #fff !important;
}
.header-transparent {
  position: relative !important;
  top: 0px !important;
}

.desktop-nav {
  display: flex !important;
}
.lucide-shopping-bag,
.lucide-heart,
.lucide-search,
.lucide-user,
.lucide-menu {
  stroke: #000 !important;
}

#searchbar {
  color: #000 !important;
}
.search-container:before {
  background-color: #000 !important;
}
.search-btn-close svg {
  stroke: #000 !important;
}
.badge-icon-count {
  background-color: #000 !important;
  color: #fff !important;
}
.product-card {
  padding: 14px !important;
}
@media (max-width: 680px) {
  .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
/* banner collection  */

#sh-collection-6a3a4dbf9f4b4b0b411f5659 .banner-content {
  display: none !important;
}
/* Main content container */
.absolute.inset-0.flex.items-center.justify-center {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  padding: 0 32px 48px !important;
}

/* Content wrapper */
.absolute.inset-0 .text-center {
  text-align: left !important;
  position: static !important;
  max-width: 300px !important;
  width: 100%;
}

/* Heading */
.absolute.inset-0 .heading {
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}

/* Description */
.absolute.inset-0 .caption {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

/* Button becomes text link */
.absolute.inset-0 .shop-now-button {
  background: transparent !important;
  color: #c5a253 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  min-width: auto !important;
  width: auto !important;
  margin-top: 12px !important;
}

/* Arrow */
.absolute.inset-0 .shop-now-button::after {
  content: "→";
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .absolute.inset-0.flex.items-center.justify-center {
    padding: 0 24px 129px !important;
  }

  .absolute.inset-0 .heading {
    font-size: 24px !important;
  }

  .absolute.inset-0 .caption {
    font-size: 13.5px !important;
  }

  .absolute.inset-0 .shop-now-button {
    font-size: 14px !important;
  }
}
.banner {
  border-radius: 14px !important;
}
.banner-image-backdrop {
  background: transparent !important;
}
.backdrop-brightness-50 {
  backdrop-filter: unset !important;
}
.swiper-backface-hidden {
  padding: 0px !important;
}
.product-collection-container {
  padding: 0px !important;
  padding-left: 16px !important;
}

@media (max-width: 680px) {
  .desktop-nav {
    display: none !important;
  }
  .ProductGridCollection-component .shop-all {
    position: absolute !important;
    top: -24px !important;
    right: -11px !important;
  }
  .sh-generic-collection-card {
    padding: 0px !important;
  }
  .product-collection-container {
    padding: 0px !important;
    padding-left: 0px !important;
  }
}
.ProductInfiniteScroll-component .sh-home-page-prod-section {
  padding: 0px !important;
}
.pr-outlined-button,
.sh-product-plus-minus-button {
  background: #000 !important;
  color: #fff !important;
  font-size: 14px !important;
  border-radius: 4px !important;
}
.product-card-sale-price span {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}
.product-card-mrp-price span {
  font-size: 13px !important;
  color: var(--faint) !important;
  text-decoration: line-through !important;
}
#collections {
  max-width: none !important;
}

.press {
  margin-top: -34px !important;
}
.section-9:has(.HtmlRenderer-component),
.section-2:has(.HtmlRenderer-component),
.section-8:has(.HtmlRenderer-component),
.section-10:has(.HtmlRenderer-component) {
  max-width: none !important;
}
.section-4:has(.ProductGridCollection-component) {
  max-width: none !important;
  background-color: #faf8f4 !important;
}
.heading-title {
  margin-bottom: 24px !important;
}
@media (max-width: 480px) {
  .ProductInfiniteScroll-component .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.ProductInfiniteScroll-component .product-swiper-slide {
  width: calc(20% - 9.6px) !important; /* 5 columns */
}

@media (max-width: 1024px) {
  .ProductInfiniteScroll-component .product-swiper-slide {
    width: calc(25% - 9px) !important; /* 4 columns */
  }
}

@media (max-width: 768px) {
  .ProductInfiniteScroll-component .product-swiper-slide {
    width: calc(33.333% - 8px) !important; /* 3 columns */
  }
}

@media (max-width: 576px) {
  .banner-product-swiper {
    width: calc(50% - 6px) !important; /* 2 columns */
  }
}
.testimonial-section {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.testimonial-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #111;
}

.testimonial-content {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  min-height: 180px;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stars {
  color: #f5b301;
  font-size: 28px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.review {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  stroke-width: 2;
  fill: none;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .review {
    font-size: 14px;
  }

  .stars {
    font-size: 22px;
  }

  .prev-btn {
    left: -10px;
  }

  .next-btn {
    right: -10px;
  }
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;

  opacity: 1;
  visibility: visible;
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: #222;
  stroke-width: 2;
  fill: none;
}

@media (max-width: 768px) {
  .absolute.inset-0.flex.items-center.justify-center {
    padding: 0 24px 129px !important;
  }
}
.testimonial-section .prev-btn,
.testimonial-section .next-btn,
.testimonials button,
.testimonials .arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 767px) {
  /* 1. Prevent the testimonial section from causing page overflow */
  .testimonial-section,
  .testimonials,
  #crazy + div {
    overflow: hidden !important;
    position: relative !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Reposition the slider arrow buttons inside the safe area */

  /* Flush the left arrow inside the left margin */
  .testimonial-section .prev-btn,
  .testimonials .prev,
  .testimonials [class*="left"] {
    left: -11px !important;
    right: auto !important;
  }

  /* Flush the right arrow inside the right margin */
  .testimonial-section .next-btn,
  .testimonials .next,
  .testimonials [class*="right"] {
    right: -7px !important;
    left: auto !important;
  }

  /* 3. Ensure testimonial card content has breathing room for the internal arrows */
  .testimonial-section .testimonial-card,
  .testimonials .card {
    padding-left: 45px !important;
    padding-right: 45px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 768px) {
  .main-header {
    margin-right: auto;
    margin: initial !important;
  }
  .search-container {
    height: 44px;
    background-color: #faf8f4 !important;
    border: 1px solid #ddd6c8 !important;
    padding: 0px 10px;
    border: 1px solid #ebebeb;
    border-radius: 24px !important;
    position: relative;
  }
  .search-container .input-container {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
    width: 600px !important;
  }

  #desktop-search-bar {
    color: #000 !important;
  }
  /* 1. Style the main wrapper/container to allow centering */
  .search-box.sh-header-search-box {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 4px; /* Optional: rounds the corners slightly */
    padding: 4px 8px;
    height: 44px;
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease;
  }

  /* 2. Style the actual input element and center its text */
  #searchbar.MuiInputBase-input {
    color: #6b6353 !important; /* Centers the placeholder and typed text */
    background-color: transparent !important; /* Lets the wrapper handle the bg */
    margin-left: 10px;
  }

  /* Ensure the Material UI sub-container clears default styling conflicts */
  .search-input.MuiInputBase-root {
    background-color: transparent !important;
  }
  .search-icon {
    position: absolute;
  }
  .lucide-search {
    stroke: #a87f35 !important;
    width: 18px;
    height: 18px;
  }
}
.nav-link {
  color: #6b6353 !important;
  display: block;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.header-container {
  border-bottom: 1px solid #ece8df !important;
}
.product-title {
  text-transform: none !important;
}
.product-swiper-slide {
  --gap-between-cards: 12px;
  --product-in-row: 4;
  width: calc(
    (100% - var(--gap-between-cards) * (var(--product-in-row) - 1)) /
      var(--product-in-row)
  ) !important;
}
.product-card-image {
  object-fit: contain !important;
}
.section-0 {
  padding-top: 0px !important;
}
.header-container {
  padding: 8px 0 !important;
}

.contact-item .text {
  display: block;
  font-size: 13.5px;
  color: #9a917e;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.contact-item a {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon i {
  font-size: 20px;
}
.product-card-discount-amount {
  background: var(--wine) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.03em !important;
  line-height: 1 !important;
  padding: 6px 9px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(138, 36, 51, 0.32) !important;
}
/* Hide original text */
.shop-all-link a {
  font-size: 0;
  position: relative;
  text-decoration: none;
}

/* New text */
.shop-all-link a::after {
  content: "View All";
  font-size: 14px;
  color: inherit;
  display: inline-block;
  visibility: visible;
}
