/** Shopify CDN: Minification failed

Line 120:8 Expected identifier but found whitespace
Line 120:9 Unexpected "var("

**/
/* ========================================
   KOWUA Design System
   "Liquid Gold & Deep Plum"
   ======================================== */

/* === Design Tokens === */
:root {
  /* Base Canvas */
  --color-canvas: #FCFBF9;
  --color-canvas-pure: #FFFFFF;
  --color-canvas-soft: #F8F7F5;
  
  /* Primary - Deep Plum */
  --color-plum: #302834;
  --color-plum-light: #4a3f4e;
  --color-plum-muted: rgba(48, 40, 52, 0.7);
  
  /* Accent - Champagne Gold */
  --color-gold: #BFA66B;
  --color-gold-light: #D4C08A;
  --color-gold-dark: #A08B55;
  --color-gold-muted: rgba(191, 166, 107, 0.6);
  
  /* Text Hierarchy */
  --text-primary: #302834;
  --text-secondary: #5a525d;
  --text-muted: #8a848d;
  --text-light: #b5b0b8;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-pill: 60px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
}

/* === Base Styles === */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-canvas);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Prevent horizontal overflow globally */
main,
.shopify-section,
section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Grid children fix - prevent overflow */
[class*="grid"] > * {
  min-width: 0;
  max-width: 100%;
}

/* Product page specific fixes */
#main-product-media,
#main-product-media img,
#main-product-media video {
  max-width: 100%;
}

#product-thumbnails {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#product-thumbnails::-webkit-scrollbar {
  display: none;
}

/* Mobile specific overflow prevention */
@media (max-width: 767px) {
  .product-info,
  .product-gallery {
    max-width: 100%;
    overflow: hidden;
  }
  
  h1, h2, h3, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
}
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* Prevent horizontal overflow from sections */
main, section, .section {
  overflow-x: clip;
  max-width: 100vw;
}

::selection {
  background: rgba(191, 166, 107, 0.25);
  color: var(--color-plum);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-plum);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.font-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-plum);
}

.font-body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Gold accent text */
.text-gold {
  color: var(--color-gold);
}

.text-plum {
  color: var(--color-plum);
}

/* ========================================
   LIQUID GLASS - With Gold Shimmer Border
   ======================================== */

.liquid-glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-gold-muted);
  box-shadow: 
    0 8px 32px rgba(48, 40, 52, 0.06),
    0 0 0 1px rgba(191, 166, 107, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

.liquid-glass:hover {
  border-color: var(--color-gold);
  box-shadow: 
    0 12px 40px rgba(48, 40, 52, 0.08),
    0 0 0 1px rgba(191, 166, 107, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Liquid Glass Card - For sections */
.liquid-glass-card {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 166, 107, 0.25);
  box-shadow: 
    0 4px 24px rgba(48, 40, 52, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.liquid-glass-card:hover {
  border-color: var(--color-gold-muted);
  transform: translateY(-4px);
  box-shadow: 
    0 8px 32px rgba(48, 40, 52, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Liquid Glass Dark - For dark backgrounds */
.liquid-glass-dark {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 166, 107, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Liquid Glass Dark Card - For dark sections */
.liquid-glass-dark-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 166, 107, 0.15);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.liquid-glass-dark-card:hover {
  border-color: rgba(191, 166, 107, 0.35);
  box-shadow: 
    0 8px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Liquid Glass Mini - Small floating elements */
.liquid-glass-mini {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 166, 107, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Liquid Glass Badge - Small tags/badges */
.liquid-glass-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(191, 166, 107, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Liquid Glass Badge Light - For light backgrounds */
.liquid-glass-badge-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(191, 166, 107, 0.3);
  box-shadow: 0 4px 16px rgba(48, 40, 52, 0.08);
}

/* ========================================
   BUTTONS
   ======================================== */

/* Primary Button - Solid Plum */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-plum);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 40, 52, 0.2);
}

/* Secondary Button - Ghost with Gold Border */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-plum);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--color-gold-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-plum);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Gold Accent Button - For CTAs */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-gold);
  color: var(--color-plum);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 166, 107, 0.3);
}

/* Small button variants */
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-glass {
  background: rgba(252, 251, 249, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(191, 166, 107, 0.15);
}

.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

/* ========================================
   PRODUCT IMAGES - Centered and Contained
   ======================================== */

/* Product image containers - ensure images are centered */
.product-card img,
.product-card__image img,
#main-product-media img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* Product gallery main image */
#main-product-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#main-product-media img,
#main-product-media video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Product card images */
.product-card .aspect-square img,
[class*="product-card"] .aspect-square img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */

.product-card {
  background: var(--color-canvas-pure);
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 166, 107, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: var(--color-gold-muted);
  box-shadow: 0 8px 32px rgba(48, 40, 52, 0.06);
  transform: translateY(-4px);
}

.product-card__price {
  color: var(--color-gold-dark);
  font-weight: 600;
}

.product-card__title {
  color: var(--color-plum);
  font-weight: 500;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */

.input {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-canvas-pure);
  border: 1px solid rgba(48, 40, 52, 0.1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(191, 166, 107, 0.15);
}

.input::placeholder {
  color: var(--text-muted);
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-muted), transparent);
}

.divider-plum {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48, 40, 52, 0.15), transparent);
}

/* ========================================
   FOOTER - Dark Plum with Gold Accents
   ======================================== */

.footer-dark {
  background: var(--color-plum);
  color: rgba(255, 255, 255, 0.8);
}

.footer-dark a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-dark a:hover {
  color: var(--color-gold);
}

.footer-dark .footer-heading {
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ========================================
   ICONS & MICRO-INTERACTIONS
   ======================================== */

.icon-gold {
  color: var(--color-gold);
}

.icon-plum {
  color: var(--color-plum);
}

/* Hover gold transition */
.hover-gold {
  transition: color 0.3s ease;
}

.hover-gold:hover {
  color: var(--color-gold);
}

/* ========================================
   BADGES & TAGS
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(191, 166, 107, 0.1);
  border: 1px solid rgba(191, 166, 107, 0.25);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.badge-plum {
  background: rgba(48, 40, 52, 0.08);
  border-color: rgba(48, 40, 52, 0.15);
  color: var(--color-plum);
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-canvas-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* ========================================
   UTILITIES
   ======================================== */

.bg-canvas { background: var(--color-canvas); }
.bg-white { background: var(--color-canvas-pure); }
.bg-soft { background: var(--color-canvas-soft); }
.bg-plum { background: var(--color-plum); }
.bg-gold { background: var(--color-gold); }

.border-gold { border-color: var(--color-gold); }
.border-gold-muted { border-color: var(--color-gold-muted); }
.border-plum { border-color: var(--color-plum); }

.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.15em; }

.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ========================================
   ANIMATIONS
   ======================================== */

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

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(191, 166, 107, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  :root {
    --radius-pill: 40px;
    --radius-lg: 20px;
  }
  
  .btn-primary, .btn-secondary, .btn-gold {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
}

/* ========================================
   HERO SPECIFIC COMPONENTS
   ======================================== */

/* Liquid Glass Container - For Stats in Hero */
.liquid-glass-container {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-gold-muted);
  box-shadow: 
    0 8px 32px rgba(48, 40, 52, 0.08),
    0 0 0 1px rgba(191, 166, 107, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.liquid-glass-container:hover {
  border-color: var(--color-gold);
  box-shadow: 
    0 12px 40px rgba(48, 40, 52, 0.1),
    0 0 0 1px rgba(191, 166, 107, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

/* Solid Button - Deep Plum */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--color-plum);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: var(--color-plum-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 40, 52, 0.25);
}

/* Ghost Button - Thin Border */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--color-plum);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(48, 40, 52, 0.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--color-gold);
  color: var(--color-plum);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Mobile responsive for hero buttons */
@media (max-width: 768px) {
  .btn-solid, .btn-ghost {
    padding: 14px 28px;
    font-size: 13px;
    width: 100%;
  }
  
  .liquid-glass-container {
    padding: 16px 20px;
    gap: 16px;
  }
}


/* ========================================
   QUIZ COMPONENTS
   ======================================== */

/* Glass Container - Small floating cards */
.glass-container {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 166, 107, 0.2);
  box-shadow: 
    0 4px 20px rgba(48, 40, 52, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.glass-container:hover {
  border-color: var(--color-gold-muted);
  box-shadow: 
    0 6px 24px rgba(48, 40, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Quiz Option Button */
.quiz-option {
  padding: 16px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(48, 40, 52, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--color-gold-muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(48, 40, 52, 0.06);
}

.quiz-option.selected,
.quiz-option:focus {
  background: var(--color-canvas-pure);
  border-color: var(--color-gold);
  box-shadow: 
    0 0 0 3px rgba(191, 166, 107, 0.15),
    0 4px 16px rgba(48, 40, 52, 0.08);
}

.quiz-option.selected::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quiz Navigation Button */
.quiz-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-nav-btn:hover:not(:disabled) {
  background: var(--color-gold);
  color: var(--color-plum);
  border-color: var(--color-gold);
}

.quiz-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.quiz-option {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(191, 166, 107, 0.4);
}

.quiz-option.selected {
  background: rgba(191, 166, 107, 0.15);
  border-color: var(--color-gold);
}

/* ========================================
   BODY MAP SECTION
   ======================================== */

.body-map-container {
  background: linear-gradient(135deg, var(--color-canvas) 0%, var(--color-canvas-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 166, 107, 0.15);
}

.body-map-hotspot {
  width: 24px;
  height: 24px;
  background: var(--color-gold);
  border: 2px solid var(--color-canvas-pure);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(191, 166, 107, 0.4);
}

.body-map-hotspot:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 16px rgba(191, 166, 107, 0.5);
}

.body-map-tooltip {
  background: var(--color-plum);
  color: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(48, 40, 52, 0.2);
}

/* ========================================
   2D BODY MAP HOTSPOTS - Anatomical Style
   ======================================== */

.hotspot-2d {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotspot-2d-dot {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #BFA66B 0%, #D4C08A 100%);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 
    0 4px 12px rgba(191, 166, 107, 0.5),
    0 0 0 4px rgba(191, 166, 107, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.hotspot-2d-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-2d-label {
  background: var(--color-plum);
  color: white;
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(48, 40, 52, 0.3);
}

.hotspot-2d:hover .hotspot-2d-dot,
.hotspot-2d.active .hotspot-2d-dot {
  transform: scale(1.2);
  background: linear-gradient(135deg, #302834 0%, #4a3f4e 100%);
  border-color: #BFA66B;
  box-shadow: 
    0 6px 20px rgba(48, 40, 52, 0.4),
    0 0 0 5px rgba(191, 166, 107, 0.3);
}

.hotspot-2d:hover .hotspot-2d-label,
.hotspot-2d.active .hotspot-2d-label {
  opacity: 1;
  transform: translateX(0);
}

.hotspot-2d.active .hotspot-2d-dot::after {
  animation: none;
  opacity: 0.6;
  transform: scale(1.3);
  border-color: #BFA66B;
}

/* Mobile: Hide labels, show on tap */
@media (max-width: 768px) {
  .hotspot-2d-dot {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
  
  .hotspot-2d-label {
    font-size: 10px;
    padding: 6px 10px;
  }
  
  .hotspot-2d:hover .hotspot-2d-dot,
  .hotspot-2d.active .hotspot-2d-dot {
    transform: scale(1.15);
  }
}

/* ========================================
   3D MODEL VIEWER HOTSPOTS
   ======================================== */

.hotspot-wellness {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hotspot-dot-inner {
  width: 14px;
  height: 14px;
  background: var(--color-gold);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(191, 166, 107, 0.6);
  transition: all 0.3s ease;
}

.hotspot-wellness:hover .hotspot-dot-inner,
.hotspot-wellness.active .hotspot-dot-inner {
  background: var(--color-plum);
  transform: scale(1.3);
  box-shadow: 0 4px 12px rgba(48, 40, 52, 0.4);
}

.hotspot-label {
  background: var(--color-plum);
  color: white;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.hotspot-wellness:hover .hotspot-label {
  opacity: 1;
  transform: translateX(0);
}




/* ========================================
   SCROLL ANIMATIONS - DISABLED FOR STABILITY
   ======================================== */

/* All elements visible immediately - animations completely disabled */
[data-animate],
[data-animate-stagger] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Disable problematic transitions in Theme Editor context */
.shopify-design-mode .liquid-glass-card,
.shopify-design-mode .liquid-glass-dark-card,
.shopify-design-mode .product-card {
  transition: none !important;
  transform: none !important;
}


/* ========================================
   JUDGE.ME REVIEWS CUSTOMIZATION
   Deep Plum & Liquid Gold Theme
   ======================================== */

/* Main widget container */
.jdgm-widget {
  font-family: inherit !important;
}

/* Star colors */
.jdgm-star,
.jdgm-star.jdgm--on {
  color: #BFA66B !important;
}

.jdgm-star.jdgm--off {
  color: rgba(255, 255, 255, 0.2) !important;
}

/* Preview badge (product page header) */
.jdgm-preview-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.jdgm-preview-badge .jdgm-prev-badge__text {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 14px !important;
}

/* Review widget container */
.jdgm-review-widget {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Review widget header */
.jdgm-rev-widg__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

.jdgm-rev-widg__summary-text {
  color: rgba(255, 255, 255, 0.6) !important;
}

.jdgm-rev-widg__summary-average {
  color: #BFA66B !important;
  font-weight: 600 !important;
}

/* Individual review cards */
.jdgm-rev {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 12px !important;
}

.jdgm-rev:hover {
  border-color: rgba(191, 166, 107, 0.3) !important;
}

/* Reviewer info */
.jdgm-rev__author {
  color: white !important;
  font-weight: 500 !important;
}

.jdgm-rev__timestamp {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 12px !important;
}

/* Review title */
.jdgm-rev__title {
  color: white !important;
  font-weight: 500 !important;
  margin: 8px 0 !important;
}

/* Review body */
.jdgm-rev__body {
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6 !important;
}

/* Verified badge */
.jdgm-rev__buyer-badge {
  background: rgba(191, 166, 107, 0.2) !important;
  color: #BFA66B !important;
  border: 1px solid rgba(191, 166, 107, 0.3) !important;
  border-radius: 9999px !important;
  padding: 2px 8px !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* Write review button */
.jdgm-write-rev-link,
.jdgm-rev-widg__write-rev {
  background: #BFA66B !important;
  color: #302834 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-size: 12px !important;
  transition: background 0.3s ease !important;
}

.jdgm-write-rev-link:hover,
.jdgm-rev-widg__write-rev:hover {
  background: #D4B87A !important;
}

/* Pagination */
.jdgm-paginate__page {
  color: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  margin: 0 4px !important;
}

.jdgm-paginate__page:hover,
.jdgm-paginate__page.jdgm--current {
  background: rgba(191, 166, 107, 0.2) !important;
  border-color: #BFA66B !important;
  color: #BFA66B !important;
}

/* Review form */
.jdgm-form-wrapper {
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.jdgm-form__label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  margin-bottom: 6px !important;
}

.jdgm-form__input,
.jdgm-form__textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: white !important;
  padding: 12px !important;
}

.jdgm-form__input:focus,
.jdgm-form__textarea:focus {
  border-color: #BFA66B !important;
  outline: none !important;
}

.jdgm-form__input::placeholder,
.jdgm-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Submit button */
.jdgm-form__submit {
  background: #BFA66B !important;
  color: #302834 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.jdgm-form__submit:hover {
  background: #D4B87A !important;
}

/* Empty state */
.jdgm-rev-widg__no-reviews {
  color: rgba(255, 255, 255, 0.5) !important;
  text-align: center !important;
  padding: 40px 20px !important;
}

/* Rating histogram */
.jdgm-histogram__bar-content {
  background: rgba(191, 166, 107, 0.3) !important;
}

.jdgm-histogram__bar-content--full {
  background: #BFA66B !important;
}

.jdgm-histogram__text {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Sort dropdown */
.jdgm-sort-dropdown {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: white !important;
  padding: 8px 12px !important;
}

/* Media in reviews */
.jdgm-rev__media img {
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Response from store */
.jdgm-rev__reply {
  background: rgba(191, 166, 107, 0.1) !important;
  border-left: 3px solid #BFA66B !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 16px !important;
  margin-top: 12px !important;
}

.jdgm-rev__reply-author {
  color: #BFA66B !important;
  font-weight: 500 !important;
}

.jdgm-rev__reply-body {
  color: rgba(255, 255, 255, 0.7) !important;
}
