/* ============================================================
   GEETHAM ART GALLERY - LUXURY DIVINE WHITE & GOLD SPECIFICATION
   Background: #FFFFFF (Pure White)
   Primary Gold: #D4AF37
   Dark Gold: #B8860B
   Text Color: #1E3A2F (Dark Green)
   Border: 2px solid #D4AF37
   Fonts: Poppins (Body) / Playfair Display (Serif Headings)
   ============================================================ */

body {
  background-color: #FFFFFF !important;
  color: #1E3A2F;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}
.font-sans{
  font-family: 'Poppins', sans-serif;
}

/* Clear, High-Legibility Price Font (Overrides serif for price numbers & Rupee symbol) */
.price-display,
.price-text,
[data-price],
#view-art-price,
#custom-est-price,
#stat-total-spent,
.price-val {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
}

/* Brand Colors Utility Shortcuts */
.bg-pure-white { background-color: #FFFFFF !important; }
.bg-darkgreen { background-color: #1E3A2F !important; }
.bg-darkgreen-deep { background-color: #0F291E !important; }
.text-darkgreen { color: #1E3A2F !important; }
.text-gold-primary { color: #D4AF37 !important; }
.text-gold-dark { color: #B8860B !important; }

/* 2px Solid Gold Borders */
.border-gold-2 {
  border: 2px solid #D4AF37 !important;
}

.border-gold-dark-2 {
  border: 2px solid #B8860B !important;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 40%, #996515 70%, #D4AF37 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gold Gradient Button */
.gold-gradient-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E08C 50%, #B8860B 100%) !important;
  color: #1E3A2F !important;
  border: 2px solid #D4AF37 !important;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.gold-gradient-btn:hover {
  background: linear-gradient(135deg, #F5E08C 0%, #FFFFFF 50%, #D4AF37 100%) !important;
  color: #0F291E !important;
  border-color: #B8860B !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
  transform: translateY(-2px);
}

/* Dark Green Button */
.darkgreen-btn {
  background-color: #1E3A2F !important;
  color: #FCD31C !important;
  border: 2px solid #D4AF37 !important;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(30, 58, 47, 0.2);
}

.darkgreen-btn:hover {
  background-color: #0F291E !important;
  color: #FFFFFF !important;
  border-color: #B8860B !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 41, 30, 0.3);
}

/* Glass & Card Panels */
.glass-panel {
  background-color: #FFFFFF !important;
  border: 2px solid #D4AF37 !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
}

.glass-card {
  background-color: #FFFFFF !important;
  border: 2px solid #D4AF37 !important;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: #B8860B !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Section Header Badges */
.section-badge {
  background-color: #0F291E !important;
  color: #FCD31C !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 9999px;
  padding: 8px 30px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(15, 41, 30, 0.25);
  white-space: nowrap;
}

/* Mandala Background Pattern */
.mandala-bg {
  background-color: #FAF7F0 !important;
  background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.tanjore-frame-shadow {
  box-shadow: 0 8px 24px rgba(30, 58, 47, 0.18), 0 0 15px rgba(212, 175, 55, 0.4);
}

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

::-webkit-scrollbar-track {
  background: #FFFFFF;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #B8860B;
}

/* Custom Range Slider */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #D4AF37;
  border: 2px solid #1E3A2F;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

/* Step Circles */
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.step-circle.active {
  background: linear-gradient(135deg, #D4AF37 0%, #F5E08C 100%) !important;
  color: #1E3A2F !important;
  border: 2px solid #B8860B !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.step-circle.completed {
  background: #FAF6EE !important;
  border: 2px solid #D4AF37 !important;
  color: #1E3A2F !important;
}

.step-circle.pending {
  background: #FFFFFF !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #64748B !important;
}

/* Inputs & Form Controls */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
  background-color: #FFFFFF !important;
  color: #1E3A2F !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 12px;
}

input:focus, textarea:focus {
  outline: none !important;
  border-color: #B8860B !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.25) !important;
}

select {
  background-color: #FFFFFF !important;
  color: #1E3A2F !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
  font-weight: 600 !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23B8860B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 14px 14px !important;
  padding-right: 32px !important;
  transition: all 0.2s ease !important;
}

select:hover {
  border-color: #B8860B !important;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25) !important;
}

select:focus {
  outline: none !important;
  border-color: #B8860B !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25) !important;
}

/* Luxury Dropdown Options Menu Popup Styling */
select option {
  background-color: #0F291E !important;
  color: #F7D37E !important;
  padding: 12px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: 'Poppins', sans-serif !important;
}

select option:hover,
select option:focus,
select option:active,
select option:checked {
  background-color: #D4AF37 !important;
  color: #0F291E !important;
  font-weight: 700 !important;
}

/* Custom Floating Luxury Dropdown Menu Popover */
.custom-select-wrapper {
  position: relative;
}

.custom-select-trigger {
  background-color: #FFFFFF !important;
  color: #1E3A2F !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 12px !important;
  padding: 6px 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
  transition: all 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: #B8860B !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #0F291E !important;
  border: 2px solid #D4AF37 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(15, 41, 30, 0.4), 0 0 12px rgba(212, 175, 55, 0.3) !important;
  padding: 4px !important;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.custom-select-options.open {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.custom-select-option {
  padding: 8px 12px !important;
  color: #F7D37E !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.15s ease;
}

.custom-select-option:hover,
.custom-select-option.selected {
  background-color: #D4AF37 !important;
  color: #0F291E !important;
  font-weight: 700 !important;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  .hero-btn-group {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hero-btn-group a {
    width: 100% !important;
    justify-content: center !important;
  }

  .glass-card:hover {
    transform: none !important;
  }
  .section-badge {
    font-size: 0.75rem !important;
    padding: 6px 14px !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    text-align: center !important;
    max-width: 92vw !important;
    box-sizing: border-box !important;
  }
}

