/* ==========================================================================
   SHOW MED CONFECÇÕES - ATELIER & HAUTE COUTURE EDITORIAL STYLES
   ========================================================================== */

:root {
  --gold: #E5C058;
  --gold-light: #FFF2C5;
  --gold-muted: #B39130;
  --dark: #080B11;
  --card: #161F30;
  --border: rgba(229, 192, 88, 0.25);
}

/* Custom Selection */
::selection {
  background-color: var(--gold);
  color: #000000;
}

/* Background Atmosphere */
body {
  background-color: #080B11;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 192, 88, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 100% 50%, rgba(217, 130, 85, 0.06) 0%, transparent 55%);
  color: #FFFFFF;
}

/* Text Shadow & Glow Helpers for Enhanced Readability */
.text-shadow-glow {
  text-shadow: 0 0 35px rgba(229, 192, 88, 0.2), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.text-shadow-subtle {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* Luxury Card Hover Micro-Interactions */
.luxury-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
}

.luxury-card:hover {
  transform: translateY(-5px);
}

/* Option Interactive Cards in Calculator */
.option-interactive-card {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(15, 21, 35, 0.9);
  transition: all 0.25s ease;
  user-select: none;
}

.option-interactive-card .custom-checkbox {
  background-color: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.option-interactive-card .custom-checkbox .check-icon {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Active State for Option Cards */
.option-interactive-card.active {
  border-color: var(--gold) !important;
  background-color: rgba(229, 192, 88, 0.15) !important;
  box-shadow: 0 0 20px rgba(229, 192, 88, 0.2);
  transform: translateY(-2px);
}

.option-interactive-card.active .custom-checkbox {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.option-interactive-card.active .custom-checkbox .check-icon {
  opacity: 1 !important;
}

/* Quote Selection Active State */
.quote-type-btn.active {
  border-color: var(--gold) !important;
  background-color: rgba(229, 192, 88, 0.18) !important;
  box-shadow: 0 0 25px rgba(229, 192, 88, 0.25);
}

/* Custom Gold Range Slider */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(229, 192, 88, 0.8);
  border: 2px solid #ffffff;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(229, 192, 88, 0.8);
  border: 2px solid #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: #080B11;
}

::-webkit-scrollbar-thumb {
  background: #232E42;
  border-radius: 4px;
}

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