*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon:      #581c1c;
  --maroon-deep: #2C0606;
  --brown:       #2C1A00;
  --gold:        #C9962B;
  --gold-light:  #E8B84B;
  --gold-pale:   #F5D97A;
  --cream:       #F5EDD8;
  --off-white:   #FAF6EE;
  --text-dark:   #1A0C00;
  --text-mid:    #5C3A1E;
  --text-light:  #C8B89A;

  --font-display: 'Cinzel', serif;
  --font-body:    'EB Garamond', serif;
  --font-ui:      'Lato', sans-serif;

  --radius:     6px;
  --radius-lg:  14px;
  --shadow:     0 4px 24px rgba(74, 10, 10, 0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--maroon-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ============================================================
   LATEST BLOGS SECTION
   ============================================================ */
.latest-blogs {
  padding: 80px 40px;
  background: #faf6ef;
}

.blogs-header {
  text-align: center;
  margin-bottom: 48px;
}

.blogs-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.blogs-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blogs-subtitle-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.blogs-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-mid);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74, 10, 10, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74, 10, 10, 0.14);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 40px;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.blog-card-date i {
  color: var(--gold);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--maroon);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  width: fit-content;
  text-decoration: none;
}

.blog-card-link:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

/* Blog skeleton loaders */
.blog-skeleton {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74, 10, 10, 0.07);
  animation: blogPulse 1.5s ease-in-out infinite;
}

.blog-skeleton::before {
  content: '';
  display: block;
  height: 180px;
  background: linear-gradient(90deg, #f0ebe3 25%, #e8e0d4 50%, #f0ebe3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.blog-skeleton::after {
  content: '';
  display: block;
  height: 140px;
  background: linear-gradient(90deg, #f0ebe3 25%, #e8e0d4 50%, #f0ebe3 75%);
  background-size: 200% 100%;
  margin: 16px;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 1024px) {
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .blogs-grid { grid-template-columns: 1fr; }
  .latest-blogs { padding: 56px 20px; }
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page {
  padding: 32px 24px 80px;
  background:
    radial-gradient(circle at top left, rgba(201, 150, 43, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f7efe0 100%);
}

.blog-hero {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #581c1c 0%, #2c0606 60%, #6d4420 100%);
  color: #fff6df;
  box-shadow: 0 20px 60px rgba(44, 6, 6, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-hero-copy h1,
.blog-featured-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  margin: 10px 0 14px;
}

.blog-hero-copy p,
.blog-featured-copy p {
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-kicker,
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.blog-article-section {
  max-width: 780px;
  margin: 0 auto 64px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 150, 43, 0.15);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(74, 10, 10, 0.08);
}

.blogs-ornament-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.blogs-ornament-icon {
  color: var(--gold);
  font-size: 18px;
  margin: 0 14px;
}

.blog-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
  min-height: 200px;
  border-radius: 18px;
  font-family: var(--font-ui);
}

.blog-archive-placeholder,
.blog-featured-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--gold);
}

.blog-archive-meta,
.blog-detail-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.blog-detail-card h2 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 28px 0 10px;
}

.blog-detail-card p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-detail-card figure {
  margin: 24px 0;
}

.blog-detail-card figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.blog-detail-card figcaption {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

@media (max-width: 960px) {
  .blog-hero {
    padding: 28px;
  }
  .blog-article-section {
    padding: 28px 24px;
  }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--maroon-deep);
  color: var(--gold-light);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 7px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 15px;
  overflow: hidden;
}
.topbar-mantra {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 150, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(74, 10, 10, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.12em;
  line-height: 1.1;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links > li > a {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dark);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--maroon);
  border-bottom-color: var(--gold);
}
.arrow { font-size: 9px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: var(--off-white);
  border: 1px solid rgba(201, 150, 43, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--maroon);
}

.nav-icons { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  transition: transform var(--transition);
}
.icon-btn:hover { transform: scale(1.15); }
.cart-btn {
  font-size: 24px;
  font-family: var(--font-ui);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-count {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(229, 102, 11);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--maroon);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slides { width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--maroon-deep);
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 5, 0, 0.80) 0%,
    rgba(20, 5, 0, 0.45) 60%,
    rgba(20, 5, 0, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 60px 80px;
  max-width: 680px;
}
.hero-om {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 10px;
  animation: floatOm 3s ease-in-out infinite;
  text-shadow: 0 0 24px rgba(232,184,75,0.5);
}
@keyframes floatOm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-content h1 .gold {
  color: var(--gold-light);
  display: block;
}
.hero-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-pale));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,150,43,0.4);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}
.btn-gold-sm {
  padding: 9px 18px;
  font-size: 11px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Hero dots & arrows */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(201,150,43,0.4);
  color: var(--gold-light);
  font-size: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover {
  background: var(--gold);
  color: var(--maroon-deep);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.section-light { background: var(--off-white); }
.section-dark { background: var(--maroon-deep); }
.section-dark-warm { background: #1A0800; }

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.gold-label { color: var(--gold); }

section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}
.section-dark h2, .section-dark-warm h2 { color: var(--cream); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { padding: 80px 60px; }
.why-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.why-card p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}
.why-diya {
  position: relative;
  width: 180px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.diya-glow {
  position: absolute;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(232,184,75,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}
.diya-img {
  width: 120px; height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner { }
.quote-bg {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--brown);
  position: relative;
  overflow: hidden;
}
.quote-left {
  flex: 1;
  min-width: 300px;
  position: relative;
  min-height: 400px;
}
.quote-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(3);
}
.quote-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
.quote-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
  text-align: left;
}
.quote-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 20px;
}
.quote-lines p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 4px;
}
.quote-lines .gold { color: var(--gold-light); }
.quote-content .btn-gold-outline { margin-top: 28px; }

/* ============================================================
   PREMIUM PRODUCTS (ZIG-ZAG)
   ============================================================ */
.premium-products { padding: 80px 60px; overflow: hidden; }
.premium-row {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 90px;
}
.premium-row:last-child { margin-bottom: 0; }
.premium-row.reverse { flex-direction: row-reverse; }

.premium-img {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.premium-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,150,43,0.35);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.premium-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.premium-img:hover img { transform: scale(1.05); }

/* Corner ribbon badge on product image */
.premium-ribbon {
  position: absolute;
  top: 16px;
  right: -2px;
  z-index: 2;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold-pale);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px 7px 14px;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.premium-row.reverse .premium-ribbon {
  right: auto;
  left: -2px;
  border-radius: 0 30px 30px 0;
  padding: 7px 14px 7px 16px;
}

.premium-text {
  flex: 1;
  min-width: 0;
  padding: 10px 10px;
}
.premium-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.premium-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 12px;
}

/* Star rating (no review count, per request) */
.premium-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gold);
}
.premium-rating .rating-num {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  margin-left: 2px;
}
.premium-row.reverse .premium-rating { justify-content: flex-end; }

.premium-text p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 22px;
  max-width: 480px;
}
.premium-row.reverse .premium-text p { margin-left: auto; }

/* Sequence layout for features */
.premium-features {
  display: flex;
  align-items: stretch;
  background: #faf7f2;
  border: 1px solid rgba(201, 150, 43, 0.2);
  border-radius: 12px;
  padding: 16px 0;
  margin-bottom: 28px;
  width: 100%;
}
.premium-row.reverse .premium-features { justify-content: center; }

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 4px;
  position: relative;
}
.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: rgba(201, 150, 43, 0.25);
}

.feature-item i {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}
.feature-item span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.3;
}

/* Scroll-reveal slide-in (left/right) driven by script.js */
.premium-img.anim-slide,
.premium-text.anim-slide {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.premium-row:not(.reverse) .premium-img.anim-slide { transform: translateX(-50px); }
.premium-row:not(.reverse) .premium-text.anim-slide { transform: translateX(50px); }
.premium-row.reverse .premium-img.anim-slide { transform: translateX(50px); }
.premium-row.reverse .premium-text.anim-slide { transform: translateX(-50px); }
.premium-img.anim-slide.in-view,
.premium-text.anim-slide.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RITUAL JOURNEY
   ============================================================ */
.ritual-journey {
  position: relative;
  padding: 90px 60px 100px;
  overflow: hidden;
}

/* Decorative hanging-lamp flourishes in the top corners */
.ritual-corner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.ritual-corner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ritual-corner-left  { left: -250px; }
.ritual-corner-right { right: -250px; }

.left {
    animation: rotateLeft 80s linear infinite;
}

.right {
    animation: rotateRight 80s linear infinite;
}

@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRight {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.ritual-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ritual-header h2 { margin-bottom: 14px; }
.ritual-subtitle {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.ritual-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ritual-step {
  flex: 1;
  min-width: 170px;
  max-width: 210px;
  text-align: center;
  position: relative;
  padding-top: 4px;
}

/* Dashed connecting line between circles, with a floating diamond marker */
.ritual-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(100% - 4px);
  width: calc(100% - 32px);
  border-top: 2px dashed rgba(201, 150, 43, 0.45);
  z-index: 0;
}
.ritual-step:not(:last-child)::before {
  content: "✦";
  position: absolute;
  top: 56px;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--gold);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-num {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-deep);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 3px 10px rgba(201, 150, 43, 0.4);
  position: relative;
  z-index: 2;
}
.step-circle {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid #fff;
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  background: var(--cream);
  position: relative;
  z-index: 2;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 26px rgba(201, 150, 43, 0.35);
}
.step-circle img { width: 100%; height: 100%; object-fit: cover; }

.step-card {
  background: #fff;
  border: 1px solid rgba(201, 150, 43, 0.3);
  border-radius: var(--radius-lg);
  padding: 18px 14px 22px;
  box-shadow: 0 6px 18px rgba(88, 28, 28, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ritual-step:hover .step-card {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(88, 28, 28, 0.12);
}
.step-icon {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1;
}
.ritual-step h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--maroon);
  margin-bottom: 6px;
}
.ritual-step p {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ============================================================
   AVAILABLE ON SECTION
   ============================================================ */
.available-on-section {
  padding: 80px 60px;
  background: var(--bg-background);
  text-align: center;
}
.available-on-section h2 {
  font-family: 'Libre Caslon Text', serif;
  font-size: 2.2rem;
  color: var(--maroon);
  margin-bottom: 40px;
}
.available-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.available-logos img {
  max-height: 90px;
  max-width: 300px;
  object-fit: contain;
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}
.available-logos img:hover {
  transform: scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: rgba(250, 246, 238, 0.97);
  color: var(--text-dark);
  border-top: 1px solid rgba(201, 150, 43, 0.25);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  width: 42px;
  height: 42px;
  background:
    linear-gradient(145deg, rgba(201,150,43,0.18), rgba(255,255,255,0.9)),
    #fff7e8;
  border: 1px solid rgba(201,150,43,0.35);
  border-radius: 14px;
  color: var(--maroon);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  box-shadow: 0 6px 16px rgba(74, 10, 10, 0.08);
}
.social-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 10px 24px rgba(201, 150, 43, 0.28);
}
.social-btn i {
  font-size: 18px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #3e2723;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.title-separator {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
  position: relative;
}


.border-left-col {
  border-left: 1px solid rgba(201,150,43,0.3);
  padding-left: 30px;
}

.footer-contact-info p {
  font-family: var(--font-ui);
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

.follow-us-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #3e2723;
  margin-top: 24px;
  margin-bottom: 12px;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.follow-us-title::after {
  content: "";
  flex: 1;
  max-width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,150,43,0.15));
  border-radius: 999px;
}
.follow-us-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold);
  max-width: 60px;
}

.list-arrow {
  color: var(--gold);
  font-size: 10px;
  margin-right: 6px;
  transition: color var(--transition);
}
.footer-col ul li { 
  margin-bottom: 10px; 
  transition: transform var(--transition);
}
.footer-col ul li:hover {
  transform: translateX(8px);
}
.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  transition: color var(--transition);
}
.footer-col ul li:hover a, .footer-col ul li:hover .list-arrow { 
  color: var(--maroon); 
}
.footer-newsletter p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(201,150,43,0.4);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.newsletter-form input {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
}
.newsletter-form input::placeholder { color: var(--text-mid); opacity: 0.6; }
.btn-subscribe {
  background: var(--gold);
  color: var(--maroon-deep);
  border: none;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-subscribe:hover { background: var(--gold-light); }
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-bottom-wrapper {
  position: relative;
  background: linear-gradient(to right, #4c2602, #291200);
}
.footer-diya {
  position: absolute;
  top: -70px;
  width: 220px;
  z-index: 10;
  pointer-events: none;
}
.left-diya { left: -10px; }
.right-diya { right: -10px; }

.footer-bottom {
  padding: 30px 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--gold);
}
.copyright-text {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #e5d5c0;
}
.title-separator-dark {
  width: 30px;
  height: 1px;
  background: var(--gold);
  position: relative;
}
.title-separator-dark::after {
  content: "♦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 8px;
  background: #391c01;
  padding: 0 4px;
}

.pay-icon {
  background: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: #333;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(74, 10, 10, 0.4);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .navbar { padding: 12px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { flex-wrap: wrap; }
  .why-diya { order: -1; width: 100%; margin-bottom: 16px; }
  .ritual-steps { gap: 12px; }
  .ritual-step:not(:last-child)::after,
  .ritual-step:not(:last-child)::before { display: none; }
  .premium-row { gap: 36px; }
  .premium-img img { height: auto; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .topbar { flex-direction: column; text-align: center; gap: 4px; font-size: 11px; }
  .navbar { padding: 12px 16px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--off-white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 24px; border-bottom: none; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; padding-left: 24px; background: var(--cream); }
  .hamburger { display: block; }
  .hero { height: 75vh; min-height: 420px; }
  .hero-content { padding: 40px 24px; }
  .hero-content h1 { font-size: 1.8rem; }
  .why-us { padding: 56px 16px; }
  .quote-bg { padding: 60px 24px; justify-content: center; }
  .quote-content { text-align: center; }
  .premium-products { padding: 56px 16px; }
  .premium-row,
  .premium-row.reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
  }
  .premium-img img { height: auto; }
  .premium-text { padding: 0 4px; text-align: center; }
  .premium-text p { max-width: 100%; }
  .premium-row.reverse .premium-text p { margin-left: 0; }
  .premium-rating,
  .premium-row.reverse .premium-rating { justify-content: center; }
  .premium-features,
  .premium-row.reverse .premium-features { justify-content: center; }
  .premium-img.anim-slide,
  .premium-text.anim-slide { transform: translateY(30px) !important; }
  .ritual-journey { padding: 56px 16px 64px; }
  .ritual-corner {
    display: block;
    width: 300px;
    height: 300px;
    opacity: 0.15;
  }
  .ritual-corner-left { left: -150px; }
  .ritual-corner-right { right: -150px; }
  .ritual-steps { flex-direction: column; align-items: center; gap: 36px; }
  .ritual-step { max-width: 260px; }
  .ritual-step:not(:last-child)::after {
    display: block;
    top: 100%;
    left: 50%;
    width: 0;
    height: 24px;
    border-top: none;
    border-left: 2px dashed rgba(201, 150, 43, 0.45);
  }
  .ritual-step:not(:last-child)::before {
    display: flex;
    top: calc(100% + 12px);
    left: 50%;
  }
  .available-on-section { padding: 56px 16px; }
  .available-logos { gap: 24px; }
  .available-logos img { max-height: 48px; max-width: 120px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 24px; }
  .footer-bottom { padding: 16px 24px; }
}


.gold { color: var(--gold-light) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fadeup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fadeup.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: 30px;
  background-color: transparent;
  border-radius: 50px;
  text-align: center;
  font-size: 56px;
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.whatsapp-float:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.25));
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 110px;
    right: 20px;
    font-size: 48px;
  }
}
