/** Shopify CDN: Minification failed

Line 24:18 Expected identifier but found whitespace
Line 24:20 Unexpected "{"
Line 24:30 Expected ":"
Line 26:20 Expected identifier but found whitespace
Line 26:22 Unexpected "{"
Line 26:32 Expected ":"
Line 27:13 Expected identifier but found whitespace
Line 27:15 Unexpected "{"
Line 27:25 Expected ":"
Line 28:18 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
/* ----------------------------------------------------
 * JAPAM LUXURY SPIRITUAL SHOPIFY THEME - MASTER CSS
 * Design System: Saffron Gold (#D97706), Ebony Charcoal (#12100E), Sand Cream (#FDFBF7)
 * ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: {{ settings.color_primary | default: '#D97706' }};
  --color-primary-hover: #B45309;
  --color-secondary: {{ settings.color_secondary | default: '#B45309' }};
  --color-bg: {{ settings.color_background | default: '#FDFBF7' }};
  --color-surface: {{ settings.color_surface | default: '#FFFFFF' }};
  --color-text: {{ settings.color_text | default: '#1C1917' }};
  --color-text-muted: {{ settings.color_text_muted | default: '#78716C' }};
  --color-dark-bg: {{ settings.color_dark_bg | default: '#12100E' }};
  --color-border: #E7E5E4;
  --color-gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #92400E 100%);
  --color-siddhi-badge: linear-gradient(135deg, #FDF4E3 0%, #FAE8C8 100%);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 25px rgba(217, 119, 6, 0.25);
  
  --container-width: 1280px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.text-gradient {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.btn-primary {
  background: var(--color-gold-gradient);
  color: #FFFFFF;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark-bg);
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #292524;
  transform: translateY(-2px);
}

.badge-certified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Header & Announcement Bar */
.announcement-bar {
  background: var(--color-dark-bg);
  color: #FDFBF7;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
}

.announcement-bar a {
  color: #F59E0B;
  text-decoration: underline;
  margin-left: 0.3rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
  overflow: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 0.5rem;
  min-width: 0;
}

.logo-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: var(--transition);
}

.icon-btn:hover {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Drawer */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header { overflow: hidden; }
  .header-inner { height: auto; min-height: 3.25rem; padding: 0.4rem 0; gap: 0.25rem; }
  .logo-brand { max-width: 45%; min-width: 0; }
  .logo-text { font-size: 1.2rem !important; letter-spacing: 0.05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .logo-sub { font-size: 0.5rem !important; letter-spacing: 0.1em; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .logo-brand img { max-width: 100px !important; height: auto; }
  .header-actions { gap: 0.25rem !important; flex-shrink: 0; }
  .header-actions .icon-btn { width: 2rem !important; height: 2rem !important; }
  .header-actions .icon-btn svg { width: 18px !important; height: 18px !important; }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-siddhi-badge);
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Trust Strip */
.trust-strip {
  background: var(--color-surface);
  border-y: 1px solid var(--color-border);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(217, 119, 6, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.trust-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Collection Tabs & Product Grid */
.products-section {
  padding: 4.5rem 0;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

/* Product Card */
.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.3);
}

.product-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: var(--color-dark-bg);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #F5F5F4;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 0.85rem;
}

.price-current {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.price-compare {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16A34A;
}

.btn-card-add {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-add:hover {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* Authenticity / BTR Section */
.btr-section {
  background: var(--color-dark-bg);
  color: #FFFFFF;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.btr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.btr-content .section-title {
  color: #FFFFFF;
}

.btr-list {
  list-style: none;
  margin: 1.75rem 0;
}

.btr-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.btr-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.btr-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.btr-input-group {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btr-input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
}

/* FAQ Accordion */
.faq-section {
  padding: 4.5rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-muted);
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 1rem;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--color-surface);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open {
  transform: translateX(0);
}

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

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.free-shipping-bar {
  background: var(--color-siddhi-badge);
  border: 1px solid rgba(217, 119, 6, 0.2);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.progress-line {
  height: 6px;
  background: rgba(217, 119, 6, 0.2);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--color-gold-gradient);
  width: 70%;
  border-radius: 3px;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: #F5F5F4;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--color-dark-bg);
  color: #A8A29E;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(217, 119, 6, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo-text {
  color: #FFFFFF;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid, .btr-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .mega-menu {
    display: none !important;
  }
}

/* ----------------------------------------------------
 * Scroll Reveal Animations
 * ---------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.revealed:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.revealed:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal.revealed:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal.revealed:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal.revealed:nth-child(6) { transition-delay: 0.5s; }

/* Slide from left/right variants */
.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in variant */
.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ----------------------------------------------------
 * Header Sticky Enhancement
 * ---------------------------------------------------- */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
}
.header-sticky.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ----------------------------------------------------
 * Product Card Enhancements
 * ---------------------------------------------------- */
.product-card .product-card-media .quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .quick-view-overlay {
  opacity: 1;
}

/* ----------------------------------------------------
 * Section Padding Utilities
 * ---------------------------------------------------- */
.section-padding-sm { padding-top: 2rem; padding-bottom: 2rem; }
.section-padding-md { padding-top: 4rem; padding-bottom: 4rem; }
.section-padding-lg { padding-top: 6rem; padding-bottom: 6rem; }

/* ----------------------------------------------------
 * Loading / Skeleton States
 * ---------------------------------------------------- */
@keyframes shimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}
.skeleton {
  background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
  background-size: 800px 104px;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

/* ----------------------------------------------------
 * Button Pulse Animation (for CTAs)
 * ---------------------------------------------------- */
@keyframes btnPulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(217, 119, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}
.btn-pulse {
  animation: btnPulse 2s infinite;
}

/* ----------------------------------------------------
 * Back to Top Button
 * ---------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
}

/* ----------------------------------------------------
 * Responsive: New Sections
 * ---------------------------------------------------- */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr !important; }
  .video-reviews-grid { grid-template-columns: 1fr !important; }
  .testimonial-carousel-wrapper { padding-left: 1rem; }
  .countdown-timer { gap: 0.75rem !important; }
  .countdown-value span { font-size: 1.75rem !important; }
  .hero-floating-card { display: none; }
  .product-gallery { margin-bottom: 1.5rem; }
  .main-product-section .container > div { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .countdown-timer { flex-wrap: wrap; gap: 0.5rem !important; }
  .countdown-value { min-width: 60px !important; padding: 0.75rem 1rem !important; }
}

/* ----------------------------------------------------
 * Print Styles
 * ---------------------------------------------------- */
@media print {
  .header, .footer, .cart-drawer, .cart-drawer-overlay,
  .mobile-nav-drawer, .mobile-nav-overlay, .back-to-top,
  .announcement-bar, .mobile-sticky-bar { display: none !important; }
}

/* ----------------------------------------------------
 * Announcement Ticker
 * ---------------------------------------------------- */
.at-track { white-space: nowrap; }

/* ----------------------------------------------------
 * Brand Story Section
 * ---------------------------------------------------- */
.brand-story .section-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------
 * Feature Grid
 * ---------------------------------------------------- */
.fg-card {
  background: var(--color-surface);
}

/* ----------------------------------------------------
 * Newsletter Section
 * ---------------------------------------------------- */
.newsletter-section .newsletter-success {
  font-weight: 600;
}
.newsletter-section .newsletter-error {
  font-weight: 500;
}

/* ----------------------------------------------------
 * Video Reviews Carousel
 * ---------------------------------------------------- */
.vrc-track {
  scrollbar-width: none;
}

/* ----------------------------------------------------
 * Bestsellers Carousel
 * ---------------------------------------------------- */
.bsc-track {
  scrollbar-width: none;
}

/* ----------------------------------------------------
 * Comparison Table
 * ---------------------------------------------------- */
.ct-table th,
.ct-table td {
  vertical-align: top;
}

/* ----------------------------------------------------
 * Responsive: New Sections (2024)
 * ---------------------------------------------------- */
@media (max-width: 768px) {
  .brand-story-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .brand-story-title {
    font-size: 1.8rem !important;
  }
  .brand-story-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem;
  }
  .brand-stat-number {
    font-size: 1.4rem !important;
  }
  .fg-grid {
    grid-template-columns: 1fr !important;
  }
  .newsletter-perks {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .ct-wrap {
    display: none;
  }
  .ct-mobile-cards {
    display: flex !important;
    flex-direction: column;
    gap: 1rem;
  }
  .bsc-card {
    width: 200px !important;
  }
  .bsc-arrow {
    display: none !important;
  }
}

/* ----------------------------------------------------
 * Circle Categories
 * ---------------------------------------------------- */
.cc-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cc-item { text-align: center; text-decoration: none; }
.cc-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  padding: 4px;
  margin: 0 auto 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.cc-item:hover .cc-ring {
  box-shadow: 0 0 20px rgba(217, 119, 6, 0.35);
  transform: scale(1.06);
}
.cc-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cc-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}
.cc-item:hover .cc-label { color: var(--color-primary); }

/* ----------------------------------------------------
 * Product Video Gallery
 * ---------------------------------------------------- */
.pvg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.pvg-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  background: #1a1a1a;
}
.pvg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.pvg-card:hover img { opacity: 0.6; }
.pvg-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pvg-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.pvg-card:hover .pvg-play-circle { transform: scale(1.1); }
.pvg-duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pvg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.pvg-modal-overlay.active { opacity: 1; visibility: visible; }
.pvg-modal {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius-md);
}

/* ----------------------------------------------------
 * Size Guide
 * ---------------------------------------------------- */
.sg-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.sg-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.sg-tab:hover, .sg-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.sg-panel { display: none; }
.sg-panel.active { display: block; }
.sg-table { width: 100%; border-collapse: collapse; }
.sg-table th, .sg-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.sg-table th {
  background: var(--color-bg);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sg-table tr:hover td { background: rgba(217, 119, 6, 0.04); }

/* ----------------------------------------------------
 * Product Quiz
 * ---------------------------------------------------- */
.pq-progress {
  height: 6px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.pq-progress-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.pq-step { display: none; }
.pq-step.active { display: block; }
.pq-question {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.pq-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pq-option {
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  background: var(--color-surface);
}
.pq-option:hover { border-color: var(--color-primary); }
.pq-option.selected {
  border-color: var(--color-primary);
  background: rgba(217, 119, 6, 0.08);
}
.pq-result { text-align: center; padding: 2rem 0; }
.pq-result-icon { font-size: 3rem; margin-bottom: 1rem; }
.pq-result-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.pq-result-desc { color: var(--color-text-muted); margin-bottom: 1.5rem; }
@media (max-width: 768px) { .pq-options { grid-template-columns: 1fr; } }

/* ----------------------------------------------------
 * Wishlist
 * ---------------------------------------------------- */
.wl-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-text-muted);
}
.wl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.wl-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.wl-remove {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  z-index: 5;
}

/* ----------------------------------------------------
 * Wholesale Inquiry
 * ---------------------------------------------------- */
.wi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.wi-form { display: flex; flex-direction: column; gap: 1rem; }
.wi-input, .wi-textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  width: 100%;
  background: var(--color-surface);
  transition: border-color 0.3s;
}
.wi-input:focus, .wi-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.wi-textarea { min-height: 120px; resize: vertical; }
.wi-info-list { list-style: none; margin-top: 1.5rem; }
.wi-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
@media (max-width: 768px) { .wi-grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------
 * Live Sales Feed
 * ---------------------------------------------------- */
.lsf-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.lsf-cards::-webkit-scrollbar { display: none; }
.lsf-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}
.lsf-card img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.lsf-name { font-weight: 600; color: var(--color-text); }
.lsf-loc, .sf-time { font-size: 0.78rem; color: var(--color-text-muted); }
.lsf-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  margin-right: 0.3rem;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ----------------------------------------------------
 * Photo Reviews
 * ---------------------------------------------------- */
.phr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.phr-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.phr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phr-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
}
.phr-img:hover .phr-overlay { opacity: 1; }
.phr-stars { color: #F59E0B; margin-bottom: 0.25rem; }
.phr-name { font-size: 0.75rem; font-weight: 600; }

/* ----------------------------------------------------
 * Certification Showcase
 * ---------------------------------------------------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.cert-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.cert-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.cert-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cert-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------
 * Endorsements
 * ---------------------------------------------------- */
.end-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.end-grid::-webkit-scrollbar { display: none; }
.end-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.end-quote {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-primary);
}
.end-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}
.end-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.end-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ----------------------------------------------------
 * Trust Guarantee Bar
 * ---------------------------------------------------- */
.tgb-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
}
.tgb-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.tgb-icon {
  font-size: 1.2rem;
}

/* ----------------------------------------------------
 * Rudraksha Guide
 * ---------------------------------------------------- */
.rg-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.rg-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.rg-tab:hover, .rg-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.rg-panel { display: none; }
.rg-panel.active { display: flex; gap: 2rem; align-items: center; }
.rg-panel img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.rg-benefits {
  list-style: none;
  margin: 1rem 0;
}
.rg-benefits li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.rg-benefits li::before {
  content: '✓ ';
  color: var(--color-primary);
  font-weight: 700;
}
@media (max-width: 768px) {
  .rg-panel { flex-direction: column; text-align: center; }
  .rg-panel img { width: 150px; height: 150px; }
}

/* ----------------------------------------------------
 * Astrology Guide
 * ---------------------------------------------------- */
.ag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.ag-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.ag-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.ag-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.ag-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.ag-recommendation {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.ag-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ----------------------------------------------------
 * Video Tutorials
 * ---------------------------------------------------- */
.vt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.vt-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}
.vt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.vt-card:hover img { opacity: 0.6; }
.vt-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
}
.vt-title {
  padding: 0.75rem 0 0;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ----------------------------------------------------
 * Blog Category Filter
 * ---------------------------------------------------- */
.bcf-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.bcf-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.bcf-tab:hover, .bcf-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.bcf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.bcf-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.bcf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.bcf-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.bcf-card-body { padding: 1.25rem; }
.bcf-card-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.bcf-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.bcf-card-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ----------------------------------------------------
 * Sticky Add to Cart Bar
 * ---------------------------------------------------- */
.sticky-add-bar { display: none; }
.sticky-add-bar.visible { display: block; }

/* ----------------------------------------------------
 * Back-in-Stock
 * ---------------------------------------------------- */
.bis-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

/* ----------------------------------------------------
 * Festival Banner
 * ---------------------------------------------------- */
.fb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fb-image img { width: 100%; border-radius: var(--radius-lg); }
@media (max-width: 768px) {
  .fb-grid { grid-template-columns: 1fr; text-align: center; }
  .fb-image { order: -1; }
}

/* ----------------------------------------------------
 * Loyalty / Rewards
 * ---------------------------------------------------- */
.loy-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.loy-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.loy-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ----------------------------------------------------
 * Before / After Slider
 * ---------------------------------------------------- */
.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: ew-resize;
  user-select: none;
}
.ba-before, .ba-after { width: 100%; }
.ba-before img, .ba-after img, .ba-placeholder {
  width: 100%;
  display: block;
}
.ba-after {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  width: 50%;
}
.ba-after img {
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
.ba-placeholder {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 99px;
}
.ba-label-before { right: 1rem; }
.ba-label-after { left: 1rem; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}
.ba-handle-line { flex: 1; width: 3px; background: #fff; }
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

/* ----------------------------------------------------
 * Popup Section
 * ---------------------------------------------------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-container {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.popup-overlay.active .popup-container {
  transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: background 0.2s;
}
.popup-close:hover {
  background: rgba(0, 0, 0, 0.2);
}
.popup-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.popup-body {
  padding: 2rem;
  text-align: center;
}
.popup-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.popup-subtext {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.popup-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.popup-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--color-bg);
}
.popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}
.popup-submit {
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.popup-submit:hover { opacity: 0.9; }
.popup-success {
  display: none;
  padding: 1rem;
  font-weight: 600;
}
.popup-success.show { display: block; }
.popup-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-bg);
  border: 1px dashed var(--color-primary);
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
  cursor: pointer;
}
.popup-discount code {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}
.popup-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.popup-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
}
.popup-socials a:hover {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 480px) {
  .popup-form { flex-direction: column; }
}

/* ============================================================
 * MASTER MOBILE RESPONSIVE STYLES
 * ============================================================ */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-cta-group { justify-content: center; }
  .hero-media { max-width: 500px; margin: 0 auto; }
  .hero-image-wrapper img { height: 380px; }
  .hero-floating-card { display: none; }
  .btr-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .btr-widget { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .cert-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .vt-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .bcf-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .main-product-section .container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .featured-deal-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Global */
  .container { padding: 0 1rem; }
  h1, .section-title { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  .section-title-wrap { margin-bottom: 1.5rem; }
  .btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }

  /* Hero */
  .hero-section { padding: 2rem 0 3rem; }
  .hero-title { font-size: 1.85rem !important; }
  .hero-description { font-size: 1rem; }
  .hero-image-wrapper img { height: 280px; }
  .hero-pill { font-size: 0.75rem; padding: 0.3rem 0.75rem; }

  /* Trust Strip */
  .trust-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .trust-card { padding: 0.75rem; gap: 0.6rem; }
  .trust-icon { width: 2.25rem; height: 2.25rem; font-size: 1rem; }
  .trust-info h4 { font-size: 0.8rem; }
  .trust-info p { font-size: 0.7rem; }

  /* Collection Tabs & Products */
  .products-section { padding: 2.5rem 0; }
  .tabs-nav { gap: 0.5rem; margin-bottom: 1.5rem; }
  .tab-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.85rem; }
  .product-card-body { padding: 0.85rem; }
  .product-title { font-size: 0.9rem; }
  .price-current { font-size: 1.05rem; }
  .price-compare { font-size: 0.8rem; }
  .btn-card-add { padding: 0.5rem; font-size: 0.8rem; }

  /* BTR / Authenticity */
  .btr-section { padding: 3rem 0; }
  .btr-grid { gap: 2rem; }
  .btr-list { margin: 1.25rem 0; }
  .btr-item { margin-bottom: 0.85rem; }
  .btr-input-group { flex-direction: column; }

  /* FAQ */
  .faq-section { padding: 2.5rem 0; }
  .faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Featured Product */
  .featured-deal-inner { padding: 1.5rem !important; }

  /* Circle Categories */
  .cc-grid { gap: 1rem; }
  .cc-ring { width: 90px; height: 90px; }
  .cc-label { font-size: 0.8rem; }

  /* Product Video Gallery */
  .pvg-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pvg-card { aspect-ratio: 9/14; }

  /* Size Guide - make table scrollable */
  .sg-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sg-table { min-width: 500px; }

  /* Wishlist */
  .wl-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  /* Wholesale */
  .wi-grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* Live Sales */
  .lsf-track { max-width: 100%; }

  /* Photo Reviews */
  .phr-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

  /* Certifications */
  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .cert-card { padding: 1.25rem; }
  .cert-card img { width: 60px; height: 60px; }

  /* Endorsements */
  .end-card { width: 280px; padding: 1.25rem; }
  .end-quote { font-size: 0.9rem; }

  /* Trust Guarantee */
  .tgb-strip { gap: 1rem; }
  .tgb-item { font-size: 0.8rem; }

  /* Astrology Guide */
  .ag-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .ag-card { padding: 1rem; }
  .ag-emoji { font-size: 2rem; }
  .ag-name { font-size: 0.9rem; }

  /* Video Tutorials */
  .vt-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Blog Filter */
  .bcf-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bcf-card img { height: 180px; }

  /* Loyalty */
  .loy-tiers { grid-template-columns: 1fr; gap: 1rem; }
  .loy-tier { padding: 1.5rem; }

  /* Before/After */
  .ba-placeholder { height: 280px; }
  .ba-handle-circle { width: 36px; height: 36px; }

  /* Parallax */
  .parallax-bg { background-attachment: scroll !important; }

  /* Festival Banner */
  .fb-grid { gap: 1.5rem; }

  /* Newsletter */
  .newsletter-section .container { padding: 2.5rem 1rem; }

  /* Main Product Page */
  .main-product-section { padding: 1.5rem 0 !important; }
  .product-gallery { margin-bottom: 0; }
  .gallery-main-wrapper img { height: 300px !important; }
  .gallery-thumbnails { gap: 0.5rem; }
  .gallery-thumb-btn { width: 60px !important; height: 60px !important; }
  .product-info-col h1 { font-size: 1.5rem !important; }
  .fomo-pill { font-size: 0.75rem !important; }
  .fomo-stock-bar { padding: 0.6rem 0.75rem; }
  .fomo-stock-bar > div:first-child { font-size: 0.78rem !important; flex-direction: column; gap: 0.25rem; }

  /* Mobile Sticky Bar */
  .mobile-sticky-bar { padding: 0.6rem 1rem; }
}

.cat-grid { }
.cat-grid a { display: block; }
.iwt-grid img { max-height: 400px; }
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .cat-grid a { height: 200px !important; }
  .iwt-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .iwt-grid img { height: 250px !important; }
}
@media (max-width: 480px) {
  .cat-grid a { height: 160px !important; }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 0.85rem; }
  h1 { font-size: 1.4rem !important; }
  .section-title { font-size: 1.35rem !important; }
  .hero-title { font-size: 1.6rem !important; }
  .hero-image-wrapper img { height: 220px; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.65rem; }
  .product-card-body { padding: 0.65rem; }
  .product-title { font-size: 0.82rem; }
  .price-current { font-size: 0.95rem; }
  .trust-grid { grid-template-columns: 1fr !important; }
  .footer-grid { gap: 1.5rem; }
  .gallery-main-wrapper img { height: 250px !important; }
  .phr-grid { grid-template-columns: repeat(2, 1fr); }
  .ag-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .ag-card { padding: 0.75rem; }
  .pvg-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .cert-grid { grid-template-columns: 1fr; }
  .wl-grid { grid-template-columns: 1fr; }
  .end-card { width: 260px; }
  .cc-ring { width: 72px; height: 72px; }
  .cc-label { font-size: 0.72rem; }
}
