:root {
  --ink: #8A1817;
  /* primary: text, buttons, logo */
  --ink-soft: #3a3a3a;
  --muted: #6c6c6c;
  --faint: #9a9a9a;
  --bg: #faf8f5;
  /* off-white page */
  --surface: #ffffff;
  /* cards */
  --line: #ece8e2;
  /* hairlines */
  --line-strong: #dcd6cd;
  --price: #1b1b1b;
  --sale: #b23b3b;
  /* discount text only Ã¢â‚¬â€ restrained */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 18, 15, .04), 0 8px 24px rgba(20, 18, 15, .06);
  --shadow-hover: 0 4px 10px rgba(20, 18, 15, .07), 0 18px 44px rgba(20, 18, 15, .12);
  --container: 1240px;
  /* logo's rainbow ring Ã¢â‚¬â€ used ONLY as a signature detail */
  --rainbow: linear-gradient(90deg, #e23b3b 0%, #f0902f 18%, #f2c233 36%, #3fb95e 56%, #2f8fe2 76%, #7c5ce2 100%);
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  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;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* signature rainbow text + underline helpers */
.rainbow-text {
  background: var(--rainbow);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #f4f1ec;
  font-size: 12.5px;
  letter-spacing: .03em;
}

.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 38px;
  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: #6f6a63;
}

.announce .hide-sm {}

/* ---------- Header (Aerion: sticky, search, account, wishlist, cart) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  justify-self: start;
}

.brand img {
  height: 30px;
  width: auto;
}

.brand .brand-rule {
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background: var(--rainbow);
  opacity: .9;
}

.primary-nav {
  display: flex;
  gap: 30px;
  justify-self: center;
}

.primary-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  letter-spacing: .01em;
  transition: color .18s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--rainbow);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  transition: background .15s ease;
  position: relative;
}

.icon-btn:hover {
  background: #f1ede7;
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  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 var(--surface);
}

/* animated search pill */
.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #fff;
  width: 200px;
  transition: width .25s ease, box-shadow .2s ease;
  color: var(--faint);
}

.search-pill:focus-within {
  width: 248px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.search-pill svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--muted);
}

.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 13.5px;
  color: var(--ink);
  font-family: inherit;
}

.hamburger {
  display: none;
}

/* ---------- Hero (split editorial) ---------- */
.hero {
  background: var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 64px 0 72px;
}

.hero-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0 0 20px;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(20, 18, 15, .22);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.hero-meta {
  margin-top: 30px;
  display: flex;
  gap: 26px;
}

.hero-meta div {}

.hero-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
}

.hero-meta span {
  font-size: 12.5px;
  color: var(--faint);
  letter-spacing: .02em;
}

.hero-figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3.7;
  background: #ededea;
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-badge .ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background: var(--rainbow);
  -webkit-mask: radial-gradient(circle 9px at center, transparent 98%, #000 100%);
  mask: radial-gradient(circle 9px at center, transparent 98%, #000 100%);
}

.hero-badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .02em;
}

.hero-badge b {
  font-size: 13.5px;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}

.section-head .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 10px;
}

.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -.01em;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.view-all svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease;
}

.view-all:hover svg {
  transform: translateX(3px);
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-card {
  display: block;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cat-card .cat-img {
  aspect-ratio: 1 / 1;
  background: #f3efe9;
  overflow: hidden;
}

.cat-card .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card .cat-label {
  padding: 16px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-card .cat-label b {
  font-size: 15.5px;
  font-weight: 600;
}

.cat-card .cat-label span {
  font-size: 12px;
  color: var(--faint);
}

/* ---------- Product cards (Aerion: 4/5 portrait, soft shadow, no borders) ---------- */
.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pc-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f6f3ee;
  overflow: hidden;
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .3s ease;
}

.product-card:hover .pc-media img {
  transform: scale(1.04);
}

.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(27, 27, 27, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 20px;
}

.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background .15s ease, transform .15s ease;
}

.pc-wish:hover {
  transform: scale(1.08);
}

.pc-wish svg {
  width: 17px;
  height: 17px;
  color: var(--ink);
}

.pc-body {
  padding: 15px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pc-cat {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
}

.pc-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.pc-rating .stars {
  color: #e0a52f;
  letter-spacing: 1px;
  font-size: 12px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 6px;
}

.pc-price .now {
  font-size: 17px;
  font-weight: 700;
  color: var(--price);
}

.pc-price .mrp {
  font-size: 13px;
  color: var(--faint);
  text-decoration: line-through;
}

.pc-price .off {
  font-size: 12px;
  font-weight: 600;
  color: var(--sale);
}

.pc-add {
  margin-top: 12px;
  height: 42px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.pc-add svg {
  width: 16px;
  height: 16px;
}

.product-card:hover .pc-add {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- GenericCollectionCard (banner 26% + products 74%) ---------- */
.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: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}

.gcc-banner img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcc-banner .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, .05) 0%, rgba(20, 18, 15, .72) 100%);
}

.gcc-banner .gcc-content {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: #fff;
}

.gcc-banner .gcc-content .eyebrow {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 8px;
}

.gcc-banner .gcc-content h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.gcc-banner .gcc-content p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: .9;
  margin: 0 0 18px;
  max-width: 230px;
}

.gcc-banner .gcc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  padding-bottom: 3px;
}

.gcc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Full-width promo (Personalized) ---------- */
.promo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}

.promo img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 18, 15, .82) 0%, rgba(20, 18, 15, .5) 46%, rgba(20, 18, 15, .05) 100%);
}

.promo-content {
  position: relative;
  z-index: 1;
  padding: 50px 56px;
  color: #fff;
  max-width: 560px;
}

.promo-content .eyebrow {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
  margin: 0 0 14px;
}

.promo-content h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
  margin: 0 0 16px;
}

.promo-content p {
  font-size: 15.5px;
  line-height: 1.6;
  opacity: .92;
  margin: 0 0 26px;
  max-width: 420px;
}

.promo .btn-primary {
  background: #fff;
  color: var(--ink);
}

.promo .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
}

.promo-steps {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}

.promo-steps div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}

.promo-steps .n {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- Why Vatsu Craft (trust) ---------- */
.why {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: left;
}

.why-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card .ic svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.why-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.why-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px dashed var(--line-strong);
}

.why-chip {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  background: #f5f1ea;
  border-radius: 20px;
  padding: 7px 15px;
}

/* ---------- Testimonials ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tst-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tst-card .quote-mark {
  font-family: var(--ff-display);
  font-size: 46px;
  line-height: .6;
  color: var(--line-strong);
  height: 22px;
}

.tst-card .stars {
  color: #e0a52f;
  font-size: 14px;
  letter-spacing: 1px;
}

.tst-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.tst-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.tst-who .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.tst-who b {
  font-size: 14px;
  display: block;
}

.tst-who span {
  font-size: 12px;
  color: var(--faint);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d9d5ce;
  padding: 64px 0 30px;
  margin-top: 8px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand .frule {
  height: 3px;
  width: 132px;
  border-radius: 3px;
  background: var(--rainbow);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #a8a39b;
  max-width: 300px;
  margin: 0 0 18px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3833;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}

.footer-social a:hover {
  background: #2a2824;
  border-color: #4a463f;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  color: #d9d5ce;
}

.footer-col h5 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #a8a39b;
  padding: 6px 0;
  transition: color .15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #2e2c28;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #8a857d;
  margin: 0;
}

.pay-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pay-badges span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #cfcabf;
  background: #2a2824;
  border: 1px solid #3a3833;
  border-radius: 5px;
  padding: 5px 9px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .primary-nav {
    gap: 20px;
  }

  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-meta {
    gap: 18px;
  }
}

@media (max-width: 920px) {
  .primary-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .search-pill {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .search-pill input {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    justify-self: start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 48px;
  }

  .hero-figure {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  .gcc {
    grid-template-columns: 1fr;
  }

  .gcc-banner {
    min-height: 240px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 28px;
  }

  .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 .hide-sm {
    display: none;
  }

  .announce .container {
    gap: 16px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-row,
  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gcc-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gcc-products .product-card:nth-child(3) {
    display: none;
  }

  /* 2-up on mobile per spec */
  .tst-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .promo-content {
    padding: 36px 26px;
  }

  .promo .scrim {
    background: linear-gradient(180deg, rgba(20, 18, 15, .35) 0%, rgba(20, 18, 15, .8) 100%);
  }

  .promo-steps {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .why-strip {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta strong {
    font-size: 19px;
  }
}

.notice {
  background-color: var(--header-notice-background);
  color: var(--header-notice-text);
  font-size: small;
  height: 100%;
  padding: 1px;
  width: 100%;
}

element.style {
  --section-background-color: white;
  --section-item-spacing-desktop: 0px;
  --section-item-spacing-mobile: 0px;
}

.section {
  padding: 1px 0;
}

:root {
  --primary-main: #FFFFFF ! important;
}

.header-desktop-wrapper {
  background: #ffffff !important;
  border-bottom: 1px solid #eee !important;
}

.section {
  padding: 5px;
}

.luxury-header {
  background-color: #fff;
}

:root {
  --header-accent: #000000
}

.why-strip {
  padding-bottom: 20px;
}

/* =========================================================
   MOBILE REVIEW SECTION SCROLL FIX
   Desktop remains unchanged. On mobile, reviews become
   horizontal scroll cards.
   ========================================================= */
@media (max-width: 680px) {
  .tst-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 18px 14px !important;
    margin-left: -18px !important;
    margin-right: -18px !important;
  }

  .tst-grid::-webkit-scrollbar {
    display: none !important;
  }

  .tst-grid {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .tst-card {
    flex: 0 0 82% !important;
    min-width: 82% !important;
    max-width: 82% !important;
    scroll-snap-align: start !important;
  }
}

@media (max-width: 420px) {
  .tst-card {
    flex-basis: 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
  }
}


/* =========================================================
   PAGE CONTAINER WIDTH + PRODUCT CARD CENTER ALIGN FIX
   ========================================================= */
.page-container .px-4.md\:px-10.my-6 {
  max-width: 1260px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Product card name center align */
.product-card .pc-name,
.pc-name,
.product-card [class*="product-name"],
.product-card [class*="ProductName"],
.product-card [class*="product-title"],
.product-card [class*="ProductTitle"] {
  text-align: center !important;
}

/* Product sale price / price row center align */
.product-card .pc-price,
.pc-price,
.product-card [class*="price"],
.product-card [class*="Price"] {
  justify-content: center !important;
  text-align: center !important;
}

.product-card .pc-price .now,
.pc-price .now,
.product-card [class*="sale-price"],
.product-card [class*="SalePrice"],
.product-card [class*="selling-price"],
.product-card [class*="SellingPrice"] {
  text-align: center !important;
}

/* =========================================================
   FINAL PRODUCT SECTION WIDTH + CARD TEXT/PRICE CENTER ALIGN
   Ref: productGridCollection-component / Tailwind utility classes
   ========================================================= */

/* Same element classes: class="page-container px-4 md:px-10 my-6" */
.page-container.px-4.md\:px-10.my-6,
.productGridCollection-component .page-container.px-4.md\:px-10.my-6,
.section-item-productGridCollection-component .page-container.px-4.md\:px-10.my-6,
[class*="productGridCollection"] .page-container.px-4.md\:px-10.my-6 {
  max-width: 1260px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Product name center align */
.product-card-name,
.product-card .product-card-name,
[class*="product-card"] .product-card-name {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* Center the price row that contains sale price + MRP */
.product-card .flex.justify-between.items-center:has(.product-card-price),
[class*="product-card"] .flex.justify-between.items-center:has(.product-card-price) {
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

.product-card .flex.items-center.gap-2:has(.product-card-price),
[class*="product-card"] .flex.items-center.gap-2:has(.product-card-price) {
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* Sale price + MRP text center */
.product-card-price,
.product-card-mrp-price,
.product-card .product-card-price,
.product-card .product-card-mrp-price,
[class*="product-card"] .product-card-price,
[class*="product-card"] .product-card-mrp-price {
  text-align: center !important;
}

/* =========================================================
   HEADING TITLE STYLE — SAME AS CATEGORY SECTION HEADING
   ========================================================= */
.heading-title,
.section-item-productGridCollection-component .heading-title,
.section-item-collection-component .heading-title,
[class*="section-item"] .heading-title,
[class*="Collection"] .heading-title {
  font-family: var(--ff-display) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  font-size: clamp(26px, 3.2vw, 36px) !important;
  line-height: 1.08 !important;
  color: var(--ink) !important;
  margin: 0 !important;
  text-align: left !important;
}

.heading-title span,
.heading-title em {
  font-family: inherit !important;
  font-style: italic !important;
  color: var(--ink) !important;
}

@media (max-width: 680px) {
  .heading-title,
  .section-item-productGridCollection-component .heading-title,
  .section-item-collection-component .heading-title,
  [class*="section-item"] .heading-title,
  [class*="Collection"] .heading-title {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }
}

/* =========================================================
   DESKTOP NAV STYLE — SAME AS PRIMARY NAV
   ========================================================= */
.desktop-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 30px !important;
}

.desktop-nav a,
.desktop-nav .nav-link,
.desktop-nav button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--ff-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  color: var(--ink-soft) !important;
  padding: 6px 0 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  transition: color 0.18s ease !important;
}

.desktop-nav a::after,
.desktop-nav .nav-link::after,
.desktop-nav button::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -2px !important;
  height: 2px !important;
  background: var(--rainbow) !important;
  border-radius: 2px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.22s ease !important;
}

.desktop-nav a:hover,
.desktop-nav .nav-link:hover,
.desktop-nav button:hover,
.desktop-nav a.active,
.desktop-nav .nav-link.active,
.desktop-nav button.active {
  color: var(--ink) !important;
}

.desktop-nav a:hover::after,
.desktop-nav .nav-link:hover::after,
.desktop-nav button:hover::after,
.desktop-nav a.active::after,
.desktop-nav .nav-link.active::after,
.desktop-nav button.active::after {
  transform: scaleX(1) !important;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none !important;
  }
}
