/** Shopify CDN: Minification failed

Line 56:0 All "@import" rules must come first
Line 1363:4 Expected identifier but found "0"

**/
/* ========================================
   COUPLES BUILDER - EDITORIAL STYLE
   ======================================== */

:root {
  --cj-cream: #FAF9F7;
  --cj-cream-light: #FFFFFF;
  --cj-cream-dark: #F0EFED;
  --cj-rose: #B5908A;
  --cj-rose-light: #D4C4C1;
  --cj-rose-glow: rgba(181, 144, 138, 0.4);
  --cj-teal: #1C2C2C;
  --cj-teal-light: #2D4040;
  --cj-teal-glow: rgba(28, 44, 44, 0.4);
  --cj-gold: #B5908A;
  --cj-gold-light: #D4C4C1;
  --cj-text: #1A1A1A;
  --cj-text-light: #555555;
  --cj-text-muted: #888888;
  --cj-white: #FFFFFF;
  --cj-black: #0A0A0A;
  --cj-border: #E5E4E2;
  --cj-glass: rgba(255, 255, 255, 0.95);
  --cj-glass-border: rgba(255, 255, 255, 0.3);
  --cj-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --cj-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --cj-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --cj-shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.16);
  --cj-radius-sm: 4px;
  --cj-radius-md: 8px;
  --cj-radius-lg: 12px;
  --cj-radius-xl: 16px;
}

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

@keyframes cjFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ========================================
   🔥🔥🔥 TRILLION DOLLAR DARK CINEMATIC THEME 🔥🔥🔥
   ======================================== */

.cj-builder {
  min-height: 100vh;
  background: linear-gradient(180deg, #0a1515 0%, #0d1818 50%, #0a1212 100%) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

.cj-builder::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(181, 144, 138, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(28, 44, 44, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(212, 196, 193, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cj-builder > * {
  position: relative;
  z-index: 1;
}

html, body {
  overflow-x: hidden;
}

/* Animated Background Particles */
.cj-builder__shapes {
  display: block !important;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cj-builder__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatShape 20s ease-in-out infinite;
}

.cj-builder__shape--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(181, 144, 138, 0.3) 0%, transparent 70%);
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}

.cj-builder__shape--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28, 44, 44, 0.4) 0%, transparent 70%);
  bottom: 10%;
  right: -150px;
  animation-delay: -7s;
}

.cj-builder__shape--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 196, 193, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

/* ========================================
   EPIC INTRO SPLASH ANIMATION
   ======================================== */

@keyframes introFadeIn {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

@keyframes introRingsFloat {
  0% { transform: translateY(50px) scale(0.5) rotate(-90deg); opacity: 0.3; }
  50% { transform: translateY(-10px) scale(1.1) rotate(0deg); opacity: 1; }
  100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
}

@keyframes introRingsMerge {
  0% { transform: translateX(var(--ring-offset)); }
  100% { transform: translateX(0); }
}

@keyframes introTextReveal {
  0% { opacity: 0; transform: translateY(30px); letter-spacing: 20px; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 4px; }
}

@keyframes introSubtextReveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes introShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes introPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes introHeartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.15); }
  28% { transform: scale(1); }
  42% { transform: scale(1.15); }
  70% { transform: scale(1); }
}

.cj-intro-splash {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a1515 0%, #0d1818 50%, #0a1515 100%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cj-intro-splash.fade-out {
  animation: introFadeIn 1s ease-out forwards;
}

.cj-intro-splash__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cj-intro-splash__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cj-intro-splash__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cj-rose-glow) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation: cjFloat 8s ease-in-out infinite;
}

.cj-intro-splash__glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--cj-teal-glow) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation: cjFloat 10s ease-in-out infinite reverse;
}

.cj-intro-splash__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.cj-intro-splash__rings {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  height: 150px;
  position: relative;
}

.cj-intro-splash__ring {
  width: 100px;
  height: 100px;
  border: 8px solid;
  border-radius: 50%;
  animation: introRingsFloat 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 1 !important;
  position: relative;
  box-shadow: 0 0 30px rgba(181, 144, 138, 0.3);
}

.cj-intro-splash__ring::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  opacity: 0.5;
  animation: introPulse 2s ease-in-out infinite;
}

.cj-intro-splash__ring--1 {
  border-color: #4a4a4a;
  --glow-color: rgba(100, 100, 100, 0.4);
  --ring-offset: 60px;
  animation-delay: 0.3s;
  margin-right: -30px;
  z-index: 2;
  box-shadow: 0 0 25px rgba(100, 100, 100, 0.3), inset 0 0 20px rgba(100, 100, 100, 0.1);
}

.cj-intro-splash__ring--2 {
  border-color: var(--cj-rose);
  --glow-color: var(--cj-rose-glow);
  --ring-offset: -60px;
  animation-delay: 0.5s;
  margin-left: -30px;
  z-index: 1;
  box-shadow: 0 0 25px var(--cj-rose-glow), inset 0 0 20px rgba(181, 144, 138, 0.2);
}

.cj-intro-splash__ring.merge {
  animation: introRingsMerge 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cj-intro-splash__heart {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cj-intro-splash__heart.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: introHeartbeat 1.5s ease-in-out infinite;
}

.cj-intro-splash__heart svg {
  width: 100%;
  height: 100%;
  fill: var(--cj-rose);
  filter: drop-shadow(0 0 20px var(--cj-rose-glow));
}

.cj-intro-splash__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  color: white;
  margin: 0 0 20px 0;
  text-align: center;
  opacity: 0;
  animation: introTextReveal 1s ease-out 1.5s forwards;
}

.cj-intro-splash__title span {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-gold), var(--cj-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cj-intro-splash__subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 50px 0;
  opacity: 0;
  animation: introSubtextReveal 0.8s ease-out 2s forwards;
}

.cj-intro-splash__cta {
  opacity: 0;
  animation: introSubtextReveal 0.8s ease-out 2.5s forwards;
}

.cj-intro-splash__btn {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  border: none;
  padding: 18px 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px var(--cj-rose-glow);
}

.cj-intro-splash__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: introShimmer 2s ease-in-out infinite;
}

.cj-intro-splash__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 50px var(--cj-rose-glow);
}

/* ========================================
   NAMES PERSONALIZATION OVERLAY
   ======================================== */

.cj-names-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 21, 21, 0.98) 0%, rgba(13, 24, 24, 0.98) 100%);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cj-names-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cj-names__content {
  text-align: center;
  max-width: 500px;
  padding: 40px;
}

.cj-names__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introPulse 2s ease-in-out infinite;
}

.cj-names__icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.cj-names__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin: 0 0 15px;
}

.cj-names__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 40px;
}

.cj-names__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.cj-names__input-group {
  position: relative;
}

.cj-names__label {
  display: block;
  text-align: left;
  font-size: 0.9rem;
  color: var(--cj-rose-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.cj-names__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.1rem;
  background: rgba(20, 35, 35, 0.95) !important;
  border: 2px solid rgba(232, 180, 184, 0.3) !important;
  border-radius: 12px;
  color: #E8B4B8 !important;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  caret-color: #E8B4B8 !important;
}

.cj-names__input::placeholder {
  color: rgba(232, 180, 184, 0.5) !important;
}

.cj-names__input:focus {
  outline: none;
  border-color: #E8B4B8 !important;
  background: rgba(20, 35, 35, 0.98) !important;
  box-shadow: 0 0 30px rgba(232, 180, 184, 0.4), 0 0 60px rgba(232, 180, 184, 0.2) !important;
}

.cj-names__btn {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px var(--cj-rose-glow);
}

.cj-names__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px var(--cj-rose-glow);
}

.cj-names__skip {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 20px;
}

.cj-names__skip:hover {
  color: white;
}

/* ========================================
   SPARKLE CURSOR TRAIL
   ======================================== */

.cj-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cj-gold) 0%, transparent 70%);
  opacity: 0;
  animation: sparkleTrail 0.8s ease-out forwards;
}

@keyframes sparkleTrail {
  0% { transform: scale(0) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.5) rotate(180deg); opacity: 0.8; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

.cj-sparkle--rose { background: radial-gradient(circle, var(--cj-rose) 0%, transparent 70%); }
.cj-sparkle--teal { background: radial-gradient(circle, var(--cj-teal) 0%, transparent 70%); }
.cj-sparkle--white { background: radial-gradient(circle, white 0%, transparent 70%); }

/* ========================================
   FLOATING LOVE QUOTES
   ======================================== */

.cj-quotes-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cj-step {
  position: relative;
  z-index: 2;
}

.cj-floating-quote {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(184, 128, 111, 0.3);
  white-space: nowrap;
  animation: floatQuote 20s linear infinite;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

@keyframes floatQuote {
  0% { transform: translateX(-100%); opacity: 0; }
  5% { opacity: 0.5; }
  95% { opacity: 0.5; }
  100% { transform: translateX(100vw); opacity: 0; }
}

/* ========================================
   LOVE METER PROGRESS BAR
   ======================================== */

.cj-love-meter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 9000;
  background: var(--cj-glass);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: var(--cj-shadow-lg);
  border: 1px solid var(--cj-glass-border);
  display: none;
}

.cj-love-meter.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

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

.cj-love-meter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cj-love-meter__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cj-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cj-love-meter__label svg {
  width: 16px;
  height: 16px;
  fill: var(--cj-rose);
  animation: introHeartbeat 1.5s ease-in-out infinite;
}

.cj-love-meter__percent {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cj-rose);
}

.cj-love-meter__track {
  height: 8px;
  background: var(--cj-cream-dark);
  border-radius: 10px;
  overflow: hidden;
}

.cj-love-meter__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cj-teal), var(--cj-rose), var(--cj-gold));
  border-radius: 10px;
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.cj-love-meter__fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmerBar 2s ease-in-out infinite;
}

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

/* ========================================
   ACHIEVEMENT BADGES
   ======================================== */

.cj-achievements {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 9001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.cj-achievement {
  background: linear-gradient(135deg, var(--cj-gold), #F5E6C3);
  color: var(--cj-text);
  padding: 12px 20px 12px 50px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
  position: relative;
  transform: translateX(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cj-achievement.unlocked {
  transform: translateX(0);
  opacity: 1;
}

.cj-achievement::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cj-achievement__icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  z-index: 1;
}

.cj-achievement__icon svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   SPOTLIGHT REVEAL EFFECT
   ======================================== */

.cj-spotlight {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cj-spotlight.active {
  opacity: 1;
  pointer-events: auto;
}

.cj-spotlight__beam {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: spotlightPulse 2s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

.cj-spotlight__product {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: spotlightReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes spotlightReveal {
  0% { transform: scale(0.5) rotateY(-30deg); opacity: 0; }
  100% { transform: scale(1) rotateY(0deg); opacity: 1; }
}

.cj-spotlight__image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 100px var(--cj-rose-glow), 0 0 200px var(--cj-rose-glow);
  margin-bottom: 30px;
}

.cj-spotlight__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: white;
  margin: 0 0 10px;
}

.cj-spotlight__subtitle {
  font-size: 1.2rem;
  color: var(--cj-rose-light);
  margin: 0 0 30px;
}

.cj-spotlight__btn {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-spotlight__btn:hover {
  transform: scale(1.05);
}

/* ========================================
   CINEMATIC STEP TRANSITIONS
   ======================================== */

.cj-cinematic-transition {
  position: fixed;
  inset: 0;
  z-index: 9800;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cj-cinematic-transition__bar {
  position: absolute;
  background: var(--cj-black);
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.cj-cinematic-transition__bar--top {
  top: 0;
  left: 0;
  right: 0;
  height: 0;
}

.cj-cinematic-transition__bar--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
}

.cj-cinematic-transition.active .cj-cinematic-transition__bar--top,
.cj-cinematic-transition.active .cj-cinematic-transition__bar--bottom {
  height: 50vh;
}

.cj-cinematic-transition__text {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease 0.4s;
}

.cj-cinematic-transition.active .cj-cinematic-transition__text {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   SOUND TOGGLE
   ======================================== */

.cj-sound-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9002;
  width: 50px;
  height: 50px;
  background: var(--cj-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--cj-glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--cj-shadow-md);
}

.cj-sound-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--cj-shadow-lg);
}

.cj-sound-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--cj-text);
}

.cj-sound-toggle.muted svg {
  opacity: 0.4;
}

/* ========================================
   SHARE YOUR RINGS MODAL
   ======================================== */

.cj-share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cj-share-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.cj-share-modal__content {
  background: white;
  border-radius: 30px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cj-share-modal.active .cj-share-modal__content {
  transform: scale(1);
}

.cj-share-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cj-text);
  margin: 0 0 10px;
}

.cj-share-modal__subtitle {
  color: var(--cj-text-light);
  margin: 0 0 30px;
}

.cj-share-modal__preview {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.cj-share-modal__ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--cj-cream-dark);
}

.cj-share-modal__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cj-share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cj-share-btn:hover {
  transform: scale(1.15);
}

.cj-share-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.cj-share-btn--facebook { background: #1877F2; }
.cj-share-btn--twitter { background: #1DA1F2; }
.cj-share-btn--pinterest { background: #E60023; }
.cj-share-btn--copy { background: var(--cj-teal); }

.cj-share-modal__close {
  margin-top: 20px;
  background: transparent;
  border: none;
  color: var(--cj-text-light);
  cursor: pointer;
  font-size: 0.9rem;
}

/* ========================================
   FINAL LOVE STORY SUMMARY
   ======================================== */

.cj-love-story {
  background: linear-gradient(135deg, #0a1515 0%, #0d1818 100%);
  padding: 80px 30px;
  text-align: center;
  margin-top: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cj-love-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cj-love-story__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cj-love-story__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introHeartbeat 2s ease-in-out infinite;
}

.cj-love-story__icon svg {
  width: 50px;
  height: 50px;
  fill: white;
}

.cj-love-story__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin: 0 0 20px;
}

.cj-love-story__names {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px;
}

.cj-love-story__text {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 30px;
}

.cj-love-story__date {
  color: var(--cj-gold);
  font-size: 1rem;
  font-weight: 600;
}

/* ========================================
   MOBILE RESPONSIVE - NEWSWORTHY
   ======================================== */

@media (max-width: 768px) {
  .cj-love-meter {
    width: calc(100% - 40px);
    max-width: 300px;
    bottom: 20px;
  }
  
  .cj-achievements {
    right: 15px;
    top: 80px;
  }
  
  .cj-achievement {
    font-size: 0.75rem;
    padding: 10px 15px 10px 40px;
  }
  
  .cj-sound-toggle {
    bottom: 100px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .cj-names__title {
    font-size: 1.8rem;
  }
  
  .cj-spotlight__image {
    width: 180px;
    height: 180px;
  }
  
  .cj-spotlight__title {
    font-size: 1.5rem;
  }
  
  .cj-cinematic-transition__text {
    font-size: 2rem;
    padding: 0 20px;
    text-align: center;
  }
  
  .cj-love-story__title {
    font-size: 1.8rem;
  }
  
  .cj-love-story__names {
    font-size: 2rem;
  }
}

/* ========================================
   CELEBRATION SYSTEM - CONFETTI & EFFECTS
   ======================================== */

.cj-celebration-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.cj-celebration-confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
}

@keyframes celebrationFall {
  0% {
    transform: translateY(-20px) rotate(0deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(0) rotate(45deg) scale(1);
  }
  100% {
    transform: translateY(100vh) rotate(720deg) scale(0.3);
    opacity: 0;
  }
}

.cj-celebration-confetti.animate {
  animation: celebrationFall 3s ease-out forwards;
}

/* Celebration burst from center */
@keyframes celebrationBurst {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.cj-celebration-burst {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cj-gold) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
}

.cj-celebration-burst.animate {
  animation: celebrationBurst 0.8s ease-out forwards;
}

/* Step completion celebration */
@keyframes stepComplete {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.cj-step-celebrate {
  animation: stepComplete 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Milestone message popup */
@keyframes milestonePopup {
  0% { transform: translateX(-50%) translateY(20px) scale(0.8); opacity: 0; }
  20% { transform: translateX(-50%) translateY(-10px) scale(1.1); opacity: 1; }
  40% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  80% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
  100% { transform: translateX(-50%) translateY(-20px) scale(0.8); opacity: 0; }
}

.cj-milestone-popup {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cj-milestone-popup.show {
  animation: milestonePopup 3s ease-out forwards;
}

.cj-milestone-popup svg {
  width: 24px;
  height: 24px;
}

/* Ring selection celebration */
@keyframes ringSelectPulse {
  0% { box-shadow: 0 0 0 0 var(--cj-rose-glow); }
  50% { box-shadow: 0 0 0 20px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.cj-ring-selected-celebrate {
  animation: ringSelectPulse 0.6s ease-out;
}

/* Floating ambient rings in background */
.cj-ambient-rings {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.15;
}

.cj-ambient-ring {
  position: absolute;
  border: 3px solid var(--cj-rose);
  border-radius: 50%;
  animation: cjFloat 20s ease-in-out infinite;
}

.cj-ambient-ring:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
.cj-ambient-ring:nth-child(2) { width: 60px; height: 60px; top: 30%; right: 10%; animation-delay: 2s; border-color: var(--cj-teal); }
.cj-ambient-ring:nth-child(3) { width: 100px; height: 100px; bottom: 20%; left: 15%; animation-delay: 4s; }
.cj-ambient-ring:nth-child(4) { width: 50px; height: 50px; bottom: 40%; right: 5%; animation-delay: 6s; border-color: var(--cj-gold); }
.cj-ambient-ring:nth-child(5) { width: 70px; height: 70px; top: 60%; left: 3%; animation-delay: 8s; border-color: var(--cj-teal); }

/* No floating hearts */
.cj-builder__hearts,
.cj-builder__heart {
  display: none;
}

/* Premium Content Container */
.cj-builder__content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 30px 120px;
  min-height: 80vh;
}

@media (max-width: 768px) {
  .cj-builder__content {
    padding: 40px 20px 80px;
  }
}

/* ========================================
   EXPLOSIVE PROGRESS STEPPER
   ======================================== */
/* 🔥🔥🔥 BILLION DOLLAR PROGRESS BAR 🔥🔥🔥 */
.cj-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 50px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;
  border: none;
  position: relative;
  box-shadow: none !important; 
    0 8px 40px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(181, 144, 138, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: static !important; /* NOT STICKY - scrolls with page */
}

/* Connecting Line */
.cj-progress::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  z-index: 0;
}

/* Progress Fill Line */
.cj-progress::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cj-rose), #d4a574);
  border-radius: 3px;
  z-index: 1;
  width: 0%;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px var(--cj-rose-glow), 0 0 30px rgba(181, 144, 138, 0.3);
}

.cj-progress[data-step="1"]::after { width: 0%; }
.cj-progress[data-step="2"]::after { width: 33%; }
.cj-progress[data-step="3"]::after { width: 66%; }
.cj-progress[data-step="4"]::after { width: calc(100% - 120px); }

.cj-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 10;
  flex: 1;
  transition: transform 0.3s ease;
}

.cj-progress__step:hover {
  transform: translateY(-2px);
}

.cj-progress__step::after {
  display: none;
}

.cj-progress__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(145deg, rgba(30, 40, 40, 0.9), rgba(20, 30, 30, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cj-progress__step.active .cj-progress__num {
  background: linear-gradient(145deg, var(--cj-rose) 0%, #d4a574 50%, var(--cj-rose) 100%);
  background-size: 200% 200%;
  animation: activeGradient 3s ease infinite, activePulse 2s ease-in-out infinite;
  border-color: transparent;
  color: white;
  box-shadow:
    0 0 0 4px rgba(181, 144, 138, 0.2),
    0 0 30px rgba(181, 144, 138, 0.5),
    0 0 60px rgba(181, 144, 138, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@keyframes activeGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes activePulse {
  0%, 100% { 
    box-shadow: 0 0 0 4px rgba(181, 144, 138, 0.2), 0 0 30px rgba(181, 144, 138, 0.5), 0 0 60px rgba(181, 144, 138, 0.25);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(181, 144, 138, 0.15), 0 0 40px rgba(181, 144, 138, 0.6), 0 0 80px rgba(181, 144, 138, 0.3);
  }
}

.cj-progress__step.completed .cj-progress__num {
  background: linear-gradient(145deg, #2a8a6e 0%, #34a882 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 20px rgba(52, 168, 130, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  font-size: 0;
}

.cj-progress__step.completed .cj-progress__num::before {
  content: '✓';
  font-size: 1.3rem;
  font-weight: 700;
}

.cj-progress__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  min-width: 70px;
  text-align: center;
  white-space: nowrap;
}

/* When label has a name, make it premium */
.cj-progress__label .cj-animated-name,
.cj-progress__label .cj-name-glow {
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  font-family: 'Playfair Display', serif !important;
  background: linear-gradient(135deg, #d4a574, #E8B4B8, #d4a574) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: nameShimmer 3s ease infinite !important;
}

@keyframes nameShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cj-progress__step.active .cj-progress__label {
  color: #d4a574;
  text-shadow: 0 0 15px rgba(212, 165, 116, 0.4);
  font-weight: 700;
}

.cj-progress__step.completed .cj-progress__label {
  color: rgba(52, 168, 130, 0.9);
}

@media (max-width: 900px) {
  .cj-progress {
    max-width: 100%;
    padding: 0 10px;
  }
  .cj-progress::before,
  .cj-progress::after {
    left: 40px;
    right: 40px;
  }
  .cj-progress__step {
    padding: 0 12px;
  }
  .cj-progress__num {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .cj-progress {
    gap: 0;
    padding: 0;
  }
  .cj-progress::before,
  .cj-progress::after {
    display: none;
  }
  .cj-progress__step {
    padding: 0 8px;
  }
  .cj-progress__label {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
    min-width: 50px;
  }
  .cj-progress__num {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
}

/* ========================================
   🔥🔥🔥 SMOOTH STEP TRANSITIONS 🔥🔥🔥
   ======================================== */
.cj-step {
  display: none;
  opacity: 0;
  background: transparent;
  padding: 40px 20px;
}

.cj-step.active {
  display: block;
  opacity: 1;
  animation: cjStepFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Exit animation class - fades out smoothly */
.cj-step.exiting {
  display: block;
  animation: cjStepFadeOut 0.4s ease forwards;
}

/* Smooth fade in */
@keyframes cjStepFadeIn {
  0% { 
    opacity: 0; 
    transform: translateY(30px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0);
  }
}

/* Smooth fade out */
@keyframes cjStepFadeOut {
  0% { 
    opacity: 1; 
    transform: translateY(0);
  }
  100% { 
    opacity: 0; 
    transform: translateY(-20px);
  }
}

/* ========================================
   STEP 1: LUXURY HERO SECTION
   ======================================== */
/* ========================================
   🔥🔥🔥 TRILLION DOLLAR START SECTION 🔥🔥🔥
   ======================================== */

.cj-start {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  background: transparent;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* When step is exiting, fade out all content */
.cj-step.exiting .cj-start,
.cj-step.exiting .cj-select,
.cj-step.exiting .cj-checkout {
  opacity: 0;
  transform: translateY(-30px);
}

.cj-start__hero {
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(181, 144, 138, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cj-start__hero--has-image {
  background: linear-gradient(135deg, rgba(20, 35, 35, 0.95) 0%, rgba(30, 50, 50, 0.95) 50%, rgba(20, 35, 35, 0.95) 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.cj-start__hero--has-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: heroShimmer 5s ease-in-out infinite;
}

.cj-start__hero--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 21, 21, 0.6) 100%);
  pointer-events: none;
}

@keyframes heroShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.cj-start__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cj-start__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(30%) contrast(1.1);
  mix-blend-mode: luminosity;
  transition: all 1s ease;
}

.cj-start__hero:hover .cj-start__hero-bg img {
  opacity: 0.3;
  transform: scale(1.08);
  filter: grayscale(20%) contrast(1.2);
}

.cj-start__hero-content {
  position: relative;
  z-index: 1;
}

.cj-start__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 28px;
  margin-bottom: 32px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cj-start__badge .cj-badge-svg svg {
  stroke: var(--cj-rose-light) !important;
}

/* SVG Icon Styling for Labels and Badges */
.cj-badge-svg svg,
.cj-discount-svg svg {
  width: 20px;
  height: 20px;
  stroke: var(--cj-rose);
  flex-shrink: 0;
}

.cj-label-icon {
  width: 16px;
  height: 16px;
  stroke: var(--cj-rose);
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

.cj-option__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cj-text-muted);
  transition: stroke 0.3s ease;
}

.cj-option:hover .cj-option__icon svg,
.cj-option.selected .cj-option__icon svg {
  stroke: var(--cj-rose);
}

.cj-category__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--cj-rose);
}

.cj-preview__badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  margin-right: 4px;
  vertical-align: middle;
}

.cj-benefit svg {
  width: 16px;
  height: 16px;
  stroke: var(--cj-rose);
  margin-right: 6px;
  vertical-align: middle;
}

.cj-final-btn__icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.cj-pricing-icon svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.cj-pricing-ring-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-pricing-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

.cj-pricing-icon--discount svg {
  stroke: var(--cj-rose);
  fill: none;
}

.cj-no-results__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--cj-text-muted);
  margin-bottom: 15px;
}

.cj-size-modal__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--cj-teal);
}

.cj-quiz__fit-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cj-rose);
}

.cj-quiz-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--cj-rose);
  display: inline-block;
}

.cj-tryon-hand-icon svg,
.cj-tryon-error-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--cj-rose);
}

.cj-start__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;
  color: white;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.cj-start__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--cj-rose-light), #E8D5D2, var(--cj-rose-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cj-start__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cj-start__discount {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cj-rose) 0%, #C49A94 100%);
  padding: 18px 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 30px rgba(181, 144, 138, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cj-start__discount:hover {
  background: var(--cj-rose-light);
  color: var(--cj-teal);
}

.cj-start__discount:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(184, 128, 111, 0.7),
    0 0 150px rgba(184, 128, 111, 0.4),
    0 0 0 6px rgba(255,255,255,0.15);
}

/* Shimmer Effect on Button */
.cj-start__discount::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: buttonShimmer 2s ease-in-out infinite;
}

@keyframes buttonShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@keyframes discountPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 20px 60px rgba(184, 128, 111, 0.6), 0 0 100px rgba(184, 128, 111, 0.3);
  }
  50% { 
    transform: scale(1.03); 
    box-shadow: 0 25px 70px rgba(184, 128, 111, 0.7), 0 0 120px rgba(184, 128, 111, 0.4);
  }
}

.cj-start__discount::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: cjShine 3s ease-in-out infinite;
}

@keyframes cjShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Section Heading - Editorial */
.cj-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cj-text);
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

/* Discovery Options - Editorial Cards */
.cj-start__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .cj-start__options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 🔥 TRILLION DOLLAR OPTION CARDS */
.cj-option {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 50px 35px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cj-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181, 144, 138, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cj-option:hover {
  border-color: rgba(181, 144, 138, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(181, 144, 138, 0.2);
}

.cj-option:hover::before {
  opacity: 1;
}

.cj-option.selected {
  border: 2px solid var(--cj-rose);
  background: rgba(181, 144, 138, 0.1);
  box-shadow: 
    0 0 40px rgba(181, 144, 138, 0.3),
    inset 0 0 30px rgba(181, 144, 138, 0.1);
}

.cj-option.selected::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  background: var(--cj-teal);
  border-radius: 50%;
}

.cj-option.selected::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 25px;
  width: 12px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

/* 🔥 TRILLION DOLLAR OPTION STYLING */
.cj-option__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 144, 138, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(181, 144, 138, 0.2);
  transition: all 0.5s ease;
}

.cj-option:hover .cj-option__icon {
  background: rgba(181, 144, 138, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(181, 144, 138, 0.3);
}

.cj-option__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cj-rose-light);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.cj-option:hover .cj-option__icon svg {
  stroke: white;
  filter: drop-shadow(0 0 10px rgba(181, 144, 138, 0.5));
}

.cj-option__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  z-index: 1;
  transition: all 0.4s ease;
}

.cj-option:hover .cj-option__title {
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.cj-option__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.cj-option:hover .cj-option__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Search Box - Premium Input */
.cj-search {
  margin-top: 50px;
  display: none;
}

.cj-search.visible {
  display: block;
  animation: cjStepIn 0.5s ease-out;
}

.cj-search__box {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  background: var(--cj-white);
  padding: 8px;
  border-radius: var(--cj-radius-md);
  box-shadow: var(--cj-shadow-md);
  border: 1px solid var(--cj-cream-dark);
}

.cj-search__input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  border-radius: var(--cj-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  color: var(--cj-text);
  transition: all 0.3s ease;
}

.cj-search__input:focus {
  outline: none;
  background: var(--cj-cream-light);
}

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

.cj-search__btn {
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  border: none;
  border-radius: var(--cj-radius-sm);
  color: white;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--cj-teal-glow);
  white-space: nowrap;
}

.cj-search__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--cj-teal-glow);
}

.cj-search__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
}

.cj-search__tag {
  padding: 10px 20px;
  background: var(--cj-white);
  border: 1px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-lg);
  font-size: 0.85rem;
  color: var(--cj-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cj-search__tag:hover {
  background: var(--cj-teal);
  color: white;
  border-color: var(--cj-teal);
  transform: translateY(-2px);
}

/* Category Grid - Premium Cards */
.cj-categories {
  margin-top: 50px;
  display: none;
}

.cj-categories.visible {
  display: block;
  animation: cjStepIn 0.5s ease-out;
}

.cj-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .cj-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .cj-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.cj-category {
  background: var(--cj-white);
  border: 2px solid transparent;
  border-radius: var(--cj-radius-md);
  padding: 24px 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cj-shadow-sm);
}

.cj-category::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 107, 107, 0.05), rgba(184, 128, 111, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cj-category:hover {
  transform: translateY(-6px);
  border-color: var(--cj-teal);
  box-shadow: var(--cj-shadow-lg);
}

.cj-category:hover::before {
  opacity: 1;
}

.cj-category.selected {
  border-color: var(--cj-teal);
  background: linear-gradient(135deg, rgba(74, 107, 107, 0.08), rgba(74, 107, 107, 0.04));
  box-shadow: 
    var(--cj-shadow-md),
    0 0 0 4px rgba(74, 107, 107, 0.1);
}

.cj-category.selected::after {
  content: 'âœ“';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  background: var(--cj-teal);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.cj-category__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cj-category:hover .cj-category__icon {
  transform: scale(1.05);
}

.cj-category__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cj-text);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Continue Button - Editorial CTA */
.cj-continue {
  margin-top: 80px;
  text-align: center;
}

.cj-continue__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #C9A09A, #E8B4B8);
  border: none;
  border-radius: 50px;
  color: #1a1a1a;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(181, 144, 138, 0.4);
}

.cj-continue__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181, 144, 138, 0.5);
}

.cj-continue__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.cj-continue__btn svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   STEP 2 & 3: PREMIUM RING SELECTION
   ======================================== */
.cj-select {
  max-width: 1100px;
  margin: 0 auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cj-select__header {
  text-align: center;
  margin-bottom: 50px;
}

.cj-select__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: var(--cj-radius-lg);
  margin-bottom: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--cj-shadow-md);
}

.cj-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cj-badge-icon svg {
  width: 24px;
  height: 24px;
}

.cj-select__badge--his {
  background: linear-gradient(135deg, var(--cj-black), #3a3a3a);
  box-shadow: 0 8px 25px rgba(26, 26, 46, 0.3);
}

.cj-select__badge--her {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  box-shadow: 0 8px 25px var(--cj-rose-glow);
}

.cj-select__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: var(--cj-text);
  margin: 0 0 15px 0;
  letter-spacing: -0.02em;
}

.cj-select__query {
  font-size: 1.05rem;
  color: var(--cj-text-light);
  font-weight: 300;
}

.cj-select__query strong {
  color: var(--cj-rose);
  font-weight: 600;
}

/* Product Grid - Clean Premium */
.cj-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

/* 🔥 CLEAN PRODUCT CARDS WITH FADE IN 🔥 */
.cj-product {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: productFadeIn 0.5s ease forwards;
}

/* Staggered fade-in */
.cj-product:nth-child(1) { animation-delay: 0.05s; }
.cj-product:nth-child(2) { animation-delay: 0.1s; }
.cj-product:nth-child(3) { animation-delay: 0.15s; }
.cj-product:nth-child(4) { animation-delay: 0.2s; }
.cj-product:nth-child(5) { animation-delay: 0.25s; }
.cj-product:nth-child(6) { animation-delay: 0.3s; }
.cj-product:nth-child(7) { animation-delay: 0.35s; }
.cj-product:nth-child(8) { animation-delay: 0.4s; }
.cj-product:nth-child(9) { animation-delay: 0.45s; }
.cj-product:nth-child(10) { animation-delay: 0.5s; }
.cj-product:nth-child(n+11) { animation-delay: 0.55s; }

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

.cj-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cj-rose), var(--cj-rose-light), var(--cj-rose));
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cj-product:hover {
  transform: translateY(-4px);
}

.cj-product.selected .cj-product__img {
  border-color: rgba(181, 144, 138, 0.5);
  box-shadow: 0 0 0 2px rgba(181, 144, 138, 0.3);
}

.cj-product.selected::after {
  content: 'âœ“';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  color: white;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px var(--cj-teal-glow);
}

/* 🔥 TRANSPARENT PRODUCT IMAGES - TRILLION DOLLAR */
.cj-product__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: contain;
  margin-bottom: 16px;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.cj-product:hover .cj-product__img {
  transform: scale(1.08) translateY(-5px);
  filter: 
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 30px rgba(181, 144, 138, 0.2));
}

.cj-product__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cj-product__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cj-rose-light);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 20px rgba(181, 144, 138, 0.3);
}

/* Load More - Premium Button */
.cj-load-more {
  text-align: center;
  margin-bottom: 50px;
}

.cj-load-more__btn {
  padding: 16px 40px;
  background: var(--cj-white);
  border: 2px solid var(--cj-teal);
  border-radius: var(--cj-radius-sm);
  color: var(--cj-teal);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--cj-shadow-sm);
}

.cj-load-more__btn:hover {
  background: var(--cj-teal);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--cj-teal-glow);
}

/* Selected Preview - LARGE IMAGE HERO */
.cj-preview {
  background: linear-gradient(135deg, var(--cj-white) 0%, var(--cj-cream-light) 100%);
  border-radius: var(--cj-radius-xl);
  padding: 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  margin-bottom: 35px;
  border: 2px solid var(--cj-teal);
  box-shadow: 
    var(--cj-shadow-lg),
    0 0 0 4px rgba(74, 107, 107, 0.08);
  position: relative;
  overflow: hidden;
}

.cj-preview::before {
  content: 'SELECTED';
  position: absolute;
  top: 25px;
  right: -35px;
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 50px;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 4px 15px var(--cj-teal-glow);
}

.cj-preview__img-wrapper {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.cj-preview__img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  border-radius: var(--cj-radius-md);
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
}

.cj-preview__details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cj-preview__info {
  flex: 1;
}

.cj-preview__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cj-text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cj-preview__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cj-rose);
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 15px;
}

.cj-preview__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.cj-preview__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cj-text-muted);
  background: var(--cj-cream);
  padding: 6px 10px;
  border-radius: var(--cj-radius-lg);
}

.cj-preview__badge span {
  font-size: 0.85rem;
}

.cj-preview__change {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-sm);
  color: var(--cj-text-light);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.cj-preview__change:hover {
  background: var(--cj-cream);
  border-color: var(--cj-teal);
  color: var(--cj-teal);
}

@media (max-width: 700px) {
  .cj-preview {
    grid-template-columns: 1fr;
  }
  .cj-preview__img-wrapper {
    padding: 20px;
  }
  .cj-preview__img {
    height: 180px;
    max-width: 180px;
  }
  .cj-preview__details {
    padding: 20px;
    text-align: center;
  }
  .cj-preview__badges {
    justify-content: center;
  }
  .cj-preview__change {
    align-self: center;
  }
  .cj-preview::before {
    top: 15px;
    right: -40px;
    font-size: 0.55rem;
    padding: 6px 45px;
  }
}

/* Customize Section - Style & Size on Row 1, Engraving Full Width Row 2 */
.cj-customize {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.cj-customize .cj-field--engraving {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  .cj-customize {
    grid-template-columns: 1fr;
  }
}

.cj-field {
  background: var(--cj-white);
  border-radius: var(--cj-radius-md);
  padding: 20px;
  border: 1px solid var(--cj-cream-dark);
  box-shadow: var(--cj-shadow-sm);
  transition: all 0.3s ease;
}

.cj-field:hover {
  box-shadow: var(--cj-shadow-md);
}

.cj-field__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cj-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cj-field__hint-top {
  font-size: 0.7rem;
  color: var(--cj-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cj-field__hint-top span {
  color: var(--cj-gold);
}

/* Size Guide & Try On Links */
.cj-field__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.cj-size-guide-link {
  font-size: 0.8rem;
  color: var(--cj-teal);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cj-size-guide-link:hover {
  color: var(--cj-rose);
}

.cj-tryon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  border: none;
  border-radius: var(--cj-radius-lg);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--cj-rose-glow);
}

.cj-tryon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--cj-rose-glow);
}

.cj-tryon-btn svg {
  width: 14px;
  height: 14px;
}

.cj-field__select {
  width: 100%;
  padding: 16px 20px;
  background: var(--cj-cream-light);
  border: 2px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--cj-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A6B6B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 45px;
  transition: all 0.3s ease;
}

.cj-field__select:focus {
  outline: none;
  border-color: var(--cj-teal);
  box-shadow: 0 0 0 4px rgba(74, 107, 107, 0.1);
}

.cj-field__input {
  width: 100%;
  padding: 12px 14px;
  background: var(--cj-cream-light);
  border: 2px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--cj-text);
  transition: all 0.3s ease;
}

.cj-field__input:focus {
  outline: none;
  border-color: var(--cj-teal);
  background: var(--cj-white);
  box-shadow: 0 0 0 4px rgba(74, 107, 107, 0.1);
}

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

.cj-field__hint {
  font-size: 0.8rem;
  color: var(--cj-text-muted);
  margin-top: 10px;
}

/* Required asterisk */
.cj-required {
  color: var(--cj-rose);
  font-weight: 700;
}

/* Selected style name display */
.cj-style-selected-name {
  color: var(--cj-rose) !important;
  font-weight: 600;
  margin-left: 8px;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
}

/* Only show dash when there's content */
.cj-style-selected-name:not(:empty)::before {
  content: 'â€” ';
  color: var(--cj-text-muted);
}

/* Override the dash before style name */
.cj-style-selected-name:not(:empty)::before {
  content: '- ' !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Field error */
.cj-field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: var(--cj-radius-sm);
  border-left: 3px solid #dc3545;
}

/* ========================================
   RING STYLE SWATCHES - PREMIUM
   ======================================== */
.cj-style-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 20px;
  background: var(--cj-cream-light);
  border-radius: var(--cj-radius-sm);
}

.cj-style-swatch {
  position: relative;
  aspect-ratio: 1;
  min-width: 90px;
  min-height: 90px;
  border: 3px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--cj-white);
  box-shadow: var(--cj-shadow-sm);
}

.cj-style-swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  transition: transform 0.4s ease;
}

.cj-style-swatch:hover {
  border-color: var(--cj-rose);
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md);
}

.cj-style-swatch:hover img {
  transform: scale(1.08);
}

.cj-style-swatch.active {
  border: 3px solid var(--cj-teal);
  box-shadow: 
    var(--cj-shadow-md),
    0 0 0 4px rgba(74, 107, 107, 0.15);
  transform: translateY(-4px);
}

.cj-style-swatch.active::after {
  content: 'âœ“';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px var(--cj-teal-glow);
}

.cj-style-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--cj-text-muted);
  font-style: normal;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(74, 107, 107, 0.03), rgba(184, 128, 111, 0.03));
  border-radius: var(--cj-radius-md);
  border: 2px dashed var(--cj-cream-dark);
}

.cj-style-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--cj-teal);
  font-weight: 600;
  padding: 40px 25px;
  animation: cjPulseGlow 1.5s ease infinite;
}

/* ========================================
   SIZE BUTTONS - 7 COLUMNS FOR 21 SIZES (7x3)
   ======================================== */
.cj-size-buttons {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 15px;
  background: var(--cj-cream-light);
  border-radius: var(--cj-radius-sm);
}

@media (max-width: 768px) {
  .cj-size-buttons {
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    padding: 12px;
  }
}

.cj-size-btn {
  position: relative;
  padding: 16px 8px;
  border: 2px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-sm);
  background: var(--cj-white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cj-text);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: var(--cj-shadow-sm);
}

/* Popular sizes get a subtle highlight */
.cj-size-btn[data-size="7"],
.cj-size-btn[data-size="8"],
.cj-size-btn[data-size="9"],
.cj-size-btn[data-size="10"] {
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.03));
  border-color: rgba(201, 169, 98, 0.3);
}

.cj-size-btn[data-size="7"]::after,
.cj-size-btn[data-size="8"]::after,
.cj-size-btn[data-size="9"]::after,
.cj-size-btn[data-size="10"]::after {
  content: '\2605';
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 0.5rem;
  color: var(--cj-rose);
}

.cj-size-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(74, 107, 107, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.cj-size-btn:hover::before {
  width: 200%;
  height: 200%;
}

.cj-size-btn:hover {
  border-color: var(--cj-teal);
  transform: translateY(-4px);
  box-shadow: var(--cj-shadow-md);
}

.cj-size-btn.active {
  border-color: var(--cj-teal);
  background: linear-gradient(135deg, rgba(74, 107, 107, 0.12) 0%, rgba(74, 107, 107, 0.06) 100%);
  color: var(--cj-teal);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    var(--cj-shadow-md),
    0 0 0 4px rgba(74, 107, 107, 0.1);
}

.cj-size-btn.active::after {
  content: 'âœ“';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 8px var(--cj-rose-glow);
}

/* ========================================
   CUSTOM FONT DROPDOWN - PREMIUM
   ======================================== */
.cj-font-dropdown {
  margin-bottom: 12px;
}

.cj-font-label {
  display: block;
  font-size: 0.75rem;
  color: var(--cj-text-muted);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cj-custom-select {
  position: relative;
}

.cj-select-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--cj-radius-md);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.cj-select-trigger:hover,
.cj-select-trigger:focus {
  border-color: var(--cj-rose);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(181, 144, 138, 0.2);
}

.cj-select-trigger svg {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.cj-custom-select.open .cj-select-trigger {
  border-color: var(--cj-rose);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.cj-custom-select.open .cj-select-trigger svg {
  transform: rotate(180deg);
}

.cj-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: -1px;
  background: rgba(20, 30, 30, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: none;
  border-radius: 0 0 var(--cj-radius-md) var(--cj-radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: var(--cj-rose) rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.cj-custom-select.open .cj-select-options {
  display: block;
  animation: cjDropdown 0.3s ease;
}

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

.cj-select-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.cj-select-option:last-child {
  border-bottom: none;
}

.cj-select-option:hover {
  background: rgba(181, 144, 138, 0.15);
  padding-left: 20px;
  color: white;
}

.cj-select-option.active {
  background: linear-gradient(90deg, rgba(181, 144, 138, 0.2), rgba(181, 144, 138, 0.05));
  color: var(--cj-rose);
  font-weight: 600;
  border-left: 3px solid var(--cj-rose);
}

/* ========================================
   ENGRAVING - PREMIUM EXPERIENCE
   ======================================== */
.cj-engraving-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.cj-char-counter {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-char-counter span {
  color: var(--cj-rose);
  font-weight: 700;
}

.cj-engraving-preview {
  margin-top: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--cj-radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}

.cj-engraving-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cj-rose), var(--cj-gold), var(--cj-teal));
}

.cj-engraving-preview .cj-preview-label {
  font-size: 0.65rem;
  color: var(--cj-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.cj-engraving-preview .cj-preview-text {
  font-size: clamp(0.9rem, 3vw, 1.4rem);
  color: var(--cj-rose);
  padding: 12px;
  min-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--cj-radius-sm);
  border: 1px solid rgba(181, 144, 138, 0.3);
}

.cj-engraving-preview .cj-preview-placeholder {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.cj-field--engraving {
  background: rgba(181, 144, 138, 0.05);
  border: 1px solid rgba(181, 144, 138, 0.15);
  border-radius: var(--cj-radius-md);
  padding: 25px;
  padding-top: 30px;
  position: relative;
}

.cj-field--engraving::before {
  content: 'PERSONALIZE YOUR RING';
  position: absolute;
  top: -12px;
  left: 25px;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--cj-radius-lg);
  box-shadow: 0 4px 10px var(--cj-rose-glow);
}

.cj-field--engraving .cj-engraving-layout {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .cj-field--engraving .cj-engraving-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cj-field--engraving .cj-engraving-layout {
    grid-template-columns: 1fr;
  }
}

.cj-engraving-col {
  display: flex;
  flex-direction: column;
}

.cj-engraving-col .cj-field__label {
  margin-bottom: 10px;
}

.cj-engraving-input {
  transition: all 0.3s ease;
}

.cj-engraving-input:focus {
  border-color: var(--cj-teal);
  background: var(--cj-white);
  box-shadow: 0 0 0 4px rgba(74, 107, 107, 0.12);
}

/* Navigation Buttons - see dark theme section for styles */

/* ========================================
   STEP 4: LUXURY CHECKOUT
   ======================================== */
.cj-checkout {
  max-width: 1000px;
  margin: 0 auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cj-checkout__header {
  text-align: center;
  margin-bottom: 50px;
}

.cj-checkout__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.08));
  border: 1px solid rgba(201, 169, 98, 0.3);
  padding: 10px 24px;
  border-radius: var(--cj-radius-lg);
  margin-bottom: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cj-gold);
}

.cj-checkout__badge::before {
  content: '';
  display: none;
}

.cj-checkout__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--cj-text);
  margin: 0 0 15px 0;
  letter-spacing: -0.02em;
}

.cj-checkout__subtitle {
  font-size: 1.1rem;
  color: var(--cj-text-light);
  font-weight: 300;
}

/* ========================================
   INFINITY RING ANIMATION - BILLION DOLLAR
   ======================================== */

@keyframes boxSlideIn1 {
  0% { transform: translateX(-150%) scale(0.8); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes boxSlideIn2 {
  0% { transform: translateX(150%) scale(0.8); opacity: 0; }
  100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes boxOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-120deg); }
}

@keyframes ringFloat1 {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  30% { transform: translateY(-30px) scale(1); opacity: 1; }
  50% { transform: translate(100px, -80px) scale(0.8); }
  100% { transform: translate(100px, -80px) scale(0); opacity: 0; }
}

@keyframes ringFloat2 {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  30% { transform: translateY(-30px) scale(1); opacity: 1; }
  50% { transform: translate(-100px, -80px) scale(0.8); }
  100% { transform: translate(-100px, -80px) scale(0); opacity: 0; }
}

@keyframes infinityDraw {
  0% { stroke-dashoffset: 600; opacity: 0; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes orbitInfinity1 {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@keyframes orbitInfinity2 {
  0% { offset-distance: 50%; }
  100% { offset-distance: 150%; }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--cj-rose-glow); }
  50% { transform: scale(1.3); box-shadow: 0 0 40px var(--cj-rose-glow), 0 0 60px var(--cj-teal-glow); }
}

@keyframes sparkBurst {
  0% { transform: scale(0) translate(0, 0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: scale(1) translate(var(--spark-x), var(--spark-y)); opacity: 0; }
}

@keyframes heartPulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  30% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
  60% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes messageReveal {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes infinityGlow {
  0%, 100% { filter: drop-shadow(0 0 10px var(--cj-rose-glow)); }
  50% { filter: drop-shadow(0 0 30px var(--cj-rose-glow)) drop-shadow(0 0 50px var(--cj-teal-glow)); }
}

@keyframes fadeOutAnimation {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.9); }
}

.cj-infinity-animation {
  position: relative;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  margin-bottom: 40px;
  overflow: hidden;
}

.cj-infinity-animation.hidden {
  animation: fadeOutAnimation 0.6s ease-out forwards;
  pointer-events: none;
}

.cj-infinity__stage {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 420px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
}

/* Ring Boxes */
.cj-infinity__box {
  position: absolute;
  width: 120px;
  height: 90px;
  perspective: 500px;
}

.cj-infinity__box--1 {
  left: 10%;
  animation: boxSlideIn1 0.8s ease-out forwards;
}

.cj-infinity__box--2 {
  right: 10%;
  animation: boxSlideIn2 0.8s ease-out forwards;
}

.cj-infinity__box-base {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, #2C2C2C 0%, #1a1a1a 100%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cj-infinity__box--2 .cj-infinity__box-base {
  background: linear-gradient(180deg, var(--cj-rose) 0%, #a06a5a 100%);
}

.cj-infinity__box-lid {
  position: absolute;
  top: 0;
  width: 100%;
  height: 45px;
  background: linear-gradient(180deg, #3a3a3a 0%, #2C2C2C 100%);
  border-radius: 8px 8px 0 0;
  transform-origin: bottom center;
  animation: boxOpen 0.8s ease-out 0.8s forwards;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cj-infinity__box--2 .cj-infinity__box-lid {
  background: linear-gradient(180deg, #d4a596 0%, var(--cj-rose) 100%);
}

/* Ring Images */
.cj-infinity__ring {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  z-index: 10;
}

.cj-infinity__ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  mix-blend-mode: multiply;
  filter: brightness(1.1) contrast(1.1);
}

.cj-infinity__ring {
  background: #1a2525 !important;
  overflow: hidden;
  border-radius: 8px;
}

.cj-infinity__ring--1 {
  animation: ringFloat1 2s ease-out 1.6s forwards;
}

.cj-infinity__ring--2 {
  animation: ringFloat2 2s ease-out 1.6s forwards;
}

/* Infinity Path */
.cj-infinity__path {
  position: absolute;
  width: 300px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: infinityGlow 2s ease-in-out 2.5s infinite;
}

.cj-infinity-animation.playing .cj-infinity__path {
  opacity: 1;
  transition: opacity 0.5s ease 2.5s;
}

.cj-infinity__svg {
  width: 100%;
  height: 100%;
}

.cj-infinity__trace {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: infinityDraw 1.5s ease-out 2.5s forwards;
}

/* Orbiting Rings - Using transform-based animation for better browser support */
@keyframes orbitRing1 {
  0% { transform: translate(-100px, 0) scale(1); }
  25% { transform: translate(0, -40px) scale(1.1); }
  50% { transform: translate(100px, 0) scale(1); }
  75% { transform: translate(0, 40px) scale(0.9); }
  100% { transform: translate(-100px, 0) scale(1); }
}

@keyframes orbitRing2 {
  0% { transform: translate(100px, 0) scale(1); }
  25% { transform: translate(0, 40px) scale(0.9); }
  50% { transform: translate(-100px, 0) scale(1); }
  75% { transform: translate(0, -40px) scale(1.1); }
  100% { transform: translate(100px, 0) scale(1); }
}

.cj-infinity__orbiter {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  opacity: 0;
}

.cj-infinity-animation.playing .cj-infinity__orbiter {
  opacity: 1;
  transition: opacity 0.5s ease 3s;
}

.cj-infinity__orb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cj-rose-glow), 0 0 40px var(--cj-rose-glow);
}

.cj-infinity__orbiter--1 {
  animation: orbitRing1 2.5s ease-in-out 3.5s infinite;
}

.cj-infinity__orbiter--1 .cj-infinity__orb {
  background: linear-gradient(135deg, #2C2C2C, #4a4a4a);
  box-shadow: 0 0 15px rgba(50,50,50,0.6), 0 0 30px rgba(50,50,50,0.3);
  animation: orbPulse 1s ease-in-out infinite;
}

.cj-infinity__orbiter--2 {
  animation: orbitRing2 2.5s ease-in-out 3.5s infinite;
}

.cj-infinity__orbiter--2 .cj-infinity__orb {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  box-shadow: 0 0 15px var(--cj-rose-glow), 0 0 30px var(--cj-rose-glow);
  animation: orbPulse 1s ease-in-out 0.5s infinite;
}

/* Sparkles */
.cj-infinity__sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cj-infinity__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #fff, var(--cj-gold));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  opacity: 0;
}

.cj-infinity-animation.playing .cj-infinity__spark {
  animation: sparkBurst 1s ease-out forwards;
}

.cj-infinity__spark:nth-child(1) { --spark-x: -80px; --spark-y: -60px; animation-delay: 2.8s; }
.cj-infinity__spark:nth-child(2) { --spark-x: 80px; --spark-y: -60px; animation-delay: 2.9s; }
.cj-infinity__spark:nth-child(3) { --spark-x: -100px; --spark-y: 20px; animation-delay: 3s; }
.cj-infinity__spark:nth-child(4) { --spark-x: 100px; --spark-y: 20px; animation-delay: 3.1s; }
.cj-infinity__spark:nth-child(5) { --spark-x: -50px; --spark-y: -90px; animation-delay: 3.2s; }
.cj-infinity__spark:nth-child(6) { --spark-x: 50px; --spark-y: -90px; animation-delay: 3.3s; }
.cj-infinity__spark:nth-child(7) { --spark-x: -70px; --spark-y: 50px; animation-delay: 3.4s; }
.cj-infinity__spark:nth-child(8) { --spark-x: 70px; --spark-y: 50px; animation-delay: 3.5s; }

/* Heart Burst */
.cj-infinity__heart-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  opacity: 0;
}

.cj-infinity-animation.playing .cj-infinity__heart-burst {
  animation: heartPulse 1.5s ease-out 3.8s forwards;
}

.cj-infinity__heart-burst svg {
  width: 100%;
  height: 100%;
}

/* Message */
.cj-infinity__message {
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 10;
}

.cj-infinity-animation.playing .cj-infinity__message {
  animation: messageReveal 0.8s ease-out 4.5s forwards;
}

.cj-infinity__message span {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* ========================================
   ENGRAVING TEXT ANIMATIONS - BILLION DOLLAR
   ======================================== */

@keyframes engravingSlideIn1 {
  0% { 
    transform: translateX(-100px) scale(0.8);
    opacity: 0;
    filter: blur(10px);
  }
  60% {
    transform: translateX(10px) scale(1.05);
    opacity: 1;
    filter: blur(0);
  }
  100% { 
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes engravingSlideIn2 {
  0% { 
    transform: translateX(100px) scale(0.8);
    opacity: 0;
    filter: blur(10px);
  }
  60% {
    transform: translateX(-10px) scale(1.05);
    opacity: 1;
    filter: blur(0);
  }
  100% { 
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes engravingGlow {
  0%, 100% { 
    box-shadow: 0 0 20px var(--cj-rose-glow), inset 0 0 20px rgba(199, 144, 129, 0.1);
  }
  50% { 
    box-shadow: 0 0 40px var(--cj-rose-glow), 0 0 60px var(--cj-teal-glow), inset 0 0 30px rgba(199, 144, 129, 0.2);
  }
}

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

@keyframes labelFadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes connectorDraw {
  0% { stroke-dashoffset: 200; opacity: 0; }
  30% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.cj-infinity__engravings {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 650px;
  padding: 0 20px;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

.cj-infinity-animation.playing .cj-infinity__engravings {
  opacity: 1;
  transition: opacity 0.3s ease 2.8s;
}

.cj-infinity__engraving {
  flex: 1;
  max-width: 220px;
  text-align: center;
  opacity: 0;
}

.cj-infinity__engraving--1 {
  animation: engravingSlideIn1 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 3s;
  animation-play-state: paused;
}

.cj-infinity__engraving--2 {
  animation: engravingSlideIn2 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 3.2s;
  animation-play-state: paused;
}

.cj-infinity-animation.playing .cj-infinity__engraving--1,
.cj-infinity-animation.playing .cj-infinity__engraving--2 {
  animation-play-state: running;
}

.cj-infinity__engraving-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cj-text-muted);
  margin-bottom: 8px;
  opacity: 0;
}

.cj-infinity-animation.playing .cj-infinity__engraving--1 .cj-infinity__engraving-label {
  animation: labelFadeIn 0.4s ease forwards;
  animation-delay: 3.3s;
}

.cj-infinity-animation.playing .cj-infinity__engraving--2 .cj-infinity__engraving-label {
  animation: labelFadeIn 0.4s ease forwards;
  animation-delay: 3.5s;
}

.cj-infinity__engraving-text {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 40, 40, 0.95), rgba(20, 30, 30, 0.98));
  border: 2px solid var(--cj-rose);
  border-radius: 16px;
  padding: 16px 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a574;
  -webkit-text-fill-color: #d4a574;
  font-size: 1.1rem;
  color: var(--cj-text);
  word-break: break-word;
  animation: engravingGlow 2s ease-in-out infinite;
  animation-delay: 3.8s;
  animation-play-state: paused;
  
  /* Shimmering text effect */
  background: linear-gradient(
    90deg,
    var(--cj-text) 0%,
    var(--cj-rose) 25%,
    var(--cj-text) 50%,
    var(--cj-rose) 75%,
    var(--cj-text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cj-infinity-animation.playing .cj-infinity__engraving-text {
  animation: engravingGlow 2s ease-in-out infinite, engravingTextShine 3s linear infinite;
  animation-delay: 3.8s;
  animation-play-state: running;
}

/* Reset text color for visibility - dark theme version */
.cj-infinity__engraving-text {
  background: linear-gradient(135deg, rgba(30, 40, 40, 0.95), rgba(20, 30, 30, 0.98));
  color: #d4a574;
  -webkit-text-fill-color: #d4a574;
  border: 2px solid var(--cj-rose);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px var(--cj-rose-glow);
}

.cj-infinity__engraving-glow {
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--cj-rose-glow), var(--cj-teal-glow));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
}

.cj-infinity-animation.playing .cj-infinity__engraving-glow {
  animation: centerGlowPulse 2s ease-in-out infinite;
  animation-delay: 3.8s;
}

/* Connector between engravings */
.cj-infinity__engraving-connector {
  width: 60px;
  height: 30px;
  flex-shrink: 0;
  opacity: 0;
}

.cj-infinity-animation.playing .cj-infinity__engraving-connector {
  opacity: 1;
  transition: opacity 0.3s ease 3.4s;
}

.cj-connector-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.cj-infinity-animation.playing .cj-connector-line {
  animation: connectorDraw 0.8s ease forwards, connectorPulse 1.5s ease-in-out 4.2s infinite;
  animation-delay: 3.4s;
}

/* Font family classes for engravings */
.cj-engraving-font-monotype { font-family: 'Monotype Corsiva', 'Brush Script MT', cursive; font-style: italic; }
.cj-engraving-font-arial { font-family: Arial, Helvetica, sans-serif; }
.cj-engraving-font-times { font-family: 'Times New Roman', Times, serif; }
.cj-engraving-font-commercial { font-family: 'Brush Script MT', 'Commercial Script BT', cursive; }
.cj-engraving-font-bradley { font-family: 'Bradley Hand ITC', 'Comic Sans MS', cursive; }
.cj-engraving-font-french { font-family: 'French Script MT', 'Brush Script MT', cursive; font-style: italic; }
.cj-engraving-font-comic { font-family: 'Comic Sans MS', cursive; }
.cj-engraving-font-mistral { font-family: Mistral, 'Brush Script MT', cursive; }

/* Typewriter / Laser Engraving Effect */
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes laserSpark {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 5px #fff, 0 0 10px var(--cj-gold), 0 0 20px var(--cj-rose);
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 10px #fff, 0 0 20px var(--cj-gold), 0 0 40px var(--cj-rose), 0 0 60px var(--cj-rose);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 5px #fff, 0 0 10px var(--cj-gold), 0 0 20px var(--cj-rose);
  }
}

@keyframes textGlowIn {
  0% { text-shadow: none; }
  50% { text-shadow: 0 0 10px var(--cj-rose), 0 0 20px var(--cj-gold); }
  100% { text-shadow: none; }
}

.cj-typewriter-text {
  display: inline;
  animation: textGlowIn 0.1s ease-out;
}

.cj-typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: linear-gradient(180deg, var(--cj-gold), var(--cj-rose));
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 0.8s ease-in-out infinite;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--cj-gold), 0 0 20px var(--cj-rose);
}

.cj-typewriter-cursor.sparking {
  animation: laserSpark 0.1s ease-out;
  background: #fff;
  width: 6px;
  border-radius: 50%;
}

.cj-infinity__engraving-text.typing-complete {
  animation: engravingGlow 2s ease-in-out infinite;
}

/* Extra sparkle effects during typing */
.cj-infinity__engraving-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  background: var(--cj-gold);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.cj-infinity__engraving-text:not(.typing-complete)::after {
  animation: sparkBurst 0.3s ease-out infinite;
}

/* Mobile adjustments for engravings */
@media (max-width: 600px) {
  .cj-infinity__engravings {
    bottom: 60px;
    flex-direction: column;
    gap: 15px;
  }
  
  .cj-infinity__engraving {
    max-width: 90%;
  }
  
  .cj-infinity__engraving-connector {
    transform: rotate(90deg);
    width: 40px;
    height: 20px;
  }
  
  .cj-infinity__engraving-text {
    font-size: 0.95rem;
    padding: 12px 16px;
    min-height: 50px;
  }
}

/* Golden Confetti */
@keyframes confettiFall {
  0% { 
    transform: translateY(-100px) rotate(0deg) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(-50px) rotate(45deg) scale(1);
  }
  100% { 
    transform: translateY(200px) rotate(720deg) scale(0.5);
    opacity: 0;
  }
}

.cj-infinity__confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cj-confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
}

.cj-confetti-piece:nth-child(odd) {
  background: linear-gradient(135deg, var(--cj-gold), var(--cj-gold-light));
  border-radius: 2px;
}

.cj-confetti-piece:nth-child(even) {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  border-radius: 50%;
}

.cj-infinity-animation.playing .cj-confetti-piece {
  animation: confettiFall 2s ease-out forwards;
}

.cj-confetti-piece:nth-child(1) { left: 20%; animation-delay: 4s; }
.cj-confetti-piece:nth-child(2) { left: 30%; animation-delay: 4.1s; width: 8px; height: 8px; }
.cj-confetti-piece:nth-child(3) { left: 40%; animation-delay: 4.2s; }
.cj-confetti-piece:nth-child(4) { left: 50%; animation-delay: 4.05s; width: 12px; height: 12px; }
.cj-confetti-piece:nth-child(5) { left: 60%; animation-delay: 4.15s; }
.cj-confetti-piece:nth-child(6) { left: 70%; animation-delay: 4.25s; width: 6px; height: 6px; }
.cj-confetti-piece:nth-child(7) { left: 80%; animation-delay: 4.3s; }
.cj-confetti-piece:nth-child(8) { left: 25%; animation-delay: 4.35s; width: 7px; height: 7px; }
.cj-confetti-piece:nth-child(9) { left: 45%; animation-delay: 4.12s; }
.cj-confetti-piece:nth-child(10) { left: 55%; animation-delay: 4.22s; width: 9px; height: 9px; }
.cj-confetti-piece:nth-child(11) { left: 65%; animation-delay: 4.08s; }
.cj-confetti-piece:nth-child(12) { left: 75%; animation-delay: 4.18s; width: 11px; height: 11px; }

/* Center Glow Effect */
@keyframes centerGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  30% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.cj-infinity__center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--cj-rose-glow) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(30px);
}

.cj-infinity-animation.playing .cj-infinity__center-glow {
  animation: centerGlowPulse 2s ease-out 3.5s forwards;
}

/* Skip Button */
.cj-infinity__skip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--cj-text-muted);
  color: var(--cj-text-muted);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.cj-infinity__skip:hover {
  background: var(--cj-text);
  color: white;
  border-color: var(--cj-text);
  transform: scale(1.05);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .cj-infinity-animation {
    min-height: 600px;
    padding-top: 20px;
  }
  
  .cj-infinity__stage {
    height: 320px;
    padding-top: 30px;
  }
  
  .cj-infinity__box {
    width: 80px;
    height: 60px;
  }
  
  .cj-infinity__box--1 { left: 5%; }
  .cj-infinity__box--2 { right: 5%; }
  
  .cj-infinity__ring {
    width: 50px;
    height: 50px;
    bottom: 15px;
  }
  
  .cj-infinity__path {
    width: 200px;
    height: 100px;
  }
  
  .cj-infinity__orb {
    width: 20px;
    height: 20px;
  }
  
  .cj-infinity__message {
    top: 220px;
  }
  
  .cj-infinity__message span {
    font-size: 1.3rem;
  }
}

/* Summary Cards - Premium */
.cj-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 750px) {
  .cj-summary {
    grid-template-columns: 1fr;
  }
}

.cj-summary-card {
  background: var(--cj-white);
  border-radius: var(--cj-radius-lg);
  padding: 30px;
  border: 2px solid var(--cj-cream-dark);
  box-shadow: var(--cj-shadow-md);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cj-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--cj-shadow-lg);
}

.cj-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.cj-summary-card--his {
  border-color: rgba(26, 26, 46, 0.2);
}

.cj-summary-card--his::before {
  background: linear-gradient(90deg, var(--cj-black), #555);
}

.cj-summary-card--her {
  border-color: rgba(184, 128, 111, 0.3);
}

.cj-summary-card--her::before {
  background: linear-gradient(90deg, var(--cj-rose), var(--cj-rose-light));
}

.cj-summary-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cj-cream-dark);
}

.cj-summary-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--cj-shadow-md);
}

.cj-summary-card__icon svg {
  width: 30px;
  height: 30px;
}

.cj-summary-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
}

/* Pricing row icons */
.cj-pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 6px;
}

.cj-pricing-icon svg {
  width: 20px;
  height: 20px;
}

.cj-summary-card--his .cj-summary-card__icon {
  background: linear-gradient(135deg, var(--cj-black), #3a3a3a);
  color: white;
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.25);
}

.cj-summary-card--her .cj-summary-card__icon {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light));
  color: white;
  box-shadow: 0 6px 20px var(--cj-rose-glow);
}

.cj-summary-card__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cj-text);
  flex: 1;
}

.cj-summary-card__update {
  background: transparent;
  border: 2px solid var(--cj-teal);
  color: var(--cj-teal);
  padding: 8px 20px;
  border-radius: var(--cj-radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-summary-card__update:hover {
  background: var(--cj-teal);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px var(--cj-teal-glow);
}

.cj-summary-card__product {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.cj-summary-card__img {
  width: 90px;
  height: 90px;
  border-radius: var(--cj-radius-sm);
  object-fit: cover;
  border: 2px solid var(--cj-cream-dark);
  box-shadow: var(--cj-shadow-sm);
}

.cj-summary-card__info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cj-text);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.cj-summary-card__info p {
  font-size: 0.9rem;
  color: var(--cj-text-light);
  margin: 0 0 4px 0;
}

.cj-summary-card__engraving {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--cj-rose);
  margin-top: 8px;
  font-size: 1.05rem;
}

.cj-summary-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cj-rose);
  text-align: right;
  font-family: 'Playfair Display', serif;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--cj-cream-dark);
}

/* Pricing Box - Premium */
.cj-pricing {
  background: linear-gradient(135deg, var(--cj-cream-light), var(--cj-cream));
  border: 2px solid var(--cj-cream-dark);
  border-radius: var(--cj-radius-lg);
  padding: 35px;
  margin-bottom: 35px;
  box-shadow: var(--cj-shadow-md);
  position: relative;
  overflow: hidden;
}

.cj-pricing::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cj-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 1.05rem;
  color: var(--cj-text);
  position: relative;
}

.cj-pricing__row--ring {
  align-items: flex-start;
}

.cj-pricing__row--ring .cj-pricing__label {
  display: flex;
  align-items: flex-start;
}

.cj-pricing__ring-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cj-pricing__ring-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.cj-pricing__ring-details {
  font-size: 0.8rem;
  color: var(--cj-text-muted);
  line-height: 1.5;
  max-width: 300px;
}

.cj-pricing__row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cj-pricing__row--discount {
  color: #2E7D32;
}

.cj-pricing__row--discount .cj-pricing__value {
  font-weight: 700;
  font-size: 1.15rem;
  color: #16a34a;
}

.cj-pricing__row--total {
  padding-top: 25px;
  margin-top: 15px;
  border-top: 2px solid rgba(0, 0, 0, 0.08) !important;
  border-bottom: none !important;
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.08), transparent);
  margin-left: -35px;
  margin-right: -35px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 5px;
}

.cj-pricing__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cj-pricing__value {
  font-weight: 600;
}

.cj-pricing__row--total .cj-pricing__label {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.cj-pricing__row--total .cj-pricing__value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cj-rose);
}

.cj-pricing__original {
  text-decoration: line-through;
  color: var(--cj-text-muted);
  font-size: 1.1rem;
  margin-right: 15px;
}

/* Final Button - PREMIUM ADD TO CART */
.cj-final-btn {
  width: 100%;
  padding: 26px 50px;
  background: linear-gradient(135deg, var(--cj-teal), var(--cj-teal-light));
  border: none;
  border-radius: var(--cj-radius-md);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 15px 40px var(--cj-teal-glow),
    inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cj-final-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s ease;
}

.cj-final-btn:hover::before {
  left: 100%;
}

.cj-final-btn:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 
    0 25px 60px var(--cj-teal-glow),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.cj-final-btn:active {
  transform: translateY(-2px) scale(1);
}

.cj-final-btn.loading .cj-final-btn__text {
  opacity: 0;
}

.cj-final-btn.loading::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: cjSpin 0.7s linear infinite;
}

@keyframes cjSpin {
  to { transform: rotate(360deg); }
}

.cj-final-btn.success {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

/* Benefits - Premium Trust Badges */
.cj-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  padding: 25px 0;
}

.cj-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cj-text-light);
  padding: 12px 20px;
  background: var(--cj-white);
  border-radius: var(--cj-radius-lg);
  box-shadow: var(--cj-shadow-sm);
  border: 1px solid var(--cj-cream-dark);
}

.cj-benefit span:first-child {
  font-size: 1.2rem;
}

/* Loading State - Premium Ring Animation */
.cj-loading {
  text-align: center;
  padding: 80px 30px;
}

.cj-loading--premium {
  padding: 100px 30px;
}

.cj-loading__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--cj-cream);
  border-top-color: var(--cj-teal);
  border-radius: 50%;
  animation: cjSpin 0.7s linear infinite;
  margin: 0 auto 25px;
}

/* Premium Ring Loading Animation */
.cj-loading__rings {
  position: relative;
  width: 120px;
  height: 80px;
  margin: 0 auto 30px;
}

.cj-loading__ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid;
  top: 10px;
}

.cj-loading__ring--dark {
  left: 10px;
  border-color: #3a3a3a;
  box-shadow: 0 0 20px rgba(60, 60, 60, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.2);
  animation: loadingRingPulse1 1.5s ease-in-out infinite;
}

.cj-loading__ring--rose {
  right: 10px;
  border-color: #B5908A;
  box-shadow: 0 0 20px rgba(181, 144, 138, 0.4), inset 0 0 15px rgba(181, 144, 138, 0.2);
  animation: loadingRingPulse2 1.5s ease-in-out infinite;
}

@keyframes loadingRingPulse1 {
  0%, 100% { 
    transform: translateX(0) scale(1); 
    opacity: 0.7; 
  }
  50% { 
    transform: translateX(12px) scale(1.1); 
    opacity: 1; 
  }
}

@keyframes loadingRingPulse2 {
  0%, 100% { 
    transform: translateX(0) scale(1); 
    opacity: 0.7; 
  }
  50% { 
    transform: translateX(-12px) scale(1.1); 
    opacity: 1; 
  }
}

.cj-loading__text {
  font-size: 1.2rem;
  color: #B5908A;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* No Results - Premium */
.cj-no-results {
  text-align: center;
  padding: 80px 30px;
  background: var(--cj-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--cj-radius-lg);
  border: 1px solid var(--cj-glass-border);
}

.cj-no-results__icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.cj-no-results__text {
  font-size: 1.2rem;
  color: var(--cj-text);
  margin-bottom: 12px;
  font-weight: 500;
}

.cj-no-results__hint {
  font-size: 1rem;
  color: var(--cj-text-muted);
}

/* Global Animation */
@keyframes cjPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Mobile Optimizations - Premium */
@media (max-width: 480px) {
  .cj-builder__content {
    padding: 30px 15px 80px;
  }
  
  .cj-start__title {
    font-size: 2rem;
  }
  
  .cj-start__hero--has-image {
    padding: 40px 20px;
  }
  
  .cj-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .cj-product {
    padding: 12px;
  }
  
  .cj-nav__btn {
    padding: 12px 20px !important;
    font-size: 0.85rem !important;
  }
  
  .cj-final-btn {
    padding: 20px 30px;
    font-size: 1rem;
  }
  
  .cj-benefits {
    gap: 15px;
  }
  
  .cj-benefit {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  
  .cj-summary-card {
    padding: 20px;
  }
  
  .cj-pricing {
    padding: 25px 20px;
  }
  
  .cj-pricing__row--total {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ========================================
   🔥🔥🔥 TRILLION DOLLAR DARK THEME OVERRIDES 🔥🔥🔥
   ALL TEXT/BACKGROUNDS FOR DARK MODE
   ======================================== */

/* GLOBAL TEXT COLOR FIX */
.cj-builder,
.cj-builder * {
  --cj-text: rgba(255, 255, 255, 0.95) !important;
  --cj-text-light: rgba(255, 255, 255, 0.7) !important;
  --cj-text-muted: rgba(255, 255, 255, 0.5) !important;
}

/* ========== HEADINGS & TITLES ========== */
.cj-select__title,
.cj-checkout__title,
.cj-start__title,
.cj-preview__name,
.cj-summary-card__name,
.cj-no-results__title,
.cj-share-modal__title {
  color: rgba(255, 255, 255, 0.95) !important;
}

.cj-select__query,
.cj-checkout__subtitle,
.cj-start__subtitle,
.cj-share-modal__subtitle {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ========== FIELD LABELS ========== */
.cj-field__label,
.cj-field__hint-top,
.cj-field__hint,
.cj-char-counter,
.cj-engraving-preview .cj-preview-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cj-label-icon {
  stroke: var(--cj-rose-light) !important;
}

/* ========== SIZE BUTTONS - DARK THEME ========== */
.cj-size-buttons {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
}

.cj-size-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  border-radius: 12px !important;
}

.cj-size-btn:hover {
  background: rgba(181, 144, 138, 0.15) !important;
  border-color: rgba(181, 144, 138, 0.4) !important;
  color: white !important;
  box-shadow: 0 0 30px rgba(181, 144, 138, 0.2) !important;
}

.cj-size-btn.active {
  background: linear-gradient(135deg, rgba(181, 144, 138, 0.3), rgba(181, 144, 138, 0.15)) !important;
  border-color: var(--cj-rose) !important;
  color: white !important;
  box-shadow: 
    0 0 40px rgba(181, 144, 138, 0.4),
    inset 0 0 20px rgba(181, 144, 138, 0.1) !important;
}

/* Popular sizes */
.cj-size-btn[data-size="7"],
.cj-size-btn[data-size="8"],
.cj-size-btn[data-size="9"],
.cj-size-btn[data-size="10"] {
  background: rgba(181, 144, 138, 0.1) !important;
  border-color: rgba(181, 144, 138, 0.25) !important;
}

/* ========== INPUT FIELDS - DARK THEME ========== */
.cj-field__input,
.cj-field__select,
.cj-search__input,
.cj-engraving-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border-radius: 12px !important;
}

.cj-field__input:focus,
.cj-field__select:focus,
.cj-search__input:focus,
.cj-engraving-input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--cj-rose) !important;
  box-shadow: 0 0 30px rgba(181, 144, 138, 0.2) !important;
}

.cj-field__input::placeholder,
.cj-search__input::placeholder,
.cj-engraving-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* ========== ENGRAVING SECTION - DARK THEME ========== */
.cj-field--engraving {
  background: rgba(181, 144, 138, 0.08) !important;
  border: 1px solid rgba(181, 144, 138, 0.2) !important;
  border-radius: 20px !important;
}

.cj-engraving-preview {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
}

/* ========== FONT SELECTOR - DARK THEME ========== */
.cj-custom-select .cj-select-trigger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 12px !important;
}

.cj-custom-select .cj-select-trigger:hover,
.cj-custom-select.open .cj-select-trigger {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--cj-rose) !important;
}

.cj-custom-select .cj-select-options {
  background: rgba(20, 30, 30, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-top: none !important;
  backdrop-filter: blur(20px) !important;
}

.cj-custom-select .cj-select-option {
  color: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cj-custom-select .cj-select-option:hover {
  background: rgba(181, 144, 138, 0.15) !important;
  color: white !important;
}

.cj-custom-select .cj-select-option.active {
  background: rgba(181, 144, 138, 0.2) !important;
  color: var(--cj-rose) !important;
  border-left: 3px solid var(--cj-rose) !important;
}

/* ========== CHAR COUNTER - DARK THEME ========== */
.cj-char-counter {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cj-char-counter span {
  color: var(--cj-rose) !important;
}

.cj-engraving-preview .cj-preview-text {
  color: white !important;
  background: transparent !important;
}

.cj-engraving-preview .cj-preview-text:empty::before {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ========== PREVIEW CARD - DARK THEME ========== */
.cj-preview {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
}

.cj-preview__details {
  background: transparent !important;
}

.cj-preview__badge {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-preview__change {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-preview__change:hover {
  background: rgba(181, 144, 138, 0.2) !important;
  color: white !important;
}

/* ========== STYLE SWATCHES - DARK THEME ========== */
.cj-style-swatches {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
}

.cj-style-swatch {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.cj-style-swatch:hover {
  border-color: rgba(181, 144, 138, 0.4) !important;
}

.cj-style-swatch.selected {
  border-color: var(--cj-rose) !important;
  box-shadow: 0 0 30px rgba(181, 144, 138, 0.3) !important;
}

.cj-style-placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* ========== NAV BUTTONS - CLEAN PREMIUM ========== */
.cj-nav {
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 30px !important;
}

.cj-nav__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.cj-nav__btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

.cj-nav__btn--back {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.cj-nav__btn--back:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}

.cj-nav__btn--next {
  background: linear-gradient(135deg, #C9A09A, #E8B4B8) !important;
  border: none !important;
  color: #1a1a1a !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(181, 144, 138, 0.4) !important;
}

.cj-nav__btn--next:hover:not(:disabled) {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(181, 144, 138, 0.5) !important;
}

.cj-nav__btn--next:disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* ========== SEARCH SECTION - DARK THEME ========== */
.cj-search__box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cj-search__tag {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-search__tag:hover {
  background: var(--cj-rose) !important;
  border-color: var(--cj-rose) !important;
  color: white !important;
}

/* ========== CATEGORY CARDS - DARK THEME ========== */
.cj-category {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden !important;
}

.cj-category:hover {
  border-color: rgba(181, 144, 138, 0.4) !important;
  box-shadow: 0 0 40px rgba(181, 144, 138, 0.2) !important;
}

.cj-category__name {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ========== SUMMARY CARDS - DARK THEME ========== */
.cj-summary-cards {
  gap: 20px;
}

.cj-summary-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
}

.cj-summary-card__label {
  color: rgba(255, 255, 255, 0.95) !important;
}

.cj-summary-card__update {
  background: transparent !important;
  border-color: var(--cj-rose) !important;
  color: var(--cj-rose-light) !important;
}

.cj-summary-card__update:hover {
  background: var(--cj-rose) !important;
  color: white !important;
}

.cj-summary-card__info p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ========== PRICING - DARK THEME ========== */
.cj-pricing {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
}

.cj-pricing__row {
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.cj-pricing__row--ring {
  align-items: flex-start !important;
}

.cj-pricing__ring-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cj-pricing__ring-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95) !important;
}

.cj-pricing__ring-details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.6;
  max-width: 350px;
}

.cj-pricing__ring-details span {
  color: #d4a574 !important;
  font-style: italic;
}

.cj-pricing__row--total {
  background: rgba(181, 144, 138, 0.1) !important;
}

.cj-pricing__original {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Summary Cards Dark Theme */
.cj-summary-card {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.cj-summary-card h4 {
  color: rgba(255, 255, 255, 0.95) !important;
}

.cj-summary-card p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-summary-card__price {
  color: var(--cj-rose) !important;
  font-weight: 700;
}

.cj-summary-card__engraving {
  font-style: italic;
  color: #d4a574 !important;
  font-size: 1.1rem !important;
  background: rgba(181, 144, 138, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 8px;
  display: inline-block;
}

/* ========== BENEFITS - DARK THEME ========== */
.cj-benefit {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ========== LOADING - DARK THEME ========== */
.cj-loading {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ========== SIZE GUIDE LINK - DARK THEME ========== */
.cj-size-guide-link,
.cj-tryon-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-size-guide-link:hover,
.cj-tryon-btn:hover {
  background: rgba(181, 144, 138, 0.2) !important;
  border-color: var(--cj-rose) !important;
  color: white !important;
}

/* ========== ANIMATED NAME LABELS ========== */
.cj-progress__label[data-name],
.cj-select__title[data-name] {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cj-animated-name {
  display: inline-block;
  animation: nameReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes nameReveal {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    filter: blur(10px);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ========== SPARKLE ANIMATION FOR NAMES ========== */
.cj-name-sparkle {
  position: relative;
}

.cj-name-sparkle::after {
  content: '✨';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  animation: sparkle 1.5s ease-in-out infinite;
  font-size: 1rem;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: translateY(-50%) scale(0.5); }
  50% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* ========== NO RESULTS - DARK THEME ========== */
.cj-no-results {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cj-no-results__hint {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ========== ALL FIELDS - DARK GLASS ========== */
.cj-field {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
}

.cj-field:hover {
  border-color: rgba(181, 144, 138, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* ========== CUSTOMIZE SECTION - DARK GLASS ========== */
.cj-customize {
  background: rgba(255, 255, 255, 0.02) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 24px !important;
  padding: 30px !important;
}

/* ========== ENGRAVING BADGE FIX ========== */
.cj-field--engraving::before {
  background: linear-gradient(135deg, var(--cj-rose), var(--cj-rose-light)) !important;
  color: white !important;
}

/* ========== MODAL DARK THEME ========== */
.cj-modal__content,
.cj-size-modal__content,
.cj-share-modal__content {
  background: linear-gradient(180deg, #0d1818 0%, #0a1515 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cj-modal__close,
.cj-share-modal__close {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cj-modal__close:hover,
.cj-share-modal__close:hover {
  color: white !important;
}

/* ========== INFINITY ANIMATION TEXT ========== */
.cj-infinity__engraving-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.cj-infinity__engraving-text {
  background: linear-gradient(135deg, rgba(30, 40, 40, 0.95), rgba(20, 30, 30, 0.98)) !important;
  border: 2px solid var(--cj-rose) !important;
  color: #d4a574 !important;
  -webkit-text-fill-color: #d4a574 !important;
  font-size: 1.1rem !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ========================================
   🔥🔥🔥 TRILLION DOLLAR CINEMATIC TRANSITIONS 🔥🔥🔥
   ======================================== */

.cj-cinematic-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a1515 0%, #0d1818 50%, #0a1212 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cj-cinematic-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 30%, rgba(181, 144, 138, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(181, 144, 138, 0.1) 0%, transparent 50%);
  animation: cinematicGlow 2s ease-in-out infinite;
}

@keyframes cinematicGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cj-cinematic-transition.active {
  opacity: 1;
  pointer-events: auto;
}

.cj-cinematic-transition__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  color: transparent;
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2, var(--cj-rose-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  animation: cinematicTextReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 0 60px rgba(181, 144, 138, 0.5);
}

@keyframes cinematicTextReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    filter: blur(20px);
    letter-spacing: 30px;
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
    filter: blur(0);
    letter-spacing: 5px;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: 3px;
  }
}

/* Floating ring icons during transition */
.cj-cinematic-transition::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 4px solid rgba(181, 144, 138, 0.3);
  border-radius: 50%;
  animation: cinematicRingFloat 1.2s ease-out;
  opacity: 0;
}

@keyframes cinematicRingFloat {
  0% {
    transform: scale(0.5) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.5) rotate(0deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(3) rotate(180deg);
    opacity: 0;
  }
}

/* ========================================
   🔥🔥🔥 TRILLION DOLLAR FLYING NAME ANIMATION 🔥🔥🔥
   ======================================== */

.cj-flying-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2, var(--cj-rose-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: none;
  text-shadow: 0 0 40px rgba(181, 144, 138, 0.8);
  animation: flyingNameAppear 0.3s ease-out forwards;
}

@keyframes flyingNameAppear {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2) rotate(0deg);
  }
}

.cj-flying-name.flying {
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: flyingNameTrail 0.8s ease-out;
}

@keyframes flyingNameTrail {
  0% {
    filter: blur(0);
    text-shadow: 0 0 40px rgba(181, 144, 138, 0.8);
  }
  50% {
    filter: blur(2px);
    text-shadow: 
      0 0 60px rgba(181, 144, 138, 1),
      0 20px 40px rgba(181, 144, 138, 0.6),
      0 40px 60px rgba(181, 144, 138, 0.4);
  }
  100% {
    filter: blur(0);
    text-shadow: 0 0 30px rgba(181, 144, 138, 0.6);
  }
}

.cj-flying-name.landed {
  animation: flyingNameLand 0.3s ease-out forwards;
}

@keyframes flyingNameLand {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
    text-shadow: 
      0 0 80px rgba(181, 144, 138, 1),
      0 0 120px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

/* 🔥 NAME EXPLOSION PARTICLES */
.cj-name-particle {
  animation: particleExplode 0.6s ease-out forwards;
}

.cj-name-particle.exploding {
  transform: translate(var(--tx), var(--ty));
  opacity: 0;
}

@keyframes particleExplode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

/* ========== ANIMATED NAME ENHANCEMENTS ========== */
.cj-animated-name {
  display: inline-block;
  animation: nameReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
}

/* Names in buttons - simple text */
.cj-nav__btn .cj-animated-name,
.cj-continue__btn .cj-animated-name {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: currentColor !important;
  background-clip: unset !important;
  color: inherit !important;
}

.cj-name-sparkle {
  position: relative;
}

.cj-name-sparkle::after {
  content: '✨';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  animation: sparkle 2s ease-in-out infinite;
  font-size: 0.8em;
  -webkit-text-fill-color: initial;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: translateY(-50%) scale(0.5); }
  50% { opacity: 1; transform: translateY(-50%) scale(1); }
}

/* 🔥🔥🔥 PROGRESS BAR LABEL ANIMATION 🔥🔥🔥 */
.cj-progress__label.cj-label-updating {
  animation: labelFlashOut 0.2s ease-out forwards;
}

@keyframes labelFlashOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translateY(10px);
  }
}

.cj-progress__label.cj-label-updated {
  animation: labelFlashIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes labelFlashIn {
  0% {
    opacity: 0;
    transform: scale(1.5) translateY(-20px);
    filter: blur(10px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translateY(5px);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* 🔥 NAME GLOW IN PROGRESS BAR */
.cj-name-glow {
  display: inline-block;
  background: linear-gradient(135deg, var(--cj-rose-light), #E8D5D2, var(--cj-rose-light)) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: nameGlowPulse 2s ease-in-out infinite, nameGradientShift 3s ease-in-out infinite !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
}

@keyframes nameGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(181, 144, 138, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(181, 144, 138, 0.8)) drop-shadow(0 0 30px rgba(181, 144, 138, 0.4));
  }
}

@keyframes nameGradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ========== STEP EXIT ANIMATION ========== */
.cj-step.exiting {
  display: block !important;
  animation: cjStepFadeOut 0.4s ease forwards !important;
}

/* ========== CATEGORIES - DARK THEME ========== */
.cj-categories__grid {
  background: transparent !important;
}

.cj-category {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  transition: all 0.4s ease !important;
  overflow: hidden !important;
}

.cj-category:hover .cj-category__icon {
  transform: scale(1.05) !important;
}

.cj-category:hover {
  background: rgba(181, 144, 138, 0.1) !important;
  border-color: rgba(181, 144, 138, 0.3) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(181, 144, 138, 0.15) !important;
}

.cj-category__icon {
  color: var(--cj-rose-light) !important;
}

.cj-category__icon svg {
  stroke: var(--cj-rose-light) !important;
}

.cj-category__name {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ========== LOAD MORE BUTTON - DARK THEME ========== */
.cj-load-more__btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.cj-load-more__btn:hover {
  background: var(--cj-rose) !important;
  border-color: var(--cj-rose) !important;
  color: white !important;
  box-shadow: 0 0 40px rgba(181, 144, 138, 0.4) !important;
}

/* ========================================
   🔥 PROGRESS BAR ANIMATION STYLES 🔥
   ======================================== */
.cj-progress {
  transform-origin: center center;
}

.cj-progress__step {
  transform-origin: center center;
}

/* 🔥 Flying names that land and stay PERMANENTLY */
#flyingName1,
#flyingName2,
.cj-permanent-name {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
  will-change: transform, left, top, opacity, font-size;
  z-index: 999999 !important;
}

/* 🔥 Custom progress bar that builds around names */
#cj-custom-progress {
  font-family: 'Outfit', sans-serif;
}

#cj-custom-progress .cj-custom-step {
  cursor: pointer;
}

#cj-custom-progress .cj-custom-step:hover {
  transform: scale(1.05) !important;
}

/* 🔥 FORCE LABELS TO SHOW ON MOBILE WITH NAMES 🔥 */
@media (max-width: 600px) {
  .cj-progress__label {
    display: block !important;
    font-size: 0.6rem !important;
    margin-top: 4px !important;
  }
  
  .cj-progress__step {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* ========================================
   🔥 NUCLEAR NAME INPUT OVERRIDE - ALL STATES 🔥
   ======================================== */
.cj-names__input,
.cj-names__input:focus,
.cj-names__input:active,
.cj-names__input:hover,
.cj-names__input:valid,
.cj-names__input:invalid,
.cj-names__input:-webkit-autofill,
.cj-names__input:-webkit-autofill:focus,
.cj-names__input:-webkit-autofill:hover,
.cj-names__input:-webkit-autofill:active,
#cjName1Input,
#cjName2Input,
#cjName1Input:focus,
#cjName2Input:focus,
#cjName1Input:active,
#cjName2Input:active,
#cjName1Input:valid,
#cjName2Input:valid {
  background: rgba(20, 35, 35, 0.98) !important;
  background-color: rgba(20, 35, 35, 0.98) !important;
  color: #E8B4B8 !important;
  border: 2px solid rgba(232, 180, 184, 0.4) !important;
  -webkit-text-fill-color: #E8B4B8 !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(20, 35, 35, 0.98) inset !important;
  box-shadow: 0 0 0 1000px rgba(20, 35, 35, 0.98) inset, 0 0 20px rgba(232, 180, 184, 0.2) !important;
  caret-color: #E8B4B8 !important;
}

/* ========================================
   🔥 FIX CORRUPTED CHECKMARKS - USE UNICODE 🔥
   ======================================== */
.cj-category.selected::after,
.cj-product.selected::after,
.cj-style-swatch.active::after,
.cj-size-btn.active::after {
  content: '\2713' !important;
  font-family: Arial, sans-serif !important;
}

/* ========================================
   🔥🔥🔥 BILLION DOLLAR RING LOADER 🔥🔥🔥
   ======================================== */
.cj-cinematic-transition {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  background: radial-gradient(ellipse at center, rgba(15, 25, 25, 0.97) 0%, rgba(8, 12, 12, 0.99) 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.cj-cinematic-transition.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.cj-cinematic-transition.fade-out {
  opacity: 0 !important;
}

.cj-ring-loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Ambient glow behind rings */
.cj-ring-loader__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(181, 144, 138, 0.3) 0%, rgba(181, 144, 138, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: ringLoaderGlow 2s ease-in-out infinite;
}

@keyframes ringLoaderGlow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

/* Ring container */
.cj-ring-loader__rings {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual rings */
.cj-ring-loader__ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 6px solid;
  opacity: 0;
}

.cj-ring-loader__ring--1 {
  border-color: #3a3a3a;
  box-shadow: 
    0 0 30px rgba(60, 60, 60, 0.5),
    inset 0 0 20px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(181, 144, 138, 0.2);
  animation: ringLoader1 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  left: 20px;
}

.cj-ring-loader__ring--2 {
  border-color: #B5908A;
  box-shadow: 
    0 0 30px rgba(181, 144, 138, 0.5),
    inset 0 0 20px rgba(181, 144, 138, 0.2),
    0 0 60px rgba(181, 144, 138, 0.3);
  animation: ringLoader2 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  right: 20px;
}

/* Ring shine effect */
.cj-ring-loader__shine {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  animation: ringShine 2s ease-in-out infinite;
}

@keyframes ringShine {
  0%, 100% { transform: rotate(0deg); opacity: 0.6; }
  50% { transform: rotate(180deg); opacity: 1; }
}

/* Ring 1 animation - comes from left, merges to center */
@keyframes ringLoader1 {
  0% { 
    transform: translateX(-80px) scale(0) rotate(-180deg); 
    opacity: 0; 
  }
  30% { 
    transform: translateX(-40px) scale(1.1) rotate(-60deg); 
    opacity: 1; 
  }
  60% { 
    transform: translateX(10px) scale(1) rotate(0deg); 
    opacity: 1; 
  }
  100% { 
    transform: translateX(10px) scale(1) rotate(0deg); 
    opacity: 1; 
  }
}

/* Ring 2 animation - comes from right, merges to center */
@keyframes ringLoader2 {
  0% { 
    transform: translateX(80px) scale(0) rotate(180deg); 
    opacity: 0; 
  }
  30% { 
    transform: translateX(40px) scale(1.1) rotate(60deg); 
    opacity: 1; 
  }
  60% { 
    transform: translateX(-10px) scale(1) rotate(0deg); 
    opacity: 1; 
  }
  100% { 
    transform: translateX(-10px) scale(1) rotate(0deg); 
    opacity: 1; 
  }
}

/* Sparkles */
.cj-ring-loader__sparkles {
  position: absolute;
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.cj-ring-loader__sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8), 0 0 20px 4px rgba(181, 144, 138, 0.5);
}

.cj-ring-loader__sparkle:nth-child(1) {
  top: 10%; left: 50%;
  animation: sparkle 1.8s ease-out 0.8s forwards;
}
.cj-ring-loader__sparkle:nth-child(2) {
  top: 30%; right: 10%;
  animation: sparkle 1.8s ease-out 1s forwards;
}
.cj-ring-loader__sparkle:nth-child(3) {
  bottom: 30%; right: 15%;
  animation: sparkle 1.8s ease-out 1.1s forwards;
}
.cj-ring-loader__sparkle:nth-child(4) {
  bottom: 10%; left: 50%;
  animation: sparkle 1.8s ease-out 1.2s forwards;
}
.cj-ring-loader__sparkle:nth-child(5) {
  bottom: 30%; left: 15%;
  animation: sparkle 1.8s ease-out 1.3s forwards;
}
.cj-ring-loader__sparkle:nth-child(6) {
  top: 30%; left: 10%;
  animation: sparkle 1.8s ease-out 1.4s forwards;
}

@keyframes sparkle {
  0% { transform: scale(0); opacity: 0; }
  20% { transform: scale(1.5); opacity: 1; }
  40% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(0); opacity: 0; }
}

/* Text below rings */
.cj-ring-loader__text {
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #E8B4B8;
  text-align: center;
  opacity: 0;
  animation: loaderTextAppear 0.8s ease-out 0.6s forwards;
  text-shadow: 0 0 30px rgba(232, 180, 184, 0.5);
  letter-spacing: 2px;
}

@keyframes loaderTextAppear {
  0% { 
    transform: translateY(20px); 
    opacity: 0; 
  }
  100% { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

/* Subtle rotating orbit effect */
.cj-ring-loader__rings::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(181, 144, 138, 0.2);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}

.cj-ring-loader__rings::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(181, 144, 138, 0.1);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite reverse;
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========================================
   💎 BILLION DOLLAR FILTER SIDEBAR - DARK THEME 💎
   ======================================== */

/* Toolbar that opens sidebar */
.cj-filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-filter-toolbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cj-filter-toolbar__right {
  display: flex;
  align-items: center;
}

.cj-filter-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(199, 144, 129, 0.2) 0%, rgba(199, 144, 129, 0.1) 100%);
  border: 1px solid rgba(199, 144, 129, 0.3);
  border-radius: 50px;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-filter-open-btn:hover {
  background: linear-gradient(135deg, #C79081 0%, #DFA579 100%);
  border-color: transparent;
  color: #0D0D0D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 144, 129, 0.4);
}

.cj-filter-open-btn svg {
  opacity: 0.9;
}

.cj-filter-badge {
  background: #C79081;
  color: #0D0D0D;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.cj-product-count {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
}

.cj-product-count strong {
  color: #C79081;
  font-weight: 600;
}

/* Sidebar Overlay */
.cj-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cj-sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Filter Sidebar */
.cj-filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
}

.cj-filter-sidebar.is-open {
  transform: translateX(0);
}

/* Sidebar Header */
.cj-sidebar-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(199, 144, 129, 0.2);
  position: relative;
  overflow: hidden;
}

.cj-sidebar-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(199, 144, 129, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cj-sidebar-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C79081, transparent);
}

.cj-sidebar-header__content {
  position: relative;
  z-index: 1;
}

.cj-sidebar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.cj-sidebar-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #C79081;
  margin: 4px 0 0;
  letter-spacing: 0.05em;
}

.cj-sidebar-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cj-sidebar-close:hover {
  background: #C79081;
  color: #0D0D0D;
  transform: rotate(90deg);
}

/* Sidebar Body */
.cj-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cj-sidebar-body::-webkit-scrollbar {
  width: 6px;
}

.cj-sidebar-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.cj-sidebar-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #C79081, #DFB8B4);
  border-radius: 10px;
}

/* Filter Groups */
.cj-filter-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cj-filter-group:hover {
  border-color: rgba(199, 144, 129, 0.3);
}

.cj-filter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.cj-filter-title:hover {
  color: #C79081;
}

.cj-filter-title svg {
  color: #C79081;
  transition: transform 0.3s ease;
}

.cj-filter-group.collapsed .cj-filter-title svg {
  transform: rotate(-90deg);
}

.cj-filter-group.collapsed .cj-filter-swatches,
.cj-filter-group.collapsed .cj-filter-options {
  display: none;
}

/* Color Swatches */
.cj-filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 20px 20px;
}

.cj-swatch-label {
  cursor: pointer;
  position: relative;
}

.cj-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cj-swatch--all {
  background: conic-gradient(
    #1a1a1a, #C0C0C0, #D4AF37, #B76E79, #1E40AF, #166534, #991B1B, #1a1a1a
  );
}

.cj-swatch-label:hover .cj-swatch {
  transform: translateY(-4px) scale(1.1);
  border-color: rgba(199, 144, 129, 0.8);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cj-swatch-label.active .cj-swatch {
  border-color: #C79081;
  box-shadow: 0 0 0 3px rgba(199, 144, 129, 0.3), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cj-swatch-check {
  display: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cj-swatch-label.active .cj-swatch-check {
  display: block;
}

.cj-swatch-label[data-color]::before {
  content: attr(data-color);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.cj-swatch-label:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Swatch count */
.cj-swatch-count {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.cj-swatch-label.active .cj-swatch-count {
  color: #C79081;
}

/* Filter Options (Checkboxes & Radios) */
.cj-filter-options {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cj-filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-filter-option:hover {
  background: rgba(199, 144, 129, 0.1);
  border-color: rgba(199, 144, 129, 0.2);
}

.cj-filter-input {
  display: none;
}

.cj-checkbox,
.cj-radio {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cj-checkbox {
  border-radius: 6px;
}

.cj-radio {
  border-radius: 50%;
}

.cj-filter-input:checked + .cj-checkbox,
.cj-filter-input:checked + .cj-radio {
  background: linear-gradient(135deg, #C79081, #DFA579);
  border-color: #C79081;
}

.cj-filter-input:checked + .cj-checkbox::after {
  content: '✓';
  color: #0D0D0D;
  font-size: 12px;
  font-weight: 700;
}

.cj-filter-input:checked + .cj-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #0D0D0D;
  border-radius: 50%;
}

.cj-filter-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.cj-filter-option:hover .cj-filter-text,
.cj-filter-input:checked ~ .cj-filter-text,
.cj-filter-option.selected .cj-filter-text {
  color: #fff;
}

/* Selected state for clickable options */
.cj-filter-option.selected {
  background: rgba(199, 144, 129, 0.15) !important;
  border-color: rgba(199, 144, 129, 0.3) !important;
}

.cj-radio.checked {
  background: linear-gradient(135deg, #C79081, #DFA579) !important;
  border-color: #C79081 !important;
}

.cj-radio.checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #0D0D0D;
  border-radius: 50%;
}

/* Sidebar Footer */
.cj-sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(199, 144, 129, 0.2);
  display: flex;
  gap: 12px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
}

.cj-sidebar-clear {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-sidebar-clear:hover {
  border-color: #EF4444;
  color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.cj-sidebar-apply {
  flex: 2;
  padding: 14px 24px;
  background: linear-gradient(135deg, #C79081 0%, #DFA579 100%);
  border: none;
  border-radius: 12px;
  color: #0D0D0D;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(199, 144, 129, 0.4);
}

.cj-sidebar-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199, 144, 129, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .cj-filter-toolbar {
    padding: 12px 0;
    margin-bottom: 16px;
  }
  
  .cj-filter-open-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .cj-filter-sidebar {
    width: 100%;
    max-width: 100%;
  }
}

/* ========================================
   DARK THEME OVERRIDES FOR COLLECTION FILTERS
   Adapts tp-main-collection filters for dark sidebar
   ======================================== */
.cj-filter-sidebar .tp-filter-group,
.cj-sidebar-body .tp-filter-group {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 12px !important;
  box-shadow: none !important;
}

.cj-filter-sidebar .tp-filter-group:hover,
.cj-sidebar-body .tp-filter-group:hover {
  border-color: rgba(199, 144, 129, 0.3) !important;
}

.cj-filter-sidebar .tp-filter-title,
.cj-sidebar-body .tp-filter-title {
  color: #fff !important;
  background: transparent !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

.cj-filter-sidebar .tp-filter-title:hover,
.cj-sidebar-body .tp-filter-title:hover {
  color: #C79081 !important;
}

.cj-filter-sidebar .tp-filter-title svg,
.cj-sidebar-body .tp-filter-title svg {
  color: #C79081 !important;
}

/* Color Swatches in dark sidebar */
.cj-filter-sidebar .tp-filter-swatches,
.cj-sidebar-body .tp-filter-swatches {
  background: transparent !important;
}

.cj-filter-sidebar .tp-swatch-label,
.cj-sidebar-body .tp-swatch-label {
  margin: 4px !important;
}

.cj-filter-sidebar .tp-swatch,
.cj-sidebar-body .tp-swatch {
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.cj-filter-sidebar .tp-swatch-label:hover .tp-swatch,
.cj-sidebar-body .tp-swatch-label:hover .tp-swatch {
  border-color: rgba(199, 144, 129, 0.8) !important;
  transform: translateY(-4px) scale(1.1) !important;
}

.cj-filter-sidebar .tp-swatch-label.active .tp-swatch,
.cj-sidebar-body .tp-swatch-label.active .tp-swatch,
.cj-filter-sidebar .tp-swatch-input:checked + .tp-swatch,
.cj-sidebar-body .tp-swatch-input:checked + .tp-swatch {
  border-color: #C79081 !important;
  box-shadow: 0 0 0 3px rgba(199, 144, 129, 0.3), 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Tooltip in dark mode */
.cj-filter-sidebar .tp-swatch-label[data-color]::before,
.cj-sidebar-body .tp-swatch-label[data-color]::before {
  background: rgba(0, 0, 0, 0.9) !important;
  color: #fff !important;
}

/* Filter Options (checkboxes) in dark sidebar */
.cj-filter-sidebar .tp-filter-options,
.cj-sidebar-body .tp-filter-options {
  background: transparent !important;
}

.cj-filter-sidebar .tp-filter-option-label,
.cj-sidebar-body .tp-filter-option-label {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  margin-bottom: 6px !important;
}

.cj-filter-sidebar .tp-filter-option-label:hover,
.cj-sidebar-body .tp-filter-option-label:hover {
  background: rgba(199, 144, 129, 0.1) !important;
  border-color: rgba(199, 144, 129, 0.2) !important;
}

.cj-filter-sidebar .tp-filter-text,
.cj-sidebar-body .tp-filter-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cj-filter-sidebar .tp-filter-count,
.cj-sidebar-body .tp-filter-count {
  color: rgba(199, 144, 129, 0.8) !important;
}

.cj-filter-sidebar .tp-checkbox-visual,
.cj-sidebar-body .tp-checkbox-visual {
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  background: transparent !important;
  border-radius: 6px !important;
}

.cj-filter-sidebar .tp-filter-input:checked + .tp-checkbox-visual,
.cj-sidebar-body .tp-filter-input:checked + .tp-checkbox-visual {
  background: linear-gradient(135deg, #C79081, #DFA579) !important;
  border-color: #C79081 !important;
}

.cj-filter-sidebar .tp-check-icon,
.cj-sidebar-body .tp-check-icon {
  stroke: #0D0D0D !important;
}

/* Hide elements not needed */
.cj-filter-sidebar .tp-apply-filters,
.cj-filter-sidebar noscript,
.cj-sidebar-body .tp-apply-filters,
.cj-sidebar-body noscript {
  display: none !important;
}

/* Collapsed state */
.cj-filter-sidebar .tp-filter-group.collapsed .tp-filter-swatches,
.cj-filter-sidebar .tp-filter-group.collapsed .tp-filter-options,
.cj-sidebar-body .tp-filter-group.collapsed .tp-filter-swatches,
.cj-sidebar-body .tp-filter-group.collapsed .tp-filter-options {
  display: none !important;
}

.cj-filter-sidebar .tp-filter-group.collapsed .tp-filter-title svg,
.cj-sidebar-body .tp-filter-group.collapsed .tp-filter-title svg {
  transform: rotate(-90deg) !important;
}

/* ========================================
   🔥🔥🔥 NUCLEAR PRODUCT CARD OVERRIDE 🔥🔥🔥
   ======================================== */
.cj-builder .cj-products,
.cj-step .cj-products,
#hisProductsContainer .cj-products,
#herProductsContainer .cj-products,
.cj-products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .cj-products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .cj-products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

.cj-builder .cj-product,
.cj-step .cj-product,
#hisProductsContainer .cj-product,
#herProductsContainer .cj-product,
.cj-product,
div.cj-product {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 0 !important;
  box-shadow: none !important;
  opacity: 0;
  animation: productCardFadeIn 0.5s ease forwards;
}

/* Staggered fade-in delays - 4 columns */
.cj-product:nth-child(1) { animation-delay: 0.03s; }
.cj-product:nth-child(2) { animation-delay: 0.06s; }
.cj-product:nth-child(3) { animation-delay: 0.09s; }
.cj-product:nth-child(4) { animation-delay: 0.12s; }
.cj-product:nth-child(5) { animation-delay: 0.15s; }
.cj-product:nth-child(6) { animation-delay: 0.18s; }
.cj-product:nth-child(7) { animation-delay: 0.21s; }
.cj-product:nth-child(8) { animation-delay: 0.24s; }
.cj-product:nth-child(9) { animation-delay: 0.27s; }
.cj-product:nth-child(10) { animation-delay: 0.30s; }
.cj-product:nth-child(11) { animation-delay: 0.33s; }
.cj-product:nth-child(12) { animation-delay: 0.36s; }
.cj-product:nth-child(13) { animation-delay: 0.39s; }
.cj-product:nth-child(14) { animation-delay: 0.42s; }
.cj-product:nth-child(15) { animation-delay: 0.45s; }
.cj-product:nth-child(16) { animation-delay: 0.48s; }
.cj-product:nth-child(17) { animation-delay: 0.51s; }
.cj-product:nth-child(18) { animation-delay: 0.54s; }
.cj-product:nth-child(19) { animation-delay: 0.57s; }
.cj-product:nth-child(20) { animation-delay: 0.60s; }
.cj-product:nth-child(21) { animation-delay: 0.63s; }
.cj-product:nth-child(22) { animation-delay: 0.66s; }
.cj-product:nth-child(23) { animation-delay: 0.69s; }
.cj-product:nth-child(24) { animation-delay: 0.72s; }
.cj-product:nth-child(n+25) { animation-delay: 0.75s; }

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

.cj-product::before {
  display: none !important;
  content: none !important;
}

.cj-product:hover {
  transform: translateY(-4px) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cj-product.selected {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.cj-product.selected::after {
  content: '\2713' !important;
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 22px !important;
  height: 22px !important;
  background: linear-gradient(135deg, #B5908A, #E8B4B8) !important;
  color: #1a1a1a !important;
  border-radius: 50% !important;
  font-size: 11px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  box-shadow: none !important;
}

.cj-builder .cj-product__img,
.cj-step .cj-product__img,
#hisProductsContainer .cj-product__img,
#herProductsContainer .cj-product__img,
.cj-product__img,
img.cj-product__img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  border-radius: 12px !important;
  object-fit: cover !important;
  margin-bottom: 10px !important;
  background: #f8f8f8 !important;
  border: none !important;
  filter: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cj-product:hover .cj-product__img {
  transform: scale(1.02) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  filter: none !important;
}

.cj-product.selected .cj-product__img {
  border-color: rgba(181, 144, 138, 0.5) !important;
  box-shadow: 0 0 0 2px rgba(181, 144, 138, 0.3) !important;
}

.cj-builder .cj-product__name,
.cj-step .cj-product__name,
.cj-product__name,
div.cj-product__name {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.35 !important;
  margin-bottom: 4px !important;
  text-shadow: none !important;
  background: transparent !important;
}

.cj-builder .cj-product__price,
.cj-step .cj-product__price,
.cj-product__price,
div.cj-product__price {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #E8B4B8 !important;
  text-shadow: none !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Compare at price (strikethrough) */
.cj-product__compare {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: line-through;
}

/* Current price */
.cj-product__current {
  color: #E8B4B8 !important;
}

/* Clickable area */
.cj-product__click {
  cursor: pointer;
}

/* Wishlist heart - matches collection page */
.cj-product__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: scale(0.7);
}
.cj-product:hover .cj-product__wishlist {
  opacity: 1;
  transform: scale(1);
}
.cj-product__wishlist:hover {
  background: linear-gradient(135deg, #C79081, #A67B6D);
  transform: scale(1.15) !important;
  box-shadow: 0 8px 30px rgba(199, 144, 129, 0.5);
}
.cj-product__wishlist svg {
  width: 18px;
  height: 18px;
  fill: #DFB8B4;
  stroke: #DFB8B4;
  stroke-width: 2;
  transition: all 0.3s ease;
}
.cj-product__wishlist:hover svg {
  fill: white;
  stroke: white;
  transform: scale(1.1);
}
.cj-product__wishlist.active {
  background: linear-gradient(135deg, #C79081, #A67B6D);
  opacity: 1;
  transform: scale(1);
}
.cj-product__wishlist.active svg {
  fill: white;
  stroke: white;
}

/* Load more button */
.cj-load-more__btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-size: 0.85rem !important;
}

.cj-load-more__btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

/* ========================================
   🔥 SIDEBAR FILTER - EXACT COPY FROM COLLECTION PAGE 🔥
   ======================================== */

.tp-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tp-sidebar-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.tp-collection-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  z-index: 99999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #FDFCFB;
  box-shadow: 5px 0 25px rgba(0,0,0,0.15);
}

.tp-collection-sidebar.is-open {
  transform: translateX(0);
}

/* Sidebar Header */
.tp-sidebar-header {
  background: linear-gradient(135deg, #4A6A6A 0%, #5A7B7B 50%, #4A6A6A 100%);
  padding: 20px 20px 18px 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tp-sidebar-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(199, 144, 129, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.tp-sidebar-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(199, 144, 129, 0.3), rgba(223, 184, 180, 0.8), rgba(199, 144, 129, 0.3), transparent);
  background-size: 200% 100%;
  animation: shimmerLine 3s ease-in-out infinite;
}

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

.tp-sidebar-header__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.tp-sidebar-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #F7F2EE;
  margin: 0;
  padding: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.tp-sidebar-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #DFB8B4;
  margin-top: 6px;
}

.tp-sidebar-close {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: #5A7B7B;
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.tp-sidebar-close:hover {
  background: #fff;
  color: #C79081;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(199, 144, 129, 0.3);
}

/* Sidebar Body */
.tp-sidebar-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  background: linear-gradient(180deg, #FDFCFB 0%, #F7F2EE 100%);
}

/* Sidebar Footer */
.tp-sidebar-footer {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  background: linear-gradient(180deg, #F7F2EE 0%, #EDE5DF 100%);
  flex-shrink: 0;
  position: relative;
}

.tp-sidebar-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 144, 129, 0.3), transparent);
}

.tp-sidebar-footer__clear {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(199, 144, 129, 0.2);
  background: white;
  border-radius: 14px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.tp-sidebar-footer__clear:hover {
  border-color: #EF4444;
  color: #EF4444;
  background: #FEF2F2;
}

.tp-sidebar-footer__apply {
  flex: 2;
  padding: 1rem 1.5rem;
  border: none;
  background: linear-gradient(135deg, #C79081 0%, #DFB8B4 50%, #C79081 100%);
  border-radius: 14px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tp-sidebar-footer__apply:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(199, 144, 129, 0.4);
}

/* Filter Groups */
.tp-filter-group {
  border-bottom: none;
  padding: 0;
  margin-bottom: 14px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(199, 144, 129, 0.08);
}

.tp-filter-group:hover {
  box-shadow: 0 8px 25px rgba(199, 144, 129, 0.12);
  transform: translateX(4px);
}

.tp-filter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2F2F2C;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.tp-filter-title:hover {
  color: #C79081;
  padding-left: 24px;
}

.tp-filter-title svg {
  transition: all 0.4s ease;
  color: #C79081;
  background: rgba(199, 144, 129, 0.1);
  padding: 5px;
  border-radius: 6px;
  width: 24px;
  height: 24px;
}

.tp-filter-group.collapsed .tp-filter-title svg {
  transform: rotate(-90deg);
}

.tp-filter-group.collapsed .tp-filter-options,
.tp-filter-group.collapsed .tp-filter-swatches {
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  overflow: hidden;
}

/* Filter Options */
.tp-filter-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px 20px 20px;
  max-height: 400px;
  opacity: 1;
  transition: all 0.4s ease;
}

.tp-filter-option-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3D3D3D;
  padding: 14px 16px;
  margin: 0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: white;
  border: 2px solid rgba(199, 144, 129, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tp-filter-option-label:hover {
  background: white;
  border-color: rgba(199, 144, 129, 0.25);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(199, 144, 129, 0.15);
}

.tp-filter-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.tp-checkbox-visual {
  width: 26px;
  height: 26px;
  border: 2px solid #D1D5DB;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  background: white;
}

.tp-filter-option-label:hover .tp-checkbox-visual {
  border-color: #C79081;
  transform: scale(1.1);
}

.tp-check-icon {
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0);
}

.tp-filter-input:checked + .tp-checkbox-visual {
  background: linear-gradient(135deg, #C79081 0%, #DFB8B4 50%, #C79081 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(199, 144, 129, 0.5);
  transform: scale(1.1);
}

.tp-filter-input:checked + .tp-checkbox-visual .tp-check-icon {
  opacity: 1;
  transform: scale(1);
}

.tp-filter-option-label:has(.tp-filter-input:checked) {
  background: linear-gradient(135deg, rgba(199, 144, 129, 0.12) 0%, rgba(223, 184, 180, 0.08) 100%);
  border-color: rgba(199, 144, 129, 0.35);
  font-weight: 600;
  transform: translateX(6px);
}

.tp-filter-text {
  flex: 1;
  min-width: 0;
}

/* Color Swatches */
.tp-filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 8px 20px 22px;
  max-height: 400px;
  opacity: 1;
  transition: all 0.4s ease;
}

.tp-swatch-label {
  cursor: pointer;
  position: relative;
}

.tp-swatch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.tp-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.tp-swatch-label:hover .tp-swatch {
  transform: translateY(-6px) scale(1.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(199, 144, 129, 0.3);
}

.tp-swatch-label.active .tp-swatch,
.tp-swatch-input:checked + .tp-swatch {
  transform: translateY(-4px) scale(1.1);
  border-color: #C79081;
  box-shadow: 0 10px 30px rgba(199, 144, 129, 0.4), 0 0 20px rgba(199, 144, 129, 0.3);
}

.tp-swatch-check {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

/* Swatch tooltip */
.tp-swatch-label[data-color]::before {
  content: attr(data-color);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: linear-gradient(135deg, #4A6A6A, #5A7B7B);
  color: #F7F2EE;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tp-swatch-label:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========================================
   🔥 SIZE GUIDE & TRY ON MODALS 🔥
   ======================================== */
.cj-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cj-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cj-modal {
  background: linear-gradient(135deg, #1a2a2a 0%, #0d1818 100%);
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-modal-overlay.open .cj-modal {
  transform: scale(1) translateY(0);
}

.cj-modal__header {
  background: linear-gradient(135deg, var(--cj-teal) 0%, var(--cj-teal-light) 100%);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.cj-modal__header--tryon {
  background: linear-gradient(135deg, #C79081 0%, #DFA579 100%);
}

.cj-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cj-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.cj-modal__icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.cj-modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: white;
  margin: 0 0 0.5rem;
}

.cj-modal__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.95rem;
}

.cj-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: 50vh;
  color: rgba(255, 255, 255, 0.9);
}

.cj-size-method {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-size-method h3 {
  font-size: 1rem;
  margin: 0 0 0.75rem;
  color: var(--cj-rose);
}

.cj-size-method ol {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.cj-size-chart {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-size-chart h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--cj-rose);
  text-align: center;
}

.cj-size-chart__grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cj-size-chart__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.cj-size-chart__row--header {
  background: var(--cj-rose);
  color: white;
  font-weight: 600;
}

.cj-size-chart__row:not(.cj-size-chart__row--header) {
  background: rgba(255, 255, 255, 0.03);
}

.cj-size-chart__row:not(.cj-size-chart__row--header):nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

.cj-size-tip {
  background: linear-gradient(135deg, rgba(199, 144, 129, 0.2) 0%, rgba(199, 144, 129, 0.1) 100%);
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.85rem;
  border-left: 4px solid var(--cj-rose);
}

.cj-modal__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-modal__btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--cj-rose) 0%, #C49A94 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-modal__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(181, 144, 138, 0.4);
}

/* Try On Modal Specific */
.cj-tryon-preview {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.cj-tryon-hand {
  position: relative;
  width: 150px;
}

.cj-tryon-hand-svg {
  width: 100%;
  height: auto;
}

.cj-tryon-ring-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.cj-tryon-ring-position {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}

.cj-tryon-ring-overlay {
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.cj-tryon-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}

.cj-tryon-ar-note {
  background: rgba(199, 144, 129, 0.15);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cj-tryon-ar-badge {
  background: linear-gradient(135deg, #C79081, #DFA579);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.cj-tryon-ar-note p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   🔥 RING 2 SEARCH PANEL - BILLION DOLLAR
   ======================================== */
.cj-ring2-search {
  margin-bottom: 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.98));
  border: 1px solid rgba(181, 144, 138, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cj-ring2-search__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cj-ring2-search__toggle:hover {
  background: rgba(181, 144, 138, 0.1);
}

.cj-ring2-search__icon {
  width: 22px;
  height: 22px;
  color: #E8B4B8;
  flex-shrink: 0;
}

.cj-ring2-search__toggle-text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #E8B4B8, #D4A574, #E8B4B8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s ease infinite;
}

@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.cj-ring2-search__chevron {
  width: 20px;
  height: 20px;
  color: #E8B4B8;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cj-ring2-search.expanded .cj-ring2-search__chevron {
  transform: rotate(180deg);
}

.cj-ring2-search__content {
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}

.cj-ring2-search.expanded .cj-ring2-search__content {
  max-height: 500px;
  padding: 0 24px 24px;
}

.cj-ring2-search__box {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.cj-ring2-search__input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(181, 144, 138, 0.3);
  border-radius: 50px;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.cj-ring2-search__input:focus {
  outline: none;
  border-color: #E8B4B8;
  box-shadow: 0 0 0 4px rgba(232, 180, 184, 0.2), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cj-ring2-search__input::placeholder {
  color: #888;
}

.cj-ring2-search__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #B5908A, #D4A574);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(181, 144, 138, 0.4);
}

.cj-ring2-search__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(181, 144, 138, 0.5);
}

.cj-ring2-search__btn svg {
  width: 22px;
  height: 22px;
}

.cj-ring2-search__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cj-ring2-search__quick-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cj-ring2-search__tag {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(181, 144, 138, 0.4);
  background: rgba(181, 144, 138, 0.15);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 500;
}

.cj-ring2-search__tag:hover {
  background: linear-gradient(135deg, #B5908A, #D4A574);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 144, 138, 0.4);
}

.cj-ring2-search__section-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.cj-ring2-search__categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.cj-ring2-search__cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  white-space: nowrap;
}

.cj-ring2-search__cat-btn:hover {
  background: linear-gradient(135deg, #B5908A, #D4A574);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(181, 144, 138, 0.4);
}

.cj-ring2-search__cat-btn--all {
  background: linear-gradient(135deg, rgba(181, 144, 138, 0.3), rgba(212, 165, 116, 0.3));
  border-color: rgba(181, 144, 138, 0.5);
  grid-column: span 2;
}

.cj-ring2-search__cat-btn--all:hover {
  background: linear-gradient(135deg, #B5908A, #D4A574);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cj-ring2-search__toggle {
    padding: 16px 18px;
  }
  
  .cj-ring2-search__toggle-text {
    font-size: 0.9rem;
  }
  
  .cj-ring2-search__quick {
    justify-content: flex-start;
  }
  
  .cj-ring2-search__tag {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .cj-ring2-search__categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cj-ring2-search__cat-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .cj-ring2-search__cat-btn--all {
    grid-column: span 2;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   💎 BILLION DOLLAR FILTER UI - LUXURY EDITION 💎
   ═══════════════════════════════════════════════════════════════════════════ */

.cj-filter-wrapper { display: none !important; }

/* ═══ FILTER BAR - HERO COMPONENT ═══ */
.cj-filter-bar {
  width: 100%;
  margin: 0 0 32px 0;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #181614 0%, #0d0c0b 100%);
  border: 1px solid rgba(199, 144, 129, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.cj-filter-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 144, 129, 0.4), transparent);
}

/* Toggle Button */
.cj-filter-bar__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cj-filter-bar__toggle:hover {
  background: linear-gradient(135deg, rgba(199, 144, 129, 0.08) 0%, transparent 100%);
}

.cj-filter-bar__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C79081 0%, #A6726A 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(199, 144, 129, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cj-filter-bar__icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.cj-filter-bar__toggle:hover .cj-filter-bar__icon {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 15px 40px rgba(199, 144, 129, 0.5);
}

.cj-filter-bar__text {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cj-filter-bar__count {
  display: none;
  padding: 8px 18px;
  background: linear-gradient(135deg, #C79081, #DFB8B4);
  color: #0d0c0b;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.cj-filter-bar__arrow {
  margin-left: auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  transition: all 0.4s ease;
}

.cj-filter-bar__arrow svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cj-filter-bar__toggle:hover .cj-filter-bar__arrow {
  background: rgba(199, 144, 129, 0.12);
}

.cj-filter-bar__toggle:hover .cj-filter-bar__arrow svg {
  color: #C79081;
}

.cj-filter-bar.is-open .cj-filter-bar__arrow svg {
  transform: rotate(180deg);
}

/* Content Panel */
.cj-filter-bar__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cj-filter-bar.is-open .cj-filter-bar__content {
  max-height: 3000px;
  opacity: 1;
  padding: 0 24px 28px;
}

/* Clear Button */
.cj-filter-bar__content .cj-filter-clear,
.cj-filter-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 18px;
  background: transparent;
  border: 2px solid rgba(199, 144, 129, 0.2);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
}

.cj-filter-clear:hover {
  background: rgba(199, 144, 129, 0.1);
  border-color: rgba(199, 144, 129, 0.4);
  color: #DFB8B4;
}

.cj-filter-clear svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.cj-filter-clear:hover svg {
  transform: rotate(90deg);
}

/* ═══ FILTER CONTAINER ═══ */
.cj-filter-bar .cj-filter-container,
#hisFilterContainer,
#herFilterContainer,
[id$="FilterContainer"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ═══ FILTER GROUPS - HORIZONTAL SECTIONS ═══ */
[id$="FilterContainer"] .tp-filter-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  margin: 0 0 16px 0;
  overflow: hidden;
}

/* Filter Titles - Inline Headers */
[id$="FilterContainer"] .tp-filter-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #C79081;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

[id$="FilterContainer"] .tp-filter-title svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

[id$="FilterContainer"] .tp-filter-group.collapsed .tp-filter-title svg {
  transform: rotate(-90deg);
}

/* ═══ COLOR SWATCHES - HORIZONTAL STRIP ═══ */
[id$="FilterContainer"] .tp-filter-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px 20px;
  justify-content: flex-start;
}

[id$="FilterContainer"] .tp-swatch-label {
  cursor: pointer;
  position: relative;
}

[id$="FilterContainer"] .tp-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

[id$="FilterContainer"] .tp-swatch-label:hover .tp-swatch {
  transform: translateY(-6px) scale(1.2);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(199, 144, 129, 0.3);
}

[id$="FilterContainer"] .tp-swatch-input:checked + .tp-swatch {
  border-color: #C79081;
  transform: scale(1.15);
  box-shadow: 
    0 0 0 4px rgba(199, 144, 129, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(199, 144, 129, 0.35);
}

[id$="FilterContainer"] .tp-swatch-check {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

[id$="FilterContainer"] .tp-swatch-input:checked + .tp-swatch .tp-swatch-check {
  opacity: 1;
  transform: scale(1);
}

/* ═══ FILTER OPTIONS - HORIZONTAL CHIPS ═══ */
[id$="FilterContainer"] .tp-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px 20px 20px;
}

/* CHIP STYLE LABELS */
[id$="FilterContainer"] .tp-filter-option-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

[id$="FilterContainer"] .tp-filter-option-label:hover {
  background: rgba(199, 144, 129, 0.1);
  border-color: rgba(199, 144, 129, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hide checkbox, show as chip */
[id$="FilterContainer"] .tp-filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[id$="FilterContainer"] .tp-checkbox-visual {
  display: none;
}

[id$="FilterContainer"] .tp-filter-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

[id$="FilterContainer"] .tp-filter-option-label:hover .tp-filter-text {
  color: #fff;
}

/* Count Badge */
[id$="FilterContainer"] .tp-filter-count {
  background: rgba(199, 144, 129, 0.2);
  color: #C79081;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

[id$="FilterContainer"] .tp-filter-option-label:hover .tp-filter-count {
  background: rgba(199, 144, 129, 0.3);
}

/* SELECTED STATE - GLOWING CHIP */
[id$="FilterContainer"] .tp-filter-option-label:has(.tp-filter-input:checked) {
  background: linear-gradient(135deg, rgba(199, 144, 129, 0.25) 0%, rgba(199, 144, 129, 0.15) 100%);
  border-color: rgba(199, 144, 129, 0.5);
  box-shadow: 
    0 0 20px rgba(199, 144, 129, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.3);
}

[id$="FilterContainer"] .tp-filter-option-label:has(.tp-filter-input:checked) .tp-filter-text {
  color: #DFB8B4;
  font-weight: 600;
}

[id$="FilterContainer"] .tp-filter-option-label:has(.tp-filter-input:checked) .tp-filter-count {
  background: linear-gradient(135deg, #C79081, #DFB8B4);
  color: #0d0c0b;
}

/* ═══ LOADING STATE ═══ */
.cj-filter-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.cj-filter-loading .cj-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(199, 144, 129, 0.15);
  border-top-color: #C79081;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
  .cj-filter-bar__toggle {
    padding: 18px 20px;
    gap: 14px;
  }
  
  .cj-filter-bar__icon {
    width: 48px;
    height: 48px;
  }
  
  .cj-filter-bar__text {
    font-size: 1.1rem;
  }
  
  .cj-filter-bar.is-open .cj-filter-bar__content {
    padding: 0 16px 20px;
  }
  
  [id$="FilterContainer"] .tp-filter-options {
    gap: 8px;
    padding: 8px 16px 16px;
  }
  
  [id$="FilterContainer"] .tp-filter-option-label {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  [id$="FilterContainer"] .tp-swatch {
    width: 38px;
    height: 38px;
  }
  
  [id$="FilterContainer"] .tp-filter-swatches {
    gap: 8px;
    padding: 10px 16px 16px;
  }
}

/* ═══ FORCE HORIZONTAL LAYOUT OVERRIDES ═══ */
[id$="FilterContainer"] .tp-filter-group {
  display: block !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 14px !important;
}

[id$="FilterContainer"] .tp-filter-title {
  padding: 14px 18px 6px !important;
  margin: 0 !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.12em !important;
}

[id$="FilterContainer"] .tp-filter-options {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 6px 18px 14px !important;
  margin: 0 !important;
}

[id$="FilterContainer"] .tp-filter-option-label {
  display: inline-flex !important;
  flex-direction: row !important;
  width: auto !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border-radius: 100px !important;
}

[id$="FilterContainer"] .tp-filter-swatches {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  padding: 6px 18px 14px !important;
}

[id$="FilterContainer"] .tp-swatch {
  width: 38px !important;
  height: 38px !important;
}

/* Compact spacing for filter bar content */
.cj-filter-bar.is-open .cj-filter-bar__content {
  padding: 16px 20px 20px !important;
}

.cj-filter-bar .cj-filter-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

/* ═══ FLOATING QUOTE SVG ICONS ═══ */
.cj-floating-quote .cj-quote-icon {
  display: inline-block;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  vertical-align: middle;
  margin: 0 4px;
  opacity: 0.7;
}

.cj-floating-quote .cj-quote-icon path {
  fill: currentColor;
}

.cj-floating-quote .cj-quote-icon circle {
  fill: none;
  stroke: currentColor;
}
