/* ==========================================================================
   Manoj Car Accessories - Luxury Light Theme Stylesheet
   ========================================================================== */

:root {
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cinzel', serif;
  
  --color-gold-50: #fffbeb;
  --color-gold-100: #fef3c7;
  --color-gold-200: #fde68a;
  --color-gold-300: #fcd34d;
  --color-gold-400: #fbbf24;
  --color-gold-500: #f59e0b;
  --color-gold-600: #d97706;
  --color-gold-700: #b45309;
  --color-gold-800: #92400e;
  
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
}

body {
  font-family: var(--font-primary);
  color: #1e293b;
  background-color: #f8fafc;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

.font-luxury {
  font-family: var(--font-serif);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Gold Gradient Utilities */
.bg-gold-gradient {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #b45309 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #b45309 0%, #d97706 50%, #78350f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gold-gradient {
  border-image: linear-gradient(to right, #d97706, #fbbf24, #b45309) 1;
}

/* Glassmorphism Light */
.glass-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

.glass-badge {
  background: rgba(254, 243, 199, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Card Hover Elevation */
.luxury-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.luxury-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(217, 119, 6, 0.2);
}

/* Shimmer Light effect for CTA */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(30deg);
  animation: shimmer 4s infinite linear;
}

/* Pulse Glow */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(217, 119, 6, 0); }
}

.pulse-gold {
  animation: goldPulse 2s infinite;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

/* Custom Checkbox Design in Quote Builder */
.quote-card-select {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.quote-card-select:hover {
  border-color: #cbd5e1;
  background-color: #f8fafc;
}

.quote-card-select.selected {
  border-color: #d97706;
  background-color: #fffbeb;
  box-shadow: 0 4px 12px -2px rgba(217, 119, 6, 0.15);
}

/* Luxury FAQ Accordion */
.faq-item {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-item.active {
  border-color: #d97706 !important;
  box-shadow: 0 12px 24px -6px rgba(217, 119, 6, 0.1), 0 0 0 1px rgba(217, 119, 6, 0.2);
  background-color: #ffffff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 500px;
  opacity: 1;
}

.faq-item .faq-icon-wrapper {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  background-color: #d97706;
  color: #ffffff;
}

.faq-item .faq-num {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-num {
  background-color: #d97706;
  color: #ffffff;
}


/* Hero Background Pattern */
.bg-grid-pattern {
  background-image: radial-gradient(rgba(203, 213, 225, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Subtle image overlay hover */
.product-image-container {
  overflow: hidden;
}
.product-image-container img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.luxury-card:hover .product-image-container img {
  transform: scale(1.06);
}

/* Badge gold */
.badge-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
}

/* Badge dark */
.badge-dark {
  background: #0f172a;
  color: #f8fafc;
}

/* Hide scrollbar for category tabs */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

/* Responsive & Mobile Touch Optimization */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

button, a, input, select, textarea {
  touch-action: manipulation;
}

/* Mobile Safe Area Handling */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .floating-actions {
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}


