@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&family=Pinyon+Script&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────── */

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
  --gold:         #B08D57;
  --gold-hover:   #8C6A3A;
  --gold-pale:    #F3ECDF;
  --pink:         #ffb6c1;
  --pink-mid:     #F9A0AF;
  --pink-light:   #FDE8EC;
  --dark:         #221B14;
  --text:         #3D3026;
  --subtext:      #7A6B5C;
  --border:       #E8DECF;
  --bg:           #FAF6EF;
  --bg-section:   #F3ECDF;
  --card-bg:      #FFFFFF;
  --card-radius:  8px;
  --page-px:      4.5rem;
  --header-h:     68px;
  --nav-h:        46px;
}

/* ── Page container ───────────────────────────────────────────── */
.page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* ================================================================
   2. ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
  background: var(--dark);
  color: rgba(250,246,239,0.85);
  height: 36px;
  
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(176,141,87,0.2);
}
.announcement-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  will-change: transform;
}
.announcement-item {
  padding: 0 2.5rem;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.announcement-item strong { color: var(--gold); }
.ann-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.header-nav {
  background: #fff;
  border-top: 1px solid var(--border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-px);
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 0.25rem;
}

/* This is for: class="relative nav-item-wrapper" */
.relative.nav-item-wrapper {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1.1rem;
  height: 100%;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}

.relative.nav-item-wrapper:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.relative.nav-item-wrapper.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* If anchor tag is inside this wrapper */
.relative.nav-item-wrapper a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* New badge */
.relative.nav-item-wrapper .nav-link-new {
  font-size: 10px;
  font-weight: 700;
  background: var(--pink);
  color: var(--dark);
  padding: 2px 6px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* Caret icon */
.relative.nav-item-wrapper .nav-caret {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}
/* ================================================================
   4. HERO BANNER (BannerCollection)
   ================================================================ */
.hero-section {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 680px);
  max-width: 1400px;
  margin: 0 auto;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--page-px);
}
.hero-img-col {
  position: relative;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--subtext);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 400px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--dark);
  color: #FAF6EF;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

/* ================================================================
   5. SECTION COMMONS
   ================================================================ */
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-section); }
.section-pink { background: var(--pink-light); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.section-title-wrap {}
.section-eyebrow {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: none;
  margin-bottom: 0.25rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.12;
}
.section-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 0.7rem;
  border-radius: 0;
}
.view-all-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
  flex-shrink: 0;
}
.view-all-link:hover { color: var(--gold); }

/* ================================================================
   6. CATEGORIES (LargeCategoriesCardV1)
   ================================================================ */
.cat-section { padding: 3rem 0 4rem; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cat-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #F5F5F5;
  cursor: pointer;
}
.cat-card-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.75) 0%, rgba(20,14,8,0.15) 55%, transparent 100%);
}
.cat-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1rem;
  text-align: center;
}
.cat-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.cat-card-cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================================================
   7. PRODUCT CARD — Aerion native
   ================================================================ */
.product-grid {
  display: grid;
  gap: 1.25rem;
}
.product-grid-5 { grid-template-columns: repeat(5, 1fr); }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(34,27,20,0.04);
  transition: box-shadow 0.25s, transform 0.2s;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 12px 32px -16px rgba(34,27,20,0.18);
  transform: translateY(-3px);
}
.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #F5F0E8;
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: color 0.2s, background 0.2s;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.6);
}
.product-card-wish:hover { color: #E11D48; background: #fff; }
.product-card-wish svg { width: 15px; height: 15px; }

.product-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pink);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}
.product-card:hover .product-card-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card-info {
  padding: 0.9rem 1rem 1rem;
}
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.product-mrp {
  font-size: 12px;
  color: var(--subtext);
  text-decoration: line-through;
}
.product-disc {
  font-size: 11px;
  font-weight: 600;
  color: #16A34A;
}

/* ================================================================
   8. GENERIC COLLECTION CARD (Banner + Products)
   ================================================================ */
.generic-collection {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
}
.banner-collection-container {
  width: 26%;
  min-width: 300px;
  flex: none;
  border-radius: var(--card-radius);
  overflow: hidden;
}
.banner-collection-container .banner {
  height: 100%;
}
.banner-image-container {
  height: 100%;
  min-height: 420px;
  border-radius: var(--card-radius);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.banner-image-container img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.banner-image-container .banner-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,5,0.9) 0%, rgba(15,10,5,0.45) 55%, transparent 100%);
}
.banner-text-content {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  width: 100%;
  text-align: center;
}
.banner-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.banner-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #FAF6EF;
  color: var(--dark);
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.banner-btn:hover { background: var(--gold); color: #fff; }


/* ================================================================
   9. OFFER BANNER (BannerCollection full-width)
   ================================================================ */
.offer-banner {
  padding: 0;
  margin: 0;
}
.offer-banner-inner {
  margin: 0 var(--page-px);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  min-height: 180px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C1810 50%, #1A1A1A 100%);
}
.offer-banner-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, var(--gold) 0px, var(--gold) 1px, transparent 1px, transparent 20px);
}
.offer-banner-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
.offer-banner-text {}
.offer-banner-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}
.offer-banner-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.offer-banner-headline span {
  color: var(--gold);
}
.offer-banner-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.offer-banner-cta-wrap {
  flex-shrink: 0;
}
.offer-banner-code {
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed var(--gold);
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}
.offer-code-label { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }
.offer-code-value { font-size: 1.3rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; }
.btn-offer {
  display: block;
  background: #FAF6EF;
  color: var(--dark);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-offer:hover { background: var(--gold); color: #fff; }

/* ================================================================
   10. BRAND STORY (HtmlRenderer editorial)
   ================================================================ */
.brand-story-section {
  background: #1A140F;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.brand-story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,149,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,182,193,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.brand-story-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.brand-story-text {}
.brand-story-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-story-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.brand-story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.75rem;
}
.brand-story-quote em { color: var(--gold); font-style: normal; }
.brand-story-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}
.btn-story {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(196,149,42,0.4);
  padding-bottom: 3px;
  transition: border-color 0.2s, gap 0.2s;
}
.btn-story:hover { border-color: var(--gold); gap: 0.75rem; }

.brand-story-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  aspect-ratio: 1;
  max-width: 420px;
  margin-left: auto;
}
.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}
.mosaic-img:first-child { border-radius: 8px 8px 2px 8px; }
.mosaic-img:last-child { border-radius: 2px 8px 8px 8px; }

/* ================================================================
   11. TRUST STRIP (HtmlRenderer)
   ================================================================ */
.trust-section {
  background: var(--dark);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-px);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(196, 149, 42, 0.1);
  border: 1.5px solid rgba(196, 149, 42, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.trust-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ================================================================
   11. FOOTER
   ================================================================ */
.site-footer {
  background: #1A140F;
  color: #C9BFAF;
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--page-px);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {}

/* Text-based brand mark (avoids filter issues with JPEG logo) */
.footer-brand-mark {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-brand-mark-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}
.fbm-devanagari {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.fbm-divider {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1;
}
.fbm-khoj {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}
.fbm-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.4rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  color: rgba(255,255,255,0.6);
}
.footer-social-link:hover { background: var(--gold); color: #fff; }
.footer-social-link svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem var(--page-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}
.footer-pay {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pay-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* ================================================================
   RESPONSIVE — Tablet ≤1100px
   ================================================================ */
@media (max-width: 1100px) {
  :root { --page-px: 2.5rem; }
  .product-grid-5 { grid-template-columns: repeat(4, 1fr); }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .banner-collection-container { min-width: 240px; }
  .header-top { grid-template-columns: 200px 1fr auto; }
}

/* ================================================================
   RESPONSIVE — Mobile ≤768px
   ================================================================ */
@media (max-width: 768px) {
  :root { --page-px: 1.25rem; --header-h: 58px; }

  /* Announcement bar */
  .announcement-bar { height: 28px; }
  .announcement-item { font-size: 11px; padding: 0 1.5rem; }

  /* Header */
  .header-top { grid-template-columns: auto 1fr auto; gap: 0.75rem; }
  .header-logo img { height: 40px; }
  .header-search { display: none; }
  .nav-inner { overflow-x: auto; scrollbar-width: none; gap: 0; }
  .nav-inner::-webkit-scrollbar { display: none; }
  .nav-link { padding: 0 0.9rem; font-size: 13px; }

  /* Hero — image top, text below */
  .hero-inner { grid-template-columns: 1fr; min-height: unset; }
  .hero-img-col { order: -1; height: 70vw; min-height: 260px; max-height: 420px; }
  .hero-img { object-position: center top; }
  .hero-text-col { padding: 2rem var(--page-px) 2.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { max-width: 100%; }

  /* Section titles */
  .section-title { font-size: 1.5rem; }
  .section-header { margin-bottom: 1.25rem; }
  .section-eyebrow { margin-bottom: 0.3rem; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  /* Product grids — horizontal swipe row on mobile */
  .product-grid-5, .product-grid-4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.6rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
  }
  .product-grid-5::-webkit-scrollbar,
  .product-grid-4::-webkit-scrollbar { display: none; }
  .product-grid-5 .product-card,
  .product-grid-4 .product-card {
    flex: 0 0 148px;
    scroll-snap-align: start;
  }

  /* Generic collection — stack */
  .generic-collection { flex-direction: column; gap: 0.75rem; }
  .banner-collection-container { width: 100%; min-width: 0; }
  .banner-image-container { height: 260px; min-height: 260px; }
  .banner-gradient { background: linear-gradient(to top, rgba(15,10,5,0.88) 0%, rgba(15,10,5,0.25) 50%, transparent 100%) !important; }
  .product-collection-container { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  /* Offer banner */
  .offer-banner-inner { margin: 0 var(--page-px); border-radius: 10px; }
  .offer-banner-content { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
  .offer-banner-cta-wrap { width: 100%; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Brand story */
  .brand-story-section { padding: 3rem 0; }
  .brand-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-story-mosaic { max-width: 100%; margin: 0; aspect-ratio: 16/9; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Section */
  .section { padding: 1.75rem 0; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
.section {
    padding: 0.5rem 0 !important;
}
.heading-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.12;
  margin: 0;
  text-align: left;
}

.heading-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-top: 0.7rem;
  margin-left: 0;
  margin-right: auto;
  border-radius: 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-title-wrap {
  min-width: 0;
  flex-shrink: 0;
}

.section
{
padding: 2rem 0px !important;
}
.page-container {
    position: relative;
}
.khoj-trust-section {
    margin-top: -10px;
   margin-bottom:-10px;}


.shop-all-link {
  position: absolute;
  top: 0;
  right: 60px;
 max-width: 72%;
  background-color: transparent;
  color: #221b14;
  font-size: 14px;
  padding: 10px 2px 5px;
}


/* Desktop */
@media (min-width: 769px) {
  .shop-all-link {
    top: 0;
    right: 0;
    font-size: 10px;
  }
}

.sh-header-container
{
background-color:#ffb6c1;
color:#000;
}

.product-collection-container {
   
    grid-template-columns: repeat(0, 1fr) !important;
}
.heading-title
{
padding-bottom:10px;
}
.header-transparent {
    top:0px;
    background-color: rgb(177 72 133 / 22%) !important;
    height:auto ;
    position: sticky;
 
   
}
.header-solid
{
 background-color: rgb(177 72 133 / 22%) !important;

}