/* ==========================================================================
   MITHILA SUGANDH - Premium CSS Design System & Stylesheet
   ========================================================================== */

/* Import Google Fonts for luxury typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Marcellus&family=Jost:wght@300;400;500;600;700&display=swap');

/* CSS Variables for design tokens */
:root {
  --color-maroon-dark: #3F0C10;
  --color-maroon: #58111A;
  --color-maroon-light: #7E232F;
  --color-orange: #D85A21;
  --color-orange-light: #E9753F;
  --color-cream-bg: #FAF5EF;
  --color-cream-card: #FFFDF9;
  --color-cream-dark: #EFE0CD;
  --color-gold: #C5A059;
  --color-gold-bright: #E5A93B;
  --color-text-dark: #300C12;
  --color-text-muted: #6B5558;
  
  --font-serif: 'Marcellus', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --font-sub: 'Cormorant Garamond', serif;
  
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-cream-bg);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================================================
   Overlay Systems (Grain & Vignette)
   ========================================================================== */

/* Fine grain noise overlay to give an artistic, natural texture */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
}

/* Ambient vignette to frame the website */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, transparent 60%, rgba(63, 12, 16, 0.15) 100%);
  pointer-events: none;
  z-index: 9998;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-maroon-light);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

/* Hover state for links */
body.hovered .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--color-orange);
  background-color: rgba(216, 90, 33, 0.05);
}

body.hovered .cursor-dot {
  transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring {
    display: none; /* Hide on mobile/tablets */
  }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-maroon-dark);
  z-index: 10005;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

#preload.fade-out {
  opacity: 0;
  visibility: hidden;
}

.pl-inner {
  text-align: center;
  color: var(--color-cream-bg);
}

.pl-mark {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  position: relative;
}

.pl-mark svg {
  width: 100%;
  height: 100%;
  animation: rotateLoader 6s linear infinite;
}

.pl-mark::after {
  content: "MS";
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 2px;
}

.pl-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-cream-bg);
  margin-bottom: 8px;
}

.pl-sub {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold);
  opacity: 0.8;
  margin-bottom: 24px;
}

.pl-bar {
  width: 150px;
  height: 2px;
  background-color: rgba(239, 224, 205, 0.1);
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.pl-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background-color: var(--color-gold);
  border-radius: 1px;
  transition: width 0.1s linear;
}

@keyframes rotateLoader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: #FAF5EF;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: padding 0.4s ease, background-color 0.4s ease;
}

.navbar.scrolled {
  padding: 12px 60px;
  background-color: #FAF5EF;
  box-shadow: 0 4px 30px rgba(63, 12, 16, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-emblem {
  height: 42px;
  width: 42px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--color-maroon);
  background-color: var(--color-cream-card);
}

.nav-logo-full {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-full {
    height: 52px;
  }
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-maroon);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-links a.active {
  color: var(--color-orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-orange);
  transition: var(--transition-fast);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-orange);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1.5px solid rgba(197, 160, 89, 0.35);
  padding-left: 24px;
}

.cart-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 8px;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.cart-btn:hover {
  color: var(--color-orange);
  transform: scale(1.05);
}

.cart-btn svg {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-orange);
  color: var(--color-cream-bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: bold;
  height: 18px;
  min-width: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(216, 90, 33, 0.3);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-dark);
}

.menu-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .navbar {
    padding: 15px 30px;
  }
  .navbar.scrolled {
    padding: 10px 30px;
  }
  .nav-links {
    display: none; /* Collapsed under mobile navigation */
  }
  .menu-toggle {
    display: block;
  }
}

/* Mobile Overlay Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-maroon-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-cream-bg);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-orange);
  transform: scale(1.1);
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: var(--color-cream-bg);
  cursor: pointer;
}

.mobile-menu-close svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   Decorative Background Elements
   ========================================================================== */
.orn-header {
  text-align: center;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--color-gold);
}

.orn-header .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.orn-header .line.r {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.orn-header svg {
  width: 24px;
  height: 24px;
}

/* Madhubani geometric border lines */
.geometric-border {
  height: 10px;
  width: 100%;
  background-image: repeating-linear-gradient(45deg, 
    var(--color-maroon) 0, var(--color-maroon) 4px,
    var(--color-orange) 4px, var(--color-orange) 8px,
    var(--color-gold) 8px, var(--color-gold) 12px,
    var(--color-cream-bg) 12px, var(--color-cream-bg) 16px
  );
  border-top: 1px solid var(--color-maroon);
  border-bottom: 1px solid var(--color-maroon);
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.sec-pad {
  padding: 100px 10%;
  position: relative;
}

@media (max-width: 768px) {
  .sec-pad {
    padding: 60px 5%;
  }
}

.sec-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  text-align: center;
  color: var(--color-maroon);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec-title em {
  font-family: var(--font-sub);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--color-orange);
}

.sec-sub {
  font-family: var(--font-sub);
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .sec-title {
    font-size: 2.2rem;
  }
  .sec-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

/* Animated background canvas container */
.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #FAF5EF 0%, #EFE0CD 60%, #E7D2B6 100%);
  animation: bgShift 18s ease-in-out infinite alternate;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Moving radial gradient animation */
@keyframes bgShift {
  0% {
    background: radial-gradient(circle at 30% 30%, #FAF5EF 0%, #EFE0CD 60%, #E7D2B6 100%);
  }
  50% {
    background: radial-gradient(circle at 70% 60%, #FFFDF9 0%, #EFE0CD 60%, #DEC5A5 100%);
  }
  100% {
    background: radial-gradient(circle at 40% 70%, #FAF5EF 0%, #EFE0CD 65%, #DEC5A5 100%);
  }
}

/* Luxury visual overlays matching reference site */
.hero-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(250, 245, 239, 0) 65%, rgba(250, 245, 239, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(197, 160, 89, 0.18) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  z-index: 3;
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hero-content {
    align-items: center;
  }
}

.badge-launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(88, 17, 26, 0.06);
  border: 1px solid rgba(88, 17, 26, 0.12);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-maroon);
  margin-bottom: 25px;
}

.badge-launch .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-orange);
  box-shadow: 0 0 8px var(--color-orange);
  animation: pulsePip 2s infinite;
}

@keyframes pulsePip {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* Staggered letter animations for title */
.hero-title {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  line-height: 1.05;
  color: var(--color-maroon);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title span.ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: revealChar 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span.gold {
  color: var(--color-orange);
}

@keyframes revealChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: var(--font-sub);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-text-dark);
  margin-bottom: 25px;
  line-height: 1.3;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Premium Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-maroon {
  background-color: var(--color-maroon);
  border: 1px solid var(--color-maroon);
  color: var(--color-cream-bg);
  box-shadow: 0 4px 15px rgba(88, 17, 26, 0.15);
}

.btn-maroon:hover {
  background-color: var(--color-maroon-dark);
  border-color: var(--color-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 17, 26, 0.25);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-maroon);
  color: var(--color-maroon);
}

.btn-outline:hover {
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
  .btn {
    width: 100%;
    padding: 14px 28px;
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 5;
}

.scroll-hint .mouse {
  width: 20px;
  height: 32px;
  border: 1px solid var(--color-gold);
  border-radius: 10px;
  position: relative;
}

.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 50%;
  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ==========================================================================
   3D Showcase Pack Container
   ========================================================================== */
.hero-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position: relative;
}

@media (max-width: 991px) {
  .hero-stage {
    height: 400px;
    margin-top: 30px;
  }
}

/* 3D Box Perspective Wrapper */
.stage-3d {
  width: 260px;
  height: 400px;
  perspective: 1200px;
  position: relative;
  z-index: 5;
}

/* 3D Box Object */
.pack-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(10deg);
  transition: transform 0.1s ease-out; /* Controlled in JS */
}

/* 3D Box Faces */
.pack-face {
  position: absolute;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
  background-color: var(--color-cream-card);
  border: 1.5px solid rgba(88, 17, 26, 0.4);
  backface-visibility: hidden;
}

/* Width and depth ratios based on 500g agarbatti packaging:
   Height = 400px, Width = 180px, Depth = 40px */
.pack-front, .pack-back {
  width: 180px;
  height: 400px;
  left: 40px; /* Offset to center the box */
}

.pack-left, .pack-right {
  width: 40px;
  height: 400px;
  left: 110px; /* Center aligned */
}

.pack-top, .pack-bottom {
  width: 180px;
  height: 40px;
  left: 40px;
  top: 180px; /* Center aligned */
}

/* Transforming faces to make a solid box */
.pack-front {
  transform: rotateY(0deg) translateZ(20px);
  background: var(--color-cream-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  border-color: var(--color-maroon);
}

.pack-back {
  transform: rotateY(180deg) translateZ(20px);
  background: var(--color-cream-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  border-color: var(--color-maroon);
}

.pack-left {
  transform: rotateY(-90deg) translateZ(90px); /* 180 / 2 = 90 */
  background: var(--color-maroon);
  border-color: var(--color-maroon-dark);
}

.pack-right {
  transform: rotateY(90deg) translateZ(90px);
  background: var(--color-maroon);
  border-color: var(--color-maroon-dark);
}

.pack-top {
  transform: rotateX(90deg) translateZ(200px); /* 400 / 2 = 200 */
  background: var(--color-maroon-dark);
  border-color: var(--color-maroon-dark);
}

.pack-bottom {
  transform: rotateX(-90deg) translateZ(200px);
  background: var(--color-maroon-dark);
  border-color: var(--color-maroon-dark);
}

/* Face Designs (Front Face elements matching packaging) */
.pack-face-header {
  border: 1px solid var(--color-orange);
  padding: 6px;
  text-align: center;
  position: relative;
}

.pack-face-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--color-maroon);
  font-weight: bold;
  line-height: 1.2;
}

.pack-face-sub {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  margin-top: 2px;
}

.pack-face-art {
  width: 100%;
  height: 180px;
  border: 2px solid var(--color-maroon);
  border-radius: 4px;
  padding: 8px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-cream-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* SVG representation of Madhubani peacock inside pack card */
.pack-face-art svg {
  width: 90px;
  height: 90px;
  color: var(--color-maroon);
}

.pack-face-art .pack-art-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--color-maroon);
  margin-top: 6px;
  letter-spacing: 1px;
  font-weight: bold;
}

.pack-face-art .pack-art-sub {
  font-family: var(--font-sub);
  font-size: 0.65rem;
  color: var(--color-orange);
  font-style: italic;
}

.pack-face-footer {
  text-align: center;
}

.pack-face-price {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--color-maroon);
}

.pack-face-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 4px;
}

/* Side Text Design */
.side-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-serif);
  color: var(--color-gold);
  letter-spacing: 3px;
  font-size: 1rem;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Shine overlay effect on the pack front */
.pack-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.42) 50%, transparent 60%);
  z-index: 10;
  pointer-events: none;
  background-size: 200% 200%;
  background-position: 0% 0%;
  transition: background-position 0.1s ease;
}

/* Realistic 3D shadow underneath */
.stage-shadow {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) rotateX(85deg);
  width: 220px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(48, 12, 18, 0.35) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   Product Grid Section
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

/* Premium Card brackets and layout */
.prod-card {
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.prod-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(63, 12, 16, 0.05);
}

/* Corner bracket ornaments */
.prod-card .corner {
  position: absolute;
  width: 25px;
  height: 25px;
  color: var(--color-gold);
  opacity: 0.35;
  transition: var(--transition-fast);
}

.prod-card:hover .corner {
  opacity: 0.85;
}

.prod-card .corner.tl { top: 12px; left: 12px; }
.prod-card .corner.tr { top: 12px; right: 12px; transform: rotate(90deg); }
.prod-card .corner.bl { bottom: 12px; left: 12px; transform: rotate(-90deg); }
.prod-card .corner.br { bottom: 12px; right: 12px; transform: rotate(180deg); }

.prod-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background-color: var(--color-orange);
  color: var(--color-cream-bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Image/Graphic stage inside card */
.prod-stage {
  height: 220px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
}

.prod-stage .halo {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 90, 33, 0.12) 0%, transparent 70%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.prod-card:hover .prod-stage .halo {
  transform: scale(1.3);
  background: radial-gradient(circle, rgba(216, 90, 33, 0.22) 0%, transparent 70%);
}

.prod-graphic {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  z-index: 2;
  transition: var(--transition-smooth);
}

.prod-card:hover .prod-graphic {
  transform: translateY(-5px) scale(1.05);
}

/* SVG stylized graphics for fragrance variations */
.prod-graphic-svg {
  width: 120px;
  height: 120px;
  color: var(--color-maroon);
  z-index: 2;
  transition: var(--transition-smooth);
}

.prod-card:hover .prod-graphic-svg {
  transform: scale(1.1) rotate(5deg);
  color: var(--color-orange);
}

.prod-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-maroon);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.prod-subtitle {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-orange);
  margin-bottom: 15px;
}

.prod-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

.prod-attributes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}

.prod-attr {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--color-cream-bg);
  border: 1px solid rgba(88, 17, 26, 0.08);
  color: var(--color-maroon);
  padding: 4px 10px;
  border-radius: 4px;
}

.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 20px;
  margin-top: auto;
}

.prod-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-maroon);
}

.prod-price-del {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
  margin-left: 6px;
  opacity: 0.6;
}

.btn-add-cart {
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background-color: var(--color-orange);
  transform: translateY(-2px);
}

.btn-add-cart svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Brand Heritage and Craftsmanship Section
   ========================================================================== */
.craft-section {
  background-color: var(--color-maroon-dark);
  color: var(--color-cream-bg);
  position: relative;
  overflow: hidden;
}

.craft-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(216, 90, 33, 0.05) 0%, transparent 80%);
  filter: blur(85px);
  pointer-events: none;
  z-index: 1;
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.craft-title {
  color: var(--color-cream-bg);
}

.craft-title em {
  color: var(--color-gold);
}

.craft-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250, 245, 239, 0.85);
  margin-bottom: 35px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.craft-item {
  border-left: 2px solid var(--color-gold);
  padding-left: 20px;
  transition: var(--transition-fast);
}

.craft-item:hover {
  border-left-color: var(--color-orange);
  transform: translateX(5px);
}

.craft-item-icon {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.craft-item-icon svg {
  width: 32px;
  height: 32px;
}

.craft-item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.craft-item-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(250, 245, 239, 0.65);
}

/* Beautiful illustration mockup side */
.craft-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.craft-frame {
  border: 1px solid var(--color-gold);
  padding: 15px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.02);
}

.craft-frame::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  pointer-events: none;
}

.craft-frame svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  color: var(--color-gold);
}

/* ==========================================================================
   Interactive Reviews / Testimonials Section
   ========================================================================== */
.reviews-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 5px 40px;
  scrollbar-width: none; /* Hide scrollbar for clean design */
  -ms-overflow-style: none;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 380px;
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 4px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

@media (max-width: 500px) {
  .review-card {
    min-width: 290px;
    padding: 30px 20px;
  }
}

.review-card:hover {
  border-color: var(--color-orange);
  box-shadow: 0 10px 30px rgba(63, 12, 16, 0.03);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--color-gold-bright);
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 25px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: bold;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.review-author-loc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Marquee Slider
   ========================================================================== */
.marquee {
  overflow: hidden;
  background-color: var(--color-orange);
  border-top: 1px solid var(--color-maroon);
  border-bottom: 1px solid var(--color-maroon);
  padding: 15px 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeAnimation 25s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cream-bg);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-maroon);
  margin-left: 40px;
}

@keyframes marqueeAnimation {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Shopping Cart Drawer System
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(63, 12, 16, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background-color: var(--color-cream-bg);
  box-shadow: -10px 0 40px rgba(63, 12, 16, 0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.cart-drawer.open {
  right: 0;
}

@media (max-width: 500px) {
  .cart-drawer {
    max-width: 100%;
  }
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-maroon);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cart-close-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 4px;
  transition: var(--transition-fast);
}

.cart-close-btn:hover {
  color: var(--color-orange);
  transform: rotate(90deg);
}

.cart-close-btn svg {
  width: 24px;
  height: 24px;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-msg {
  text-align: center;
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin: auto 0;
}

/* Cart Item Card */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  padding-bottom: 20px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}

.cart-item-img svg {
  width: 50px;
  height: 50px;
  color: var(--color-maroon);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-maroon);
}

.cart-item-fragrance {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-orange);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.q-btn {
  width: 22px;
  height: 22px;
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.q-btn:hover {
  background-color: var(--color-maroon);
  border-color: var(--color-maroon);
  color: var(--color-cream-bg);
}

.q-val {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
}

.cart-item-pricing {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-maroon);
  font-weight: bold;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  text-decoration: underline;
  margin-top: 8px;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--color-orange);
}

/* Cart Footer panel */
.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  background-color: var(--color-cream-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
}

.cart-row-label {
  font-weight: 500;
  color: var(--color-text-muted);
}

.cart-row-val {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-maroon);
}

.cart-row-val.grand-total {
  font-size: 1.6rem;
  color: var(--color-maroon-dark);
}

.btn-checkout {
  width: 100%;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  border: none;
  font-weight: bold;
}

.btn-checkout:hover {
  background-color: var(--color-orange);
}

/* ==========================================================================
   Checkout Overlay modal
   ========================================================================== */
.checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(63, 12, 16, 0.55);
  backdrop-filter: blur(5px);
  z-index: 1005;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.checkout-overlay.active {
  opacity: 1;
  visibility: visible;
}

.checkout-box {
  width: 90%;
  max-width: 500px;
  background-color: var(--color-cream-bg);
  border: 2px solid var(--color-maroon);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(63, 12, 16, 0.25);
  transition: var(--transition-smooth);
  transform: scale(0.9);
}

.checkout-overlay.active .checkout-box {
  transform: scale(1);
}

.checkout-header {
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-header-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-close {
  background: none;
  border: none;
  color: var(--color-cream-bg);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}

.checkout-close:hover {
  color: var(--color-gold);
  transform: rotate(90deg);
}

.checkout-close svg {
  width: 22px;
  height: 22px;
}

.checkout-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  background-color: var(--color-cream-card);
  font-family: var(--font-body);
  color: var(--color-text-dark);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-maroon);
  box-shadow: 0 0 5px rgba(88, 17, 26, 0.15);
}

.checkout-summary {
  background-color: rgba(197, 160, 89, 0.08);
  border: 1px dashed rgba(197, 160, 89, 0.3);
  padding: 16px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.checkout-sum-val {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-maroon);
}

.btn-place-order {
  width: 100%;
  background-color: var(--color-orange);
  color: var(--color-cream-bg);
  border: none;
  padding: 14px;
  font-weight: bold;
  margin-top: 10px;
}

.btn-place-order:hover {
  background-color: var(--color-maroon);
}

/* Success Order State design */
.checkout-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-cream-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.checkout-success.show {
  opacity: 1;
  visibility: visible;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(216, 90, 33, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-orange);
  margin-bottom: 25px;
  animation: scaleSuccessIcon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleSuccessIcon {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.success-icon-wrap svg {
  width: 44px;
  height: 44px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-maroon);
  margin-bottom: 12px;
}

.success-desc {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 320px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Newsletter & Notification Section
   ========================================================================== */
.notify-section {
  text-align: center;
  background-color: var(--color-cream-card);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.notify-card {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.notify-form {
  display: flex;
  border: 1.5px solid var(--color-maroon);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-cream-bg);
}

@media (max-width: 500px) {
  .notify-form {
    flex-direction: column;
    border: none;
    background: none;
    gap: 12px;
  }
}

.notify-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: transparent;
  color: var(--color-text-dark);
}

.btn-notify-submit {
  border: none;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  border-radius: 0;
}

@media (max-width: 500px) {
  .notify-input {
    border: 1.5px solid var(--color-maroon);
    border-radius: 4px;
    background-color: var(--color-cream-bg);
  }
  .btn-notify-submit {
    border-radius: 4px;
    width: 100%;
  }
}

.btn-notify-submit:hover {
  background-color: var(--color-orange);
}

.notify-trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

@media (max-width: 500px) {
  .notify-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.notify-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notify-trust svg {
  width: 16px;
  height: 16px;
  color: var(--color-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-maroon-dark);
  color: var(--color-cream-bg);
  padding: 80px 10% 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  border-bottom: 1px solid rgba(250, 245, 239, 0.1);
  padding-bottom: 50px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 60px;
  width: 60px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-cream-bg);
  background-color: rgba(255, 255, 255, 0.05);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(250, 245, 239, 0.7);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 245, 239, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-cream-bg);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background-color: rgba(216, 90, 33, 0.05);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(250, 245, 239, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-orange);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(250, 245, 239, 0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 245, 239, 0.45);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ==========================================================================
   Single Product & Contact Page Layout Extensions
   ========================================================================== */

/* Breadcrumbs pathway */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.breadcrumb .sep {
  color: var(--color-gold);
}

.breadcrumb .curr {
  color: var(--color-maroon);
  font-weight: 600;
}

/* Product Detail Grid Layout */
.prod-detail-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .prod-detail-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left column: product image stage */
.prod-detail-gallery {
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 4px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.prod-detail-gallery .halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(216, 90, 33, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.prod-detail-gallery svg.gallery-graphic {
  width: 240px;
  height: 240px;
  color: var(--color-maroon);
  z-index: 2;
}

/* Right column: detailed buy text panel */
.prod-detail-info {
  display: flex;
  flex-direction: column;
}

.prod-detail-brand-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color-orange);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.prod-detail-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-maroon);
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.prod-detail-fragrance {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-gold-bright);
  margin-bottom: 25px;
}

.prod-detail-price-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding-bottom: 25px;
}

.prod-detail-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-maroon-dark);
}

.prod-detail-mrp-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.prod-detail-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 35px;
}

/* Selector action buttons wrap */
.prod-detail-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.detail-q-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  background-color: var(--color-cream-card);
  overflow: hidden;
}

.detail-q-btn {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.detail-q-btn:hover {
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
}

.detail-q-val {
  width: 50px;
  height: 48px;
  border: none;
  outline: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-text-dark);
  background-color: transparent;
  -moz-appearance: textfield;
}

.detail-q-val::-webkit-inner-spin-button,
.detail-q-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.prod-detail-actions .btn-add-cart {
  padding: 0 36px;
  font-size: 0.85rem;
  border-radius: 4px;
  flex: 1;
  min-width: 200px;
  height: 48px;
}

/* Specifications Table */
.spec-table-wrap {
  margin-bottom: 50px;
}

.spec-table-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-maroon);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.spec-table tr {
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.spec-table td {
  padding: 14px 10px;
  font-size: 0.95rem;
}

.spec-table td.label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--color-maroon);
  width: 35%;
}

.spec-table td.val {
  color: var(--color-text-dark);
}

/* Interactive Tabs Component */
.tabs-wrapper {
  margin-top: 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 40px;
}

.tabs-header {
  display: flex;
  gap: 30px;
  border-bottom: 1.5px solid rgba(197, 160, 89, 0.15);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 5px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  position: relative;
  transition: var(--transition-fast);
}

.tab-btn.active {
  color: var(--color-maroon);
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-orange);
  transition: var(--transition-fast);
}

.tab-btn.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  animation: fadeInTab 0.5s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact Us Grid Layout */
.contact-section-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-section-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-form-card {
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  padding: 50px 40px;
  position: relative;
}

@media (max-width: 500px) {
  .contact-form-card {
    padding: 35px 20px;
  }
}

.contact-form-card .corner {
  position: absolute;
  width: 25px;
  height: 25px;
  color: var(--color-gold);
  opacity: 0.4;
}

.contact-form-card .corner.tl { top: 12px; left: 12px; }
.contact-form-card .corner.tr { top: 12px; right: 12px; transform: rotate(90deg); }
.contact-form-card .corner.bl { bottom: 12px; left: 12px; transform: rotate(-90deg); }
.contact-form-card .corner.br { bottom: 12px; right: 12px; transform: rotate(180deg); }

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-maroon);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form-sub {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-orange);
  margin-bottom: 30px;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-card .btn-submit {
  width: 100%;
  background-color: var(--color-maroon);
  color: var(--color-cream-bg);
  border: none;
  font-weight: bold;
}

.contact-form-card .btn-submit:hover {
  background-color: var(--color-orange);
}

/* Contact Info cards right panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  background-color: var(--color-cream-card);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 4px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-fast);
}

.info-box:hover {
  border-color: var(--color-gold);
  transform: translateX(5px);
}

.info-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(88, 17, 26, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-maroon);
  flex-shrink: 0;
}

.info-box-icon svg {
  width: 20px;
  height: 20px;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-box-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--color-maroon);
  letter-spacing: 1px;
}

.info-box-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.info-box-desc a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.info-box-desc a:hover {
  color: var(--color-orange);
}

/* Map Mock Card Graphic */
.map-mock-card {
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 12px;
  position: relative;
  background-color: var(--color-cream-card);
  overflow: hidden;
}

.map-mock-card svg {
  width: 100%;
  height: 100%;
  min-height: 200px;
  color: var(--color-gold);
}

/* Contact success message states */
.contact-success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInTab 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-success-msg.show {
  display: flex;
}

.contact-form-card.submitted form,
.contact-form-card.submitted .contact-form-sub,
.contact-form-card.submitted .contact-form-title {
  display: none;
}

.footer-logo-full {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 25px;
}

/* ==========================================================================
   Global Incense Sticks & Floating Smoke System
   ========================================================================== */
.global-smoke-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998; /* Under loader, but above header and text */
  pointer-events: none;
}

.incense-stick-holder {
  position: fixed;
  bottom: 0;
  width: 150px;
  height: 250px;
  z-index: 9999;
  pointer-events: none;
}

.incense-stick-holder.left {
  left: 20px;
}

.incense-stick-holder.right {
  right: 20px;
}

.incense-stick-wrapper {
  position: absolute;
  bottom: -20px;
  height: 220px;
  width: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Symmetrical rotations for paired twin sticks */
.incense-stick-holder.left .incense-stick-wrapper.stick-1 {
  left: 20px;
  transform: rotate(16deg);
  transform-origin: bottom center;
}

.incense-stick-holder.left .incense-stick-wrapper.stick-2 {
  left: 20px;
  transform: rotate(32deg);
  transform-origin: bottom center;
}

.incense-stick-holder.right .incense-stick-wrapper.stick-1 {
  right: 20px;
  transform: rotate(-16deg);
  transform-origin: bottom center;
}

.incense-stick-holder.right .incense-stick-wrapper.stick-2 {
  right: 20px;
  transform: rotate(-32deg);
  transform-origin: bottom center;
}

.incense-stick-body {
  width: 3px;
  height: 200px;
  background: linear-gradient(to top, #704214 0%, #a0522d 40%, #c5a059 80%, #301008 100%);
  border-radius: 1.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.incense-stick-ember {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #ff5500;
  box-shadow: 0 0 6px #ff2200, 0 0 12px #ff8800;
  animation: emberGlow 2.5s infinite alternate ease-in-out;
  margin-bottom: -1px;
}

@keyframes emberGlow {
  0% {
    transform: scale(0.9);
    background-color: #ff3300;
    box-shadow: 0 0 5px #ff2200, 0 0 10px #ff6600;
  }
  100% {
    transform: scale(1.2);
    background-color: #ffaa33;
    box-shadow: 0 0 10px #ff4400, 0 0 18px #ffa500;
  }
}

/* Hide on mobile screens to avoid overlap */
@media (max-width: 768px) {
  .incense-stick-holder {
    display: none;
  }
}
