/* =============================================
   LAKSHMI KAI PAKKUVAM - Premium Stylesheet
   ============================================= */

/* --- Google Fonts & Root Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

:root {
  --white: #FFFFFF;
  --gold: #D4AF37;
  --gold-light: #E8D070;
  --gold-dark: #B8960C;
  --gold-muted: #F0E6A0;
  --text: #222222;
  --text-muted: #6B6B6B;
  --bg: #F8F9FA;
  --bg-warm: #FDFCF7;
  --border: #E8E0CC;
  --shadow-sm: 0 2px 12px rgba(212,175,55,0.10);
  --shadow-md: 0 8px 32px rgba(212,175,55,0.16);
  --shadow-lg: 0 20px 60px rgba(212,175,55,0.20);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Cormorant Garamond', serif;
  --font-title: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.section-eyebrow {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Gold Divider --- */
.gold-divider {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto;
}

/* --- Buttons --- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2.2rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.50);
  color: var(--white);
}
.btn-gold:hover::after { background: rgba(255,255,255,0.12); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 0.72rem 2rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212,175,55,0.30);
  transform: translateY(-2px);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar-lkp {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: box-shadow 0.3s;
}
.navbar-lkp.scrolled { box-shadow: 0 4px 24px rgba(212,175,55,0.12); }
.navbar-brand-wrap { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.brand-name-text {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.brand-tagline-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-style: italic;
  letter-spacing: 0.02em;
}
.nav-link-lkp {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text) !important;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
.nav-link-lkp::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link-lkp:hover, .nav-link-lkp.active {
  color: var(--gold-dark) !important;
}
.nav-link-lkp:hover::after, .nav-link-lkp.active::after {
  left: 1rem; right: 1rem;
}
.cart-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.cart-count-badge {
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  position: absolute;
  top: -8px; right: -10px;
}
.navbar-toggler-lkp {
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  background: none;
  cursor: pointer;
}
.navbar-toggler-lkp span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-dark); border-radius: 2px; margin: 4px 0;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDFCF7 0%, #FBF7EC 40%, #FDF9F0 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  
}
.hero-ornament {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.12);
  animation: orbSpin 20s linear infinite;
}
.hero-ornament.o1 { top: -100px; right: -100px; }
.hero-ornament.o2 { bottom: -150px; left: -150px; width: 400px; height: 400px; animation-direction: reverse; animation-duration: 30s; }
@keyframes orbSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-eyebrow {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  flex: 0 0 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-muted);
}
.hero-trust-item i { color: var(--gold); font-size: 1rem; }

.hero-image-frame {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-main {
  width: 100%;
  max-width: 480px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  object-fit: cover;
  aspect-ratio: 1;
  animation: morphShape 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(212,175,55,0.25);
  border: 4px solid rgba(212,175,55,0.25);
}
@keyframes morphShape {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.6rem;
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero-float-badge .badge-icon { font-size: 1.4rem; }
.hero-float-badge.b1 { bottom: 10%; left: -5%; animation: floatBadge 3s ease-in-out infinite; }
.hero-float-badge.b2 { top: 15%; right: -5%; animation: floatBadge 4s ease-in-out infinite 1s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-swiper { overflow: hidden; border-radius: 24px; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--white);
  text-align: center;
  padding: 0.45rem 1rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden;
}
.announcement-ticker {
  display: inline-flex; gap: 4rem;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   GLASSMORPHISM CARD
   ============================================= */
.glass-card {
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.glass-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.40);
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.15);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.35);
}
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg);
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: 0.65rem;
  font-family: var(--font-title);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.product-card-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 0.4rem;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.product-action-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.product-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.product-category {
  font-family: var(--font-title);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.product-weight {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.product-old-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
}
.product-stars { color: var(--gold); font-size: 0.75rem; }
.btn-add-cart {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  font-family: var(--font-title);
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 16px rgba(212,175,55,0.40);
  transform: translateY(-1px);
}

/* =============================================
   SECTIONS
   ============================================= */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

/* --- Features / Why Choose Us --- */
.feature-icon-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  transform: scale(1.08) rotate(-3deg);
}
.feature-card:hover .feature-icon-wrap i, .feature-card:hover .feature-icon-wrap span { filter: brightness(0) invert(1); }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.35);
}
.testimonial-quote {
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font-display);
  color: rgba(212,175,55,0.20);
  position: absolute;
  top: 1rem; left: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Banner CTA --- */
.banner-cta {
  background: linear-gradient(135deg, #1A1508 0%, #2E2206 40%, #1A1508 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.banner-cta-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(212,175,55,0.10) 0%, transparent 60%);
}
.banner-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  font-weight: 500;
}
.banner-cta-title span {
  color: var(--gold);
  font-style: italic;
}

/* --- Newsletter --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #F5EDD8 100%);
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.newsletter-input-wrap {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.newsletter-input {
  flex: 1;
  border: none; outline: none;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: transparent;
  color: var(--text);
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border: none;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.75);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }

/* =============================================
   FLOATING CART
   ============================================= */
.floating-cart-btn {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
  z-index: 9000;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.floating-cart-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(212,175,55,0.55); }
.floating-cart-btn .fc-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.floating-cart-btn.pulse {
  animation: cartPulse 0.4s ease;
}
@keyframes cartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-item-row {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.cart-item-row:hover { border-color: rgba(212,175,55,0.35); box-shadow: var(--shadow-sm); }
.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid rgba(212,175,55,0.30);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 32px; height: 32px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gold-dark);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: rgba(212,175,55,0.12); }
.qty-input {
  width: 40px; height: 32px;
  border: none; outline: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: none;
}

.cart-summary-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-sm);
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-total {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-gallery-main img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1.5px solid rgba(212,175,55,0.20);
}
.product-gallery-thumbs {
  display: flex; gap: 0.6rem; margin-top: 0.75rem; flex-wrap: wrap;
}
.thumb-img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.thumb-img.active, .thumb-img:hover { border-color: var(--gold); }

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}
.detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.ingredients-list {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem;
}
.ingredient-tag {
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-dark);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-family: var(--font-body);
}

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-filter-bar {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.shop-search {
  flex: 1; min-width: 200px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  background: var(--bg-warm);
  transition: var(--transition);
}
.shop-search:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.filter-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  color: var(--text);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(212,175,55,0.30);
}
.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}
.sort-select:focus { border-color: var(--gold); }

/* =============================================
   CHECKOUT
   ============================================= */
.checkout-form-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.form-label-gold {
  font-size: 0.8rem;
  font-family: var(--font-title);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
  display: block;
}
.form-input-gold {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  background: var(--bg-warm);
  color: var(--text);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.form-input-gold:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: var(--white);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: rgba(212,175,55,0.35); }
.contact-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(212,175,55,0.40); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* =============================================
   ABOUT
   ============================================= */
.about-stat {
  text-align: center;
  padding: 1.5rem;
}
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.about-img-frame {
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  z-index: 0;
}
.about-img-frame img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #FBF7EC 0%, #FDF9F0 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(212,175,55,0.18);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.07) 0%, transparent 60%),
                    radial-gradient(circle at 80% 30%, rgba(212,175,55,0.06) 0%, transparent 50%);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--text);
  position: relative;
}
.breadcrumb-gold { color: var(--text-muted); font-size: 0.82rem; }
.breadcrumb-gold a { color: var(--gold-dark); }
.breadcrumb-gold a:hover { text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer-main {
  background: linear-gradient(135deg, #0E0A02 0%, #1A1205 100%);
  color: rgba(255,255,255,0.80);
  padding: 5rem 0 0;
}
.footer-brand-text {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
}
.footer-heading {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-social {
  display: flex; gap: 0.75rem; margin-top: 1rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 1.25rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom span { color: var(--gold); }

/* =============================================
   MODALS & OVERLAYS
   ============================================= */
.quick-view-modal .modal-content {
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.modal-header { border-bottom: 1px solid rgba(212,175,55,0.18); }

/* Toast notification */
.toast-notification {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.35);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 10000;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.88rem;
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  max-width: 300px;
}
.toast-notification.show { transform: translateX(0); }
.toast-notification i { color: var(--gold); font-size: 1.1rem; }

/* =============================================
   ORDER SUCCESS
   ============================================= */
.order-success-card {
  background: var(--white);
  border: 2px solid rgba(212,175,55,0.30);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(212,175,55,0.40);
}

/* =============================================
   SWIPER CUSTOM
   ============================================= */
.swiper-pagination-bullet { background: var(--gold) !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--gold-dark) !important;
  background: var(--white) !important;
  border-radius: 50% !important;
  width: 44px !important; height: 44px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1.5px solid rgba(212,175,55,0.25) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; font-weight: 700 !important; }

/* =============================================
   UTILITIES
   ============================================= */
.text-gold { color: var(--gold-dark); }
.bg-gold-subtle { background: rgba(212,175,55,0.06); }
.border-gold { border-color: rgba(212,175,55,0.30) !important; }
.rounded-xl { border-radius: var(--radius) !important; }

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-load { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Empty cart state */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state i { font-size: 4rem; color: rgba(212,175,55,0.30); margin-bottom: 1rem; }
.empty-state h4 { font-family: var(--font-display); color: var(--text-muted); font-size: 1.4rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .section-pad { padding: 3.5rem 0; }
  .hero-section { min-height: auto; padding: 4rem 0 3rem; }
  .hero-image-frame { margin-top: 2.5rem; }
  .hero-img-main { max-width: 320px; }
  .navbar-collapse {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(212,175,55,0.20);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-md);
  }
}
@media (max-width: 575.98px) {
  .hero-cta-group { flex-direction: column; }
  .btn-gold, .btn-outline-gold { width: 100%; justify-content: center; }
  .cart-item-row { flex-wrap: wrap; }
}

/* AOS custom */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }


.hero-section{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero-video-wrapper{
    position:absolute;
    inset:0;
    z-index:-2;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* Desktop Video */
.desktop-video{
    display:block;
}

/* Mobile Video */
.mobile-video{
    display:none;
}

/* Mobile Devices */
@media (max-width:768px){

    .desktop-video{
        display:none;
    }

    .mobile-video{
        display:block;
    }

    .hero-section{
        min-height:90vh;
    }
}