/* ============================================================
   style.css — Muzaffarpur Bangles & Lahti
   Author: Satyam (Senior Frontend Developer)
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold:         #c8860a;
  --gold-light:   #f0c050;
  --gold-pale:    #fdf3dc;
  --crimson:      #8b1a1a;
  --crimson-deep: #5c0f0f;
  --blush:        #f7cfd6;
  --rose:         #e8839a;
  --cream:        #fef9f0;
  --dark:         #1a0a00;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 44px; height: 44px;
  border: 1.5px solid var(--crimson);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  background: rgba(254,249,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,134,10,0.2);
  transition: box-shadow 0.3s;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 900;
  color: var(--crimson);
  letter-spacing: 0.04em; line-height: 1.1;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--dark); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--crimson) !important; color: #fff !important;
  font-style: normal !important; padding: 8px 22px;
  border-radius: 2px; font-weight: 600 !important;
  letter-spacing: 0.1em !important; font-size: 0.85rem !important;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.burger { display: none; font-size: 1.5rem; cursor: none; color: var(--crimson); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,134,10,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,26,26,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.mandala-bg {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: 0.04; pointer-events: none;
  animation: rotateSlow 60s linear infinite;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-pale); border: 1px solid var(--gold-light);
  color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 2px;
  margin-bottom: 28px; width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1.05; color: var(--crimson-deep); margin-bottom: 8px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title .gold   { color: var(--gold); }
.hero-title .italic { font-style: italic; }
.hero-subtitle-hindi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 1.3rem; color: var(--crimson); opacity: 0.75;
  margin-bottom: 24px; font-weight: 300;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-desc {
  font-size: 1.15rem; line-height: 1.8; color: #4a2a10;
  max-width: 460px; margin-bottom: 40px; font-style: italic;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-stats {
  display: flex; gap: 36px; margin-top: 52px;
  animation: fadeUp 0.9s 0.5s ease both;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-label {
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: #7a4020; margin-top: 4px;
}

/* Buttons */
.btn-primary {
  background: var(--crimson); color: #fff;
  padding: 14px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.08em;
  border: none; cursor: none; border-radius: 2px;
  text-decoration: none; display: inline-block;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  background: transparent; color: var(--crimson);
  padding: 14px 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.08em;
  border: 1.5px solid var(--crimson); cursor: none; border-radius: 2px;
  text-decoration: none; display: inline-block; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--crimson); color: #fff; }

/* ─── HERO RIGHT — IMAGE COLLAGE ─── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 60px 48px 60px 20px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: auto;
  gap: 12px;
  width: 100%; max-width: 520px;
}
.collage-main {
  grid-column: 1; grid-row: 1;
  border-radius: 6px; overflow: hidden;
  position: relative; aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(139,26,26,0.18);
}
.collage-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-main:hover img { transform: scale(1.04); }
.collage-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(92,15,15,0.85); color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 2px;
  backdrop-filter: blur(6px);
}
.collage-side {
  grid-column: 2; grid-row: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.collage-small {
  border-radius: 6px; overflow: hidden;
  flex: 1; position: relative;
  box-shadow: 0 10px 30px rgba(139,26,26,0.12);
}
.collage-small img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.collage-small:hover img { transform: scale(1.06); }

/* Floating Tags */
.tag {
  position: absolute;
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 24px;
  padding: 7px 14px;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--crimson);
  box-shadow: 0 4px 20px rgba(200,134,10,0.15);
  white-space: nowrap;
  animation: floatTag 3s ease-in-out infinite;
  z-index: 10;
}
.tag1 { top: 10px;    left: -30px;  animation-delay: 0s; }
.tag2 { top: 30%;     right: -48px; animation-delay: 0.8s; }
.tag3 { bottom: 22%;  left: -40px;  animation-delay: 1.6s; }
.tag4 { bottom: 10px; right: -36px; animation-delay: 0.4s; }

/* ─── MARQUEE ─── */
.marquee-strip {
  background: var(--crimson); color: #fff;
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.9rem; letter-spacing: 0.1em; padding: 0 32px; opacity: 0.9;
}
.marquee-dot { color: var(--gold-light); }

/* ─── SHARED SECTION ─── */
.section { padding: 100px 80px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--crimson-deep); line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-line {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--crimson));
  margin: 20px auto 0;
}

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid rgba(200,134,10,0.15);
  border-radius: 6px; overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: none;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(139,26,26,0.13);
}
.product-img {
  height: 280px; position: relative; overflow: hidden;
  background: #f9f0f0;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.badge-new, .badge-hot {
  position: absolute; top: 14px; left: 14px;
  color: #fff; font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 2px; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
}
.badge-new { background: var(--crimson); }
.badge-hot { background: var(--gold); }

.product-info { padding: 22px 24px 26px; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--dark); margin-bottom: 4px;
}
.product-hindi {
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.8rem; color: var(--crimson); margin-bottom: 10px; opacity: 0.7;
}
.product-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold); font-weight: 700;
}
.product-price-old {
  font-size: 0.9rem; color: #bbb;
  text-decoration: line-through; margin-left: 6px;
}
.btn-card {
  display: block; width: 100%; margin-top: 16px; padding: 12px;
  background: var(--crimson-deep); color: #fff; border: none; cursor: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; transition: background 0.3s;
}
.btn-card:hover { background: var(--gold); }
.btn-card.added { background: #2d7a2d; }

/* ─── SPOTLIGHT SECTION ─── */
.spotlight {
  background: var(--gold-pale);
  padding: 80px;
}
.spotlight-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.spotlight-img {
  border-radius: 8px; overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(139,26,26,0.2);
  aspect-ratio: 4/5;
}
.spotlight-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.spotlight-img:hover img { transform: scale(1.04); }
.spotlight-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(92,15,15,0.85));
  padding: 40px 24px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  text-align: center;
}
.spotlight-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--crimson-deep); line-height: 1.1;
  margin: 12px 0 20px;
}
.spotlight-title em { font-style: italic; color: var(--gold); }
.spotlight-desc {
  font-size: 1.1rem; line-height: 1.8;
  color: #4a2a10; font-style: italic; margin-bottom: 28px;
}
.spotlight-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.spot-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; color: #5a2a10;
  background: #fff; padding: 12px 16px; border-radius: 4px;
  border: 1px solid rgba(200,134,10,0.15);
}

/* ─── WHY US ─── */
.why-section { background: var(--crimson-deep); color: #fff; padding: 90px 80px; }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 56px;
}
.why-card {
  text-align: center; padding: 32px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; transition: background 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.06); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 10px; }
.why-desc { font-size: 0.9rem; line-height: 1.7; opacity: 0.75; font-style: italic; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 80px; background: var(--gold-pale); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.testi-card {
  background: #fff; padding: 34px 30px; border-radius: 4px;
  border-left: 3px solid var(--crimson);
  box-shadow: 0 4px 24px rgba(200,134,10,0.08);
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-size: 1.05rem; font-style: italic; line-height: 1.8;
  color: #3a1a10; margin-bottom: 20px;
}
.testi-quote::before {
  content: '\201C'; font-size: 2rem; color: var(--gold);
  line-height: 0; vertical-align: -0.4em; margin-right: 4px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; background: var(--blush);
}
.testi-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--crimson); }
.testi-city { font-size: 0.78rem; color: #888; letter-spacing: 0.08em; }

/* ─── OFFER BANNER ─── */
.offers-section {
  padding: 80px;
  background: linear-gradient(135deg, var(--crimson-deep) 0%, #3d0a0a 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.offer-text { color: #fff; }
.offer-badge {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; margin-bottom: 20px;
}
.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; margin-bottom: 16px;
}
.offer-title .accent { color: var(--gold-light); font-style: italic; }
.offer-desc { opacity: 0.8; font-size: 1.05rem; font-style: italic; line-height: 1.7; margin-bottom: 30px; }
.offer-form { display: flex; }
.offer-input {
  flex: 1; padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2); border-right: none;
  outline: none; background: rgba(255,255,255,0.12); color: #fff;
}
.offer-input::placeholder { color: rgba(255,255,255,0.5); font-style: italic; }
.offer-submit {
  padding: 14px 28px; background: var(--gold); color: #fff;
  border: none; cursor: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.1em;
  transition: background 0.3s;
}
.offer-submit:hover { background: var(--gold-light); }

.offer-img-wrap {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  aspect-ratio: 4/5;
}
.offer-img { width: 100%; height: 100%; object-fit: cover; }
.offer-img-label {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(200,134,10,0.9); color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 8px 20px; border-radius: 2px;
  white-space: nowrap;
}

/* ─── FOOTER ─── */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 80px 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 14px; }
.footer-brand span { color: var(--gold); }
.footer-desc { font-size: 0.9rem; line-height: 1.8; font-style: italic; opacity: 0.7; }
.footer-heading { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 1rem; margin-bottom: 18px; letter-spacing: 0.06em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; font-style: italic; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 16px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: none; transition: background 0.3s, border-color 0.3s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; opacity: 0.5;
}

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--crimson); color: #fff;
  padding: 14px 24px; border-radius: 4px;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic;
  z-index: 9999; transform: translateX(120%); transition: transform 0.4s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(0); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── KEYFRAMES ─── */
@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatTag { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-collage { grid-template-columns: 1fr 160px; }
  .tag2, .tag4 { right: -16px; }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .burger { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-right { display: none; }
  .section, .why-section, .testimonials, .spotlight, .offers-section, footer { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 36px; }
  .offers-section { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .offer-img-wrap { aspect-ratio: 3/2; }
}

@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .spotlight-details { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
