/* =========================================================
   AURA HANDMADE — Premium Animated Jewellery Website
   Pure HTML/CSS/JS. Dark premium theme with gold accents.
   ========================================================= */

:root {
  --bg: #070504;
  /* Extra deep warm black-chocolate */
  --bg-2: #0f0b09;
  /* Warm dark chocolate */
  --surface: #17110d;
  /* Premium espresso shade */
  --surface-2: #211813;
  /* Cocoa brown */
  --line: rgba(223, 186, 107, .18);
  /* Soft champagne gold border */
  --text: #f5f0e9;
  /* Premium warm ivory text */
  --muted: #baa98f;
  /* Silky taupe */
  --gold: #dfba6b;
  /* Warm champagne gold */
  --gold-2: #f5e2b3;
  /* Light golden cream / soft gold */
  --gold-3: #a37f3d;
  /* Dark antique bronze gold */
  --emerald: #0e3626;
  /* Deep velvet emerald green */
  --emerald-light: #1f5e44;
  /* Glowing gemstone emerald */
  --rose: #e4bba9;
  /* Soft dusty rose gold */
  --danger: #cc492c;
  /* Warm crimson red */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px -30px rgba(0, 0, 0, .85), 0 8px 30px -12px rgba(223, 186, 107, .15);
  --shadow-gold: 0 10px 40px -10px rgba(223, 186, 107, .45);
  --grad-gold: linear-gradient(135deg, #f5e2b3 0%, #dfba6b 45%, #a37f3d 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(245, 226, 179, .12), rgba(163, 127, 61, .04));
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --display: "Abril Fatface", "Playfair Display", serif;
  --sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img,
video {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit
}

/* ---------- Ambient gold blobs ---------- */
.aura-ambient-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.aura-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(95px);
  opacity: .25;
  mix-blend-mode: screen;
  animation: blob 24s ease-in-out infinite
}

.aura-blob-1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, var(--gold), transparent 65%);
  top: -140px;
  left: -140px
}

.aura-blob-2 {
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, var(--emerald-light), transparent 65%);
  bottom: -200px;
  right: -180px;
  animation-delay: -8s
}

.aura-blob-3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--rose), transparent 65%);
  top: 40%;
  left: 60%;
  animation-delay: -14s
}

@keyframes blob {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(60px, -40px) scale(1.15)
  }

  66% {
    transform: translate(-40px, 50px) scale(.9)
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 44px;
  backdrop-filter: blur(18px) saturate(160%);
  background: linear-gradient(to bottom, rgba(10, 7, 5, .85), rgba(10, 7, 5, .55));
  border-bottom: 1px solid var(--line);
  animation: slideDown .8s cubic-bezier(.2, .9, .3, 1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 22px;
  color: #1a1207;
  box-shadow: var(--shadow-gold);
  animation: spinGlow 8s linear infinite;
}

@keyframes spinGlow {
  0% {
    box-shadow: 0 0 15px rgba(212, 175, 55, .4)
  }

  50% {
    box-shadow: 0 0 35px rgba(244, 212, 122, .7)
  }

  100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, .4)
  }
}

.brand span:not(.brand-mark) {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.brand strong {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .5px;
  color: var(--gold-2)
}

.brand small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.2, .9, .3, 1);
}

.site-nav a:hover {
  color: var(--gold-2)
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left
}

.site-nav a.active {
  color: var(--gold-2)
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.menu-icon-bar {
  width: 26px;
  height: 2px;
  background: var(--gold-2);
  transition: .3s
}

.menu-button.active .menu-icon-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-button.active .menu-icon-bar:nth-child(2) {
  opacity: 0
}

.menu-button.active .menu-icon-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .6px;
  transition: transform .3s cubic-bezier(.2, .9, .3, 1), box-shadow .3s ease, background .3s;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.button.primary {
  background: var(--grad-gold);
  color: #1a1207;
  box-shadow: var(--shadow-gold)
}

.button.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s;
}

.button.primary:hover::before {
  transform: translateX(100%)
}

.button.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px -10px rgba(212, 175, 55, .7)
}

.button.ghost {
  background: transparent;
  color: var(--gold-2);
  border: 1px solid var(--gold-3)
}

.button.ghost:hover {
  background: rgba(212, 175, 55, .1);
  border-color: var(--gold-2);
  transform: translateY(-3px)
}

/* ---------- Sections shared ---------- */
main {
  position: relative;
  z-index: 1
}

.page-transition-wrapper {
  animation: fadeInUp .8s ease-out
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.section {
  padding: 110px 44px;
  position: relative
}

.section.muted {
  background: linear-gradient(to bottom, transparent, rgba(26, 18, 11, .6), transparent)
}

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--text);
  margin: 12px 0 16px;
  background: linear-gradient(180deg, #fff 0%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  color: var(--muted);
  font-size: 17px
}

.section-action {
  margin-top: 50px;
  text-align: center
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid var(--gold-3);
  border-radius: 999px;
  background: var(--grad-gold-soft);
}

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ---------- HERO with video background ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 44px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-stack {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden
}

.hero-video-stack video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease;
  filter: brightness(.55) saturate(1.1) contrast(1.05);
}

.hero-video-stack video.active {
  opacity: 1
}

/* Three.js Hero Canvas Background */
.hero canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
}

.hero-canvas-overlay {
  position: absolute;
  inset: 0;
  z-index: -0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 7, 5, .55) 60%, rgba(10, 7, 5, .95) 100%),
    linear-gradient(180deg, rgba(10, 7, 5, .6), rgba(10, 7, 5, .4) 30%, rgba(10, 7, 5, .9));
}

.hero-video-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 7, 5, .55) 60%, rgba(10, 7, 5, .95) 100%),
    linear-gradient(180deg, rgba(10, 7, 5, .6), rgba(10, 7, 5, .4) 30%, rgba(10, 7, 5, .9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: heroReveal 1.4s cubic-bezier(.2, .9, .3, 1)
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(.98)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.hero-eyebrow {
  margin-bottom: 26px;
  animation: slideDown 1s .2s both
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(52px, 8.5vw, 120px);
  line-height: .98;
  margin-bottom: 26px;
  letter-spacing: -1.5px;
}

.hero h1 br+.gradient-text {
  font-style: italic;
  font-family: var(--serif)
}

.hero-desc {
  font-size: clamp(16px, 1.6vw, 20px);
  color: #e0d5bd;
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeInUp 1.2s .5s both;
}

.hero .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s .7s both;
  margin-bottom: 56px
}

.hero-scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: bob 2.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold-2), transparent)
}

@keyframes bob {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 10px)
  }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 80px 44px;
  max-width: 1300px;
  margin: 0 auto;
}

.stat-card {
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .4));
  border: 1px solid var(--line);
  transition: all .5s cubic-bezier(.2, .9, .3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(212, 175, 55, .15), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}

.stat-card:hover::before {
  opacity: 1
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-3);
  box-shadow: var(--shadow-lg)
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 48px;
  color: var(--gold-2);
  margin-bottom: 8px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase
}

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto
}

.shop-grid {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .5s cubic-bezier(.2, .9, .3, 1);
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 212, 122, .08), transparent);
  transition: left .8s;
  pointer-events: none;
  z-index: 2;
}

.product-card:hover::before {
  left: 100%
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-lg)
}

.product-art {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #3b2a17, #0a0705);
  display: grid;
  place-items: center;
}

.product-art.has-image::after {
  display: none !important;
}

.product-art.has-image::before {
  display: none !important;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: rgba(23, 17, 13, 0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.product-card:hover .product-art img {
  transform: scale(1.08);
}

/* ---------- Product detail layout & image rules ---------- */
/* Consolidated: removed duplicate block at ~line 2389 */
.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 60px;
  align-items: center;
  padding: 40px 20px;
}

.product-detail-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  width: 100%;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
}

/* Visual container - adapts to image, not forced square */
.product-detail-visual {
  width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 30%, #3b2a17, #0a0705);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  padding: 20px;
}

.product-detail-visual.has-images {
  aspect-ratio: auto;
}

.product-detail-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.08), transparent 30%, transparent);
  animation: rotate 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.product-detail-visual.has-images::before {
  display: none !important;
}

/* Main product image - contain ensures full jewellery visible without cropping */
.product-detail-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: var(--shadow-gold);
  background: transparent;
  position: relative;
  z-index: 1;
  cursor: zoom-in;
  flex-shrink: 0;
}

/* Thumbnail gallery styling */
.product-thumbnails-gallery .thumb-wrapper img,
.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-thumbnails-gallery .thumb-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(223, 186, 107, 0.2);
}

.product-thumbnails-gallery .thumb-wrapper.active {
  border-color: var(--gold) !important;
  box-shadow: 0 4px 12px rgba(223, 186, 107, 0.4);
}

/* Ensure product grid thumbnails and cards use cover so images fill the card area */
.product-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Visual items (abstract art fallback when no image) */
.product-detail-visual .visual-item {
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-gold);
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 25px 60px rgba(212, 175, 55, 0.4);
  animation: float 4s ease-in-out infinite;
}

.product-detail-visual .visual-item.macrame {
  background: radial-gradient(circle, #e8dcc4, #c4a878 60%, #7a5c33);
  border-radius: 20%;
}

.product-detail-visual .visual-item.macrame.terracotta {
  background: radial-gradient(circle, #e6b8a8, #c47a5a 50%, #7a3c23);
  border-radius: 20%;
}

.product-detail-visual .visual-item.resin {
  background: radial-gradient(circle at 40% 30%, #fff, #f4d47a 50%, #a8873a);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.product-detail-visual .visual-item.resin.dark {
  background: radial-gradient(circle at 40% 30%, #c9a04a, #3d2812 60%, #0a0705);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.product-detail-visual .visual-item.phone {
  background: linear-gradient(135deg, #f4d4e0, #e6a8c4 60%, #a86a8a);
  border-radius: 30% 70% 60% 40%;
}

.product-detail-visual .visual-item.phone.violet {
  background: linear-gradient(135deg, #c8b0e6, #8a6ac8 60%, #4a2a8a);
  border-radius: 30% 70% 60% 40%;
}

.product-detail-visual .visual-item.bracelet {
  background: radial-gradient(circle, #fff, #e0d0e8 40%, #a89ac8 80%);
  border-radius: 50%;
  border: 8px solid rgba(212, 175, 55, 0.4);
}

.product-detail-visual .visual-item.bracelet.aqua {
  background: radial-gradient(circle, #e0f4f8, #a8d8e6 50%, #5c9ab8);
  border: 8px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

/* Responsive: stack columns on narrow screens */
@media (max-width: 900px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 20px 12px;
  }

  .product-detail-showcase {
    flex: none;
    margin-bottom: 18px;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .product-detail-visual {
    width: 100%;
    max-height: 48vh;
    padding: 14px;
  }

  .product-detail-img {
    max-height: 44vh;
  }
}

@media (max-width: 480px) {
  .product-detail-visual {
    max-height: 42vh;
    padding: 10px;
  }

  .product-detail-img {
    max-height: 38vh;
  }
}

.product-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, .15), transparent 30%, transparent);
  animation: rotate 12s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg)
  }
}

.product-art::after {
  content: "";
  position: relative;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f4d47a, #d4af37 40%, #8a6a1f 80%);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .4), 0 15px 40px rgba(212, 175, 55, .35);
  animation: float 4s ease-in-out infinite;
}

.product-art.macrame::after {
  background: radial-gradient(circle, #e8dcc4, #c4a878 60%, #7a5c33);
  border-radius: 20%
}

.product-art.macrame.terracotta::after {
  background: radial-gradient(circle, #e6b8a8, #c47a5a 50%, #7a3c23)
}

.product-art.resin::after {
  background: radial-gradient(circle at 40% 30%, #fff, #f4d47a 50%, #a8873a);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%)
}

.product-art.resin.dark::after {
  background: radial-gradient(circle at 40% 30%, #c9a04a, #3d2812 60%, #0a0705);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%)
}

.product-art.phone::after {
  background: linear-gradient(135deg, #f4d4e0, #e6a8c4 60%, #a86a8a);
  border-radius: 30% 70% 60% 40%
}

.product-art.phone.violet::after {
  background: linear-gradient(135deg, #c8b0e6, #8a6ac8 60%, #4a2a8a)
}

.product-art.bracelet::after {
  background: radial-gradient(circle, #fff, #e0d0e8 40%, #a89ac8 80%);
  border-radius: 50%;
  border: 8px solid rgba(212, 175, 55, .4)
}

.product-art.bracelet.aqua::after {
  background: radial-gradient(circle, #e0f4f8, #a8d8e6 50%, #5c9ab8);
  border: 8px solid rgba(212, 175, 55, .4);
  border-radius: 50%
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg)
  }

  50% {
    transform: translateY(-14px) rotate(2deg)
  }
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(244, 212, 122, .25), transparent 40%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover .card-glow {
  opacity: 1
}

.product-body {
  padding: 24px
}

.card-cat {
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px
}

.product-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25
}

.card-desc {
  color: var(--muted);
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
  line-height: 1.5
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line)
}

.price-row strong {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2)
}

.price-row em {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* ---------- Interactive category cards ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto
}

.interactive-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .04), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
  transition: all .5s cubic-bezier(.2, .9, .3, 1);
  position: relative;
  overflow: hidden;
}

.interactive-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 340deg, var(--gold-2) 360deg);
  opacity: 0;
  transition: opacity .5s;
  animation: rotate 4s linear infinite;
}

.interactive-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background: linear-gradient(160deg, #1e150b, #12100a);
}

.interactive-card:hover::before {
  opacity: .6
}

.interactive-card:hover {
  transform: translateY(-8px)
}

.interactive-card>* {
  position: relative;
  z-index: 1
}

.interactive-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  margin-bottom: 12px
}

.interactive-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px
}

.card-link {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .3s;
  display: inline-block
}

.card-link:hover {
  transform: translateX(6px)
}

/* ---------- Split / commission ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center
}

.split-info h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 16px 0 20px;
  background: linear-gradient(180deg, #fff, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-info p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 17px
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.service-teaser {
  padding: 28px 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .4));
  border: 1px solid var(--line);
  transition: all .4s;
}

.service-teaser:hover {
  transform: translateY(-6px);
  border-color: var(--gold-3);
  box-shadow: var(--shadow-lg)
}

.service-teaser strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1207;
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}

.service-teaser h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-2);
  margin-bottom: 8px
}

.service-teaser p {
  color: var(--muted);
  font-size: 14px
}

/* ---------- Academy / info cards ---------- */
.grid-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto
}

.academy-card {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .08), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
  transition: all .5s;
  position: relative;
  overflow: hidden;
}

.academy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(244, 212, 122, .15), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}

.academy-card:hover::before {
  opacity: 1
}

.academy-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-3)
}

.academy-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-2);
  margin-bottom: 14px
}

.academy-card p {
  color: var(--muted);
  margin-bottom: 24px
}

/* ---------- Journal ---------- */
.journal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto
}

.journal-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .04), rgba(26, 18, 11, .5));
  border: 1px solid var(--line);
  transition: all .5s;
}

.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-3)
}

.journal-card>span {
  align-self: start;
  padding: 8px 14px;
  background: var(--grad-gold-soft);
  border: 1px solid var(--gold-3);
  border-radius: 999px;
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.journal-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25
}

.journal-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px
}

.text-link {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .3s;
  display: inline-block
}

.text-link:hover {
  transform: translateX(6px)
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 80px 44px 30px;
  margin-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .5));
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 40px;
}

.footer-brand-section strong {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-2);
  display: block;
  margin-bottom: 14px
}

.footer-brand-section p {
  color: var(--muted);
  font-size: 14px;
  max-width: 400px
}

.footer-links-section h4 {
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 16px;
  margin-bottom: 16px
}

.footer-links-section ul {
  list-style: none
}

.footer-links-section li {
  margin-bottom: 10px
}

.footer-links-section a {
  color: var(--muted);
  font-size: 14px;
  transition: color .3s, padding-left .3s
}

.footer-links-section a:hover {
  color: var(--gold-2);
  padding-left: 8px
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Sub-page hero (about, gallery, etc.) ---------- */
.page-hero {
  padding: 180px 44px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, .15), transparent 60%);
  z-index: -1;
}

.page-hero h2 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  margin: 18px 0;
  background: linear-gradient(180deg, #fff, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s cubic-bezier(.2, .9, .3, 1);
}

.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
  animation: fadeInUp 1s .2s both
}

.page-hero .eyebrow {
  animation: fadeInUp 1s both
}

/* ---------- About story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start
}

.story-intro h3 {
  font-family: var(--display);
  font-size: 36px;
  color: var(--gold-2);
  margin-bottom: 20px;
  line-height: 1.15
}

.lead-para {
  font-size: 18px;
  color: #e0d5bd;
  margin-bottom: 16px
}

.story-intro p:not(.lead-para) {
  color: var(--muted);
  margin-bottom: 14px
}

.story-philosophy {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .5));
  border: 1px solid var(--line);
}

.story-philosophy h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold-2);
  margin-bottom: 20px
}

.phil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.phil-list li strong {
  color: var(--gold-2);
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 17px
}

.phil-list li p {
  color: var(--muted);
  font-size: 14px
}

.founders-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto
}

.founder-card-premium {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
  transition: all .5s;
}

.founder-card-premium:hover {
  transform: translateY(-8px);
  border-color: var(--gold-3);
  box-shadow: var(--shadow-lg)
}

.founder-avatar-badge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 80px;
  color: #1a1207;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--gold-3);
  animation: spinGlow 6s ease-in-out infinite;
  overflow: hidden;
}

.founder-avatar-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.founders-profile-grid.single-founder {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.founder-card-premium h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text);
  margin: 12px 0 8px
}

.founder-bio {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
  line-height: 1.7
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto
}

.contact-details-panel,
.contact-form-panel {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .05), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
}

.contact-details-panel h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-2);
  margin-bottom: 14px
}

.contact-details-panel>p {
  color: var(--muted);
  margin-bottom: 30px
}

.contact-methods {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px
}

.contact-methods li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .3s
}

.contact-methods li:hover {
  border-color: var(--gold-3);
  transform: translateX(4px)
}

.contact-methods .icon {
  font-size: 22px
}

.contact-methods strong {
  color: var(--gold-2);
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif)
}

.contact-methods p,
.contact-methods a {
  color: var(--muted);
  font-size: 14px
}

.response-pledge {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--grad-gold-soft);
  border: 1px solid var(--gold-3)
}

.response-pledge h4 {
  color: var(--gold-2);
  font-family: var(--serif);
  margin-bottom: 8px
}

.response-pledge p {
  color: var(--muted);
  font-size: 14px
}

.form-row {
  margin-bottom: 20px
}

.form-row label {
  display: block
}

.form-row span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(10, 7, 5, .6);
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  transition: all .3s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .15)
}

.form-submit-btn {
  width: 100%;
  margin-top: 10px
}

.btn-arrow {
  transition: transform .3s
}

.form-submit-btn:hover .btn-arrow {
  transform: translateX(6px)
}

.form-note-container {
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--grad-gold-soft);
  border: 1px solid var(--gold-3);
  animation: fadeInUp .6s;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1207;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-gold);
}

.form-note {
  color: var(--muted)
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px
}

.gallery-filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s;
}

.gallery-filter-btn:hover {
  border-color: var(--gold-3);
  color: var(--gold-2)
}

.gallery-filter-btn.active {
  background: var(--grad-gold);
  color: #1a1207;
  border-color: transparent
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  grid-auto-flow: dense;
}

.gallery-grid figure {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  transition: all .5s;
  cursor: pointer;
}

.gallery-grid figure.wide {
  grid-column: span 2
}

.gallery-grid figure.tall {
  grid-row: span 2;
  aspect-ratio: 1/2
}

.gallery-grid figure:hover {
  transform: scale(1.02);
  border-color: var(--gold-2);
  box-shadow: var(--shadow-lg);
  z-index: 2
}

.gallery-grid figure .product-art {
  width: 100%;
  height: 100%
}

.gallery-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
  transform: translateY(100%);
  transition: transform .4s;
  color: #fff;
}

.gallery-grid figure:hover figcaption {
  transform: translateY(0)
}

.gallery-grid figcaption strong {
  display: block;
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 15px
}

.gallery-grid figcaption span {
  font-size: 12px;
  color: var(--muted)
}

.gallery-grid figure.hide {
  display: none
}

/* ---------- Shop ---------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 20px 28px;
  background: linear-gradient(160deg, rgba(212, 175, 55, .05), rgba(26, 18, 11, .5));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.shop-count {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2)
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.shop-filters button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s;
}

.shop-filters button.active {
  background: var(--grad-gold);
  color: #1a1207;
  border-color: transparent
}

/* ---------- Services page ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto
}

.service-card-large {
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
  transition: all .5s;
  position: relative;
  overflow: hidden;
}

.service-card-large::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 212, 122, .15), transparent 70%);
  transition: transform .8s;
}

.service-card-large:hover::before {
  transform: scale(1.5) translate(-50px, 50px)
}

.service-card-large:hover {
  transform: translateY(-8px);
  border-color: var(--gold-3);
  box-shadow: var(--shadow-lg)
}

.service-card-large .icon-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1207;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 26px;
  box-shadow: var(--shadow-gold);
  margin-bottom: 24px;
}

.service-card-large h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-2);
  margin-bottom: 6px
}

.service-card-large .sub {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block
}

.service-card-large p {
  color: var(--muted)
}

/* ---------- Internships / Videos ---------- */
.class-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto
}

.class-card,
.video-item-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(212, 175, 55, .06), rgba(26, 18, 11, .6));
  border: 1px solid var(--line);
  transition: all .5s;
  position: relative;
}

.class-card:hover,
.video-item-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-3);
  box-shadow: var(--shadow-lg)
}

.class-card h3,
.video-item-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-2);
  margin-bottom: 12px
}

.class-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px
}

.class-meta span {
  display: block;
  padding: 6px 0
}

.class-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.class-cta strong {
  font-family: var(--serif);
  color: var(--gold-2);
  font-size: 22px
}

.video-thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  background: radial-gradient(circle at 30% 30%, #3b2a17, #0a0705);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, rgba(212, 175, 55, .15), transparent 30%, transparent);
  animation: rotate 8s linear infinite;
}

.play-btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  color: #1a1207;
  box-shadow: var(--shadow-gold);
  transition: transform .3s;
}

.play-btn::after {
  content: "▶";
  font-size: 22px;
  margin-left: 4px
}

.video-item-card:hover .play-btn {
  transform: scale(1.15)
}

/* ---------- Journal page ---------- */
.journal-full-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal.active {
  opacity: 1;
  pointer-events: auto
}

.modal-card {
  max-width: 440px;
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--gold-3);
  transform: scale(.9);
  transition: transform .4s;
  position: relative;
}

.modal.active .modal-card {
  transform: scale(1)
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all .3s
}

.modal-close:hover {
  background: rgba(212, 175, 55, .1);
  color: var(--gold-2)
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1207;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-gold);
}

.modal-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-2);
  margin-bottom: 10px
}

.modal-card p {
  color: var(--muted);
  margin-bottom: 24px
}

/* ---------- Scroll animations ---------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2, .9, .3, 1), transform .9s cubic-bezier(.2, .9, .3, 1)
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0)
}

.scroll-animate:nth-child(2) {
  transition-delay: .1s
}

.scroll-animate:nth-child(3) {
  transition-delay: .2s
}

.scroll-animate:nth-child(4) {
  transition-delay: .3s
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(244, 212, 122, .06), transparent 60%);
  transform: translate(-50%, -50%);
  transition: transform .1s ease-out;
  mix-blend-mode: screen;
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {

  .product-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .split,
  .story-grid,
  .contact-layout,
  .grid-two-column,
  .journal-list,
  .services-grid,
  .class-grid,
  .video-grid,
  .founders-profile-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-content {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:768px) {
  .site-header {
    padding: 14px 20px
  }

  .menu-button {
    display: flex
  }

  .site-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 0 20px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 7, 5, .98);
    backdrop-filter: blur(20px);
    border-bottom: 0px solid transparent;
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: max-height .4s ease, padding .4s ease, border-bottom .4s ease;
    z-index: 100;
  }

  .site-nav.open {
    max-height: calc(100vh - 70px);
    padding: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .hero {
    padding-left: 20px;
    padding-right: 20px
  }

  .stats {
    padding: 60px 20px
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 60px 20px 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 70px; /* Space for the floating widgets */
  }

  .journal-card {
    grid-template-columns: 1fr
  }
}

/* =========================================================
   JHIMSY FINERY - Shopping Cart & Checkout Pages
   ========================================================= */

/* ---------- Header Cart Toggle Button ---------- */
.cart-toggle-btn {
  cursor: pointer;
  outline: none;
}

.cart-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.18) !important;
  color: var(--text) !important;
  transform: scale(1.05);
}

.cart-badge {
  pointer-events: none;
}

/* ---------- Cart Drawer Elements ---------- */
.cart-drawer.open {
  visibility: visible !important;
}

.cart-drawer.open .cart-drawer-backdrop {
  opacity: 1 !important;
}

.cart-drawer.open .cart-drawer-content {
  transform: translateX(0) !important;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-drawer-close:hover {
  color: var(--gold-2) !important;
  transform: rotate(90deg);
}

/* Cart Items inside Drawer */
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.cart-item:hover {
  border-color: var(--gold-3);
  transform: translateY(-2px);
}

.cart-item-art {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 30%, #3b2a17, #0a0705);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-art::after {
  content: "";
  position: relative;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(212, 175, 55, 0.35);
  animation: float 4s ease-in-out infinite;
}

.cart-item-art.macrame::after {
  background: radial-gradient(circle, #e8dcc4, #c4a878 60%, #7a5c33);
  border-radius: 20%;
}

.cart-item-art.macrame.terracotta::after {
  background: radial-gradient(circle, #e6b8a8, #c47a5a 50%, #7a3c23);
  border-radius: 20%;
}

.cart-item-art.resin::after {
  background: radial-gradient(circle at 40% 30%, #fff, #f4d47a 50%, #a8873a);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.cart-item-art.resin.dark::after {
  background: radial-gradient(circle at 40% 30%, #c9a04a, #3d2812 60%, #0a0705);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.cart-item-art.phone::after {
  background: linear-gradient(135deg, #f4d4e0, #e6a8c4 60%, #a86a8a);
  border-radius: 30% 70% 60% 40%;
}

.cart-item-art.phone.violet::after {
  background: linear-gradient(135deg, #c8b0e6, #8a6ac8 60%, #4a2a8a);
  border-radius: 30% 70% 60% 40%;
}

.cart-item-art.bracelet::after {
  background: radial-gradient(circle, #fff, #e0d0e8 40%, #a89ac8 80%);
  border-radius: 50%;
  border: 3px solid rgba(212, 175, 55, 0.4);
}

.cart-item-art.bracelet.aqua::after {
  background: radial-gradient(circle, #e0f4f8, #a8d8e6 50%, #5c9ab8);
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.cart-item-price {
  color: var(--gold-2);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.3);
}

.cart-item-qty button {
  font-size: 15px;
  color: var(--gold-2);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.cart-item-qty button:hover {
  color: var(--text);
}

.cart-item-qty span {
  font-size: 12px;
  font-weight: 600;
  width: 14px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
}

.cart-item-remove:hover {
  opacity: 1;
  transform: scale(1.15);
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.cart-empty-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed var(--gold-3);
  display: grid;
  place-items: center;
  color: var(--gold-3);
  margin-bottom: 8px;
}

/* ---------- Product Detail Info Section ---------- */
.category-crumb {
  font-size: 12px;
  color: var(--gold-2);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-detail-info h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 500;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--muted);
}

.rating-row .stars {
  color: var(--gold-2);
  letter-spacing: 2px;
}

.detail-price {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.detail-desc {
  color: #e0d5bd;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.specs-list {
  list-style: none;
  margin-bottom: 32px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(26, 18, 11, 0.4);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specs-list li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.specs-list li strong {
  color: var(--text);
  font-weight: 500;
}

.purchase-controls {
  display: flex;
  gap: 20px;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-3);
  border-radius: 999px;
  padding: 6px 16px;
  gap: 14px;
  background: rgba(212, 175, 55, 0.04);
  height: 48px;
}

.qty-selector button {
  font-size: 20px;
  color: var(--gold-2);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
}

.qty-selector button:hover {
  color: var(--text);
}

.qty-selector input {
  width: 28px;
  text-align: center;
  border: none;
  background: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  pointer-events: none;
}

.add-to-cart-btn {
  flex: 1;
  height: 48px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---------- Checkout Page Template ---------- */
.checkout-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  align-items: start;
}

.checkout-section-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-2);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(10, 7, 5, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: all 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(10, 7, 5, 0.8);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.payment-method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(10, 7, 5, 0.3);
}

.payment-method-card:hover {
  border-color: var(--gold-3);
  background: rgba(212, 175, 55, 0.03);
}

.payment-method-card.selected {
  border-color: var(--gold-2);
  background: rgba(212, 175, 55, 0.06);
}

.payment-method-card input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
  cursor: pointer;
}

.payment-method-card span {
  font-size: 14px;
  font-weight: 500;
}

.payment-details-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed var(--gold-3);
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.payment-details-box strong {
  color: var(--gold-2);
}

.order-summary-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.checkout-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.checkout-item .item-details {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.checkout-item .item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 30%, #3b2a17, #0a0705);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-item .item-thumb::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: var(--grad-gold);
}

.checkout-item .item-thumb.macrame::after {
  background: radial-gradient(circle, #e8dcc4, #c4a878 60%, #7a5c33);
  border-radius: 20%;
}

.checkout-item .item-thumb.macrame.terracotta::after {
  background: radial-gradient(circle, #e6b8a8, #c47a5a 50%, #7a3c23);
  border-radius: 20%;
}

.checkout-item .item-thumb.resin::after {
  background: radial-gradient(circle at 40% 30%, #fff, #f4d47a 50%, #a8873a);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.checkout-item .item-thumb.resin.dark::after {
  background: radial-gradient(circle at 40% 30%, #c9a04a, #3d2812 60%, #0a0705);
  clip-path: polygon(30% 5%, 70% 5%, 95% 50%, 70% 95%, 30% 95%, 5% 50%);
}

.checkout-item .item-thumb.phone::after {
  background: linear-gradient(135deg, #f4d4e0, #e6a8c4 60%, #a86a8a);
  border-radius: 30% 70% 60% 40%;
}

.checkout-item .item-thumb.phone.violet::after {
  background: linear-gradient(135deg, #c8b0e6, #8a6ac8 60%, #4a2a8a);
  border-radius: 30% 70% 60% 40%;
}

.checkout-item .item-thumb.bracelet::after {
  background: radial-gradient(circle, #fff, #e0d0e8 40%, #a89ac8 80%);
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.checkout-item .item-thumb.bracelet.aqua::after {
  background: radial-gradient(circle, #e0f4f8, #a8d8e6 50%, #5c9ab8);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

.checkout-item .item-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-item .item-qty {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  display: block;
}

.checkout-item .item-total-price {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-2);
  font-weight: 600;
}

.checkout-totals {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-totals .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.checkout-totals .row.grand-total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 4px;
  font-size: 17px;
  color: var(--text);
}

.checkout-totals .row.grand-total strong {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-2);
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 900px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 768px) {
  .desktop-cart-btn {
    display: none !important;
  }

  .mobile-cart-btn {
    display: inline-flex !important;
  }
}

/* ---------- Hero Floating Particles & Overlays ---------- */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  bottom: -20px;
  background: radial-gradient(circle, #f5e2b3 15%, #dfba6b 60%, transparent 100%);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px rgba(223, 186, 107, 0.4);
  animation: float-hero-dust 15s infinite linear;
}

@keyframes float-hero-dust {
  0% {
    transform: translateY(0) translateX(0) scale(0.4);
    opacity: 0;
  }

  15% {
    opacity: 0.45;
  }

  85% {
    opacity: 0.45;
  }

  100% {
    transform: translateY(-110vh) translateX(var(--dx)) scale(1.4);
    opacity: 0;
  }
}

/* =========================================================
   JHIMSY FINERY — Premium Image Lightbox
   ========================================================= */

.jf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), visibility 0.4s;
  -webkit-user-select: none;
  user-select: none;
}

.jf-lightbox--active {
  opacity: 1;
  visibility: visible;
}

.jf-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 5, 4, 0.92);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
}

.jf-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.jf-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.08);
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.jf-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: none;
}

.jf-lightbox-prev {
  left: 20px;
}

.jf-lightbox-next {
  right: 20px;
}

.jf-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-2);
  color: var(--gold-2);
  transform: translateY(-50%) scale(1.08);
}

.jf-lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245, 240, 233, 0.6);
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.jf-lightbox-zoom-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245, 240, 233, 0.35);
  letter-spacing: 1.5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}

.jf-lightbox--active .jf-lightbox-zoom-hint {
  opacity: 1;
}

.jf-lightbox-stage {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.jf-lightbox-pan-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: transform 0.15s ease-out;
  cursor: grab;
  will-change: transform;
}

.jf-lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: opacity 0.3s ease;
}

.jf-lightbox-thumbs {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 90vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.jf-lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.jf-lightbox-thumbs-track {
  display: flex;
  gap: 10px;
  padding: 4px;
}

.jf-lightbox-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.3);
}

.jf-lightbox-thumb:hover {
  border-color: var(--gold-2);
  transform: translateY(-2px);
}

.jf-lightbox-thumb.active {
  border-color: var(--gold-2);
  box-shadow: 0 0 20px rgba(223, 186, 107, 0.3);
}

.jf-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ---------- Lightbox Responsive ---------- */
@media (max-width: 768px) {
  .jf-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .jf-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .jf-lightbox-prev {
    left: 10px;
  }

  .jf-lightbox-next {
    right: 10px;
  }

  .jf-lightbox-image {
    max-width: 95vw;
    max-height: 75vh;
  }

  .jf-lightbox-counter {
    font-size: 11px;
    padding: 4px 14px;
    top: 16px;
  }

  .jf-lightbox-thumb {
    width: 44px;
    height: 44px;
  }

  .jf-lightbox-zoom-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .jf-lightbox-image {
    max-width: 98vw;
    max-height: 70vh;
  }

  .jf-lightbox-thumb {
    width: 38px;
    height: 38px;
  }

  .jf-lightbox-thumbs {
    bottom: 12px;
  }
}

/* =========================================================
   JF Premium Carousel System — MOBILE RESPONSIVENESS FIX
   ========================================================= */
.jf-carousel-container {
  position: relative;
  width: 100%;
}

.jf-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 15px 0;
  /* allows card shadow translations without clipping */
}

.jf-carousel-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 28px;
  width: max-content;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.jf-carousel-track>.product-card,
.jf-carousel-track>.product-card-link {
  display: block;
  flex-shrink: 0;
  height: 100% !important;
  box-sizing: border-box;
}

/* Desktop: 4 up */
@media (min-width: 1024px) {

  .jf-carousel-track>.product-card,
  .jf-carousel-track>.product-card-link {
    flex: 0 0 calc((100% - (3 * 28px)) / 4) !important;
  }
}

/* Tablet: 3 up */
@media (min-width: 768px) and (max-width: 1023px) {

  .jf-carousel-track>.product-card,
  .jf-carousel-track>.product-card-link {
    flex: 0 0 calc((100% - (2 * 28px)) / 3) !important;
  }
}

/* Mobile: 1.35 cards visible (peek effect) — this ratio MUST match
   getItemsPerView() in product-carousel.js so the slide math lines up */
@media (max-width: 767px) {
  .jf-carousel-container {
    padding: 0 6px;
    padding-bottom: 44px;
    /* room for arrows moved below the track */
  }

  .jf-carousel-track-wrapper {
    padding: 10px 0;
    scroll-behavior: smooth;
  }

  .jf-carousel-track {
    gap: 14px !important;
  }

  .jf-carousel-track>.product-card,
  .jf-carousel-track>.product-card-link {
    flex: 0 0 calc((100% - 14px) / 1.35) !important;
    max-width: calc((100% - 14px) / 1.35);
  }

  /* Cap the product image height so a single card never balloons to
     fill the whole viewport on tall phone screens */
  .product-art {
    aspect-ratio: 1;
    max-height: 46vh;
  }

  .product-body {
    padding: 14px 16px;
  }

  .product-body h3 {
    font-size: 15px;
    min-height: auto !important;
  }

  .card-desc {
    font-size: 12.5px;
    min-height: auto !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .price-row strong {
    font-size: 17px;
  }
}

.jf-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 11, 9, 0.9);
  border: 1px solid var(--line);
  color: var(--gold-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.jf-carousel-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(223, 186, 107, 0.35);
}

.jf-carousel-btn.prev {
  left: -23px;
}

.jf-carousel-btn.next {
  right: -23px;
}

@media (max-width: 768px) {
  .jf-carousel-btn {
    width: 34px;
    height: 34px;
    top: auto;
    bottom: 0;
    transform: none;
    background: rgba(15, 11, 9, 0.75);
  }

  .jf-carousel-btn.prev {
    left: 8px;
  }

  .jf-carousel-btn.next {
    right: 8px;
  }
}

/* Dot indicators — mobile only, one per "page" of cards */
.jf-carousel-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

@media (max-width: 767px) {
  .jf-carousel-dots {
    display: flex;
  }
}

.jf-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: all 0.3s;
  cursor: pointer;
}

.jf-carousel-dot.active {
  background: var(--gold-2);
  width: 18px;
  border-radius: 4px;
}

/* Responsive fixes for cards alignment & padding on mobile viewports */
@media (max-width: 768px) {
  .class-grid, .wholesale-grid, .reviews-grid, .video-grid, .journal-full-list {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 12px !important;
  }
  .class-card, .wholesale-card, .review-card, .video-item-card {
    padding: 20px !important;
  }
  .wholesale-card div[style*="padding: 24px"] {
    padding: 16px !important;
  }
}

/* Mobile responsive override for stat cards */
@media (max-width: 576px) {
  .stats {
    gap: 12px !important;
    padding: 30px 10px !important;
  }
  .stat-card {
    padding: 16px 8px !important;
    border-radius: 12px !important;
  }
  .stat-card strong {
    font-size: 24px !important;
    margin-bottom: 4px !important;
  }
  .stat-card span {
    font-size: 9.5px !important;
    letter-spacing: 0.2px !important;
  }
}


/* Premium Ecommerce Mobile Proportions for Product Carousels */
@media (max-width: 768px) {
  .jf-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
  }
  .jf-carousel-track > .product-card-link,
  .jf-carousel-track > .product-card {
    flex: 0 0 240px !important;
    width: 240px !important;
    max-width: 240px !important;
  }
  .jf-carousel-track .product-art {
    height: 240px !important;
    max-height: 240px !important;
  }
}


/* Pricing & Discount Badges */
.price-display-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-display-wrapper strong.current-price {
  color: #4ade80 !important;
}
.original-price {
  font-size: 0.85em;
  text-decoration: line-through;
  color: var(--muted);
  font-weight: normal;
  opacity: 0.75;
}
.discount-percentage {
  color: #4ade80;
  font-weight: 600;
  font-size: 0.82em;
}
.detail-price .current-price {
  color: #4ade80;
}
.sale-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--grad-gold);
  color: var(--bg);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(223, 186, 107, 0.25);
  z-index: 5;
}

@media (max-width: 576px) {
  .price-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .price-row em {
    align-self: flex-end !important;
    margin-top: -2px !important;
  }
  .price-display-wrapper {
    flex-wrap: wrap !important;
    gap: 4px 8px !important;
    width: 100% !important;
  }
}

/* Pricing Display Styling */
.current-price {
  color: #4ade80 !important; /* Premium e-commerce green */
  font-weight: bold;
}
.original-price {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: normal;
  opacity: 0.7;
  margin-left: 6px;
}
.discount-percentage {
  color: #4ade80 !important;
  font-weight: 600;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 100px 20px 40px !important;
  }
}

