/* ==========================================================================
   COMPONENTS: PRODUCT CARDS, POPULAR PICKS, ENQUIRY DRAWER, TOASTS & MODALS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SECTION COMMONS & WRAPPERS
   -------------------------------------------------------------------------- */
.section-wrapper {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.section-header-center h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.section-header-center p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   2. TRUST / VALUE HIGHLIGHTS STRIP
   -------------------------------------------------------------------------- */
.trust-highlights-section {
  padding: 1.5rem 0;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.trust-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.trust-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(13, 19, 32, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.trust-highlight-item:hover {
  border-color: var(--border-gold-medium);
  transform: translateY(-3px);
  background: rgba(20, 28, 48, 0.88);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.trust-item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.trust-item-text h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.trust-item-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.25;
}

@media (max-width: 992px) {
  .trust-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-highlights-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* --------------------------------------------------------------------------
   3. CATEGORIES SHOWCASE GRID
   -------------------------------------------------------------------------- */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-showcase-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.category-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-medium);
  box-shadow: var(--shadow-gold-glow);
  background: var(--bg-navy-card-hover);
}

.cat-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  transition: transform var(--transition-fast);
}

.category-showcase-card:hover .cat-card-icon {
  transform: scale(1.15);
}

.cat-card-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.cat-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 0.75rem;
  font-size: 0.8125rem;
}

.cat-card-count {
  color: var(--color-gold-400);
  font-weight: 600;
}

.cat-card-link {
  color: var(--text-secondary);
  font-weight: 600;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.category-showcase-card:hover .cat-card-link {
  color: var(--color-gold-300);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .categories-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .categories-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   4. POPULAR PICKS COMPACT HORIZONTAL CAROUSEL
   -------------------------------------------------------------------------- */
.popular-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 -0.5rem;
}

.popular-carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem;
  cursor: grab;
}

.popular-carousel-viewport:active {
  cursor: grabbing;
}

.popular-carousel-track {
  display: flex;
  transition: transform 0.45s var(--ease-spring);
  will-change: transform;
}

.carousel-slide-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0.5rem;
}

@media (max-width: 1199px) {
  .carousel-slide-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 899px) {
  .carousel-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 599px) {
  .carousel-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.25rem;
  }
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(14, 20, 34, 0.9);
  border: 1px solid var(--border-gold-medium);
  color: var(--color-gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--color-gold-500);
  color: #070A10;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.carousel-nav-btn.prev { left: -18px; }
.carousel-nav-btn.next { right: -18px; }

@media (max-width: 768px) {
  .carousel-nav-btn { display: none; }
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 24px;
  background: var(--grad-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* --------------------------------------------------------------------------
   5. LUXURY PRODUCT CARD ARCHITECTURE
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1199px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 899px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-medium);
  box-shadow: var(--shadow-gold-glow);
  background: var(--bg-navy-card-hover);
}

.card-visual {
  height: 120px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.1) 0%, rgba(10, 14, 23, 0.8) 70%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.95rem;
  overflow: hidden;
}

.cracker-icon-wrapper {
  transition: transform var(--transition-fast);
}

.product-card:hover .cracker-icon-wrapper {
  transform: scale(1.15);
}

.cracker-symbol {
  font-size: 3rem;
  filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.3));
}

.card-sno-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: var(--color-gold-300);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.card-sno-pill.card-new-pill {
  background: rgba(245, 158, 11, 0.22);
  color: #FDE68A;
  border-color: rgba(245, 158, 11, 0.5);
  letter-spacing: 0.03em;
}

.card-savings-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.product-tamil-title {
  font-size: 0.8125rem;
  color: var(--color-gold-300);
  margin-bottom: 0.5rem;
}

.product-pack-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
}

.pack-label { color: var(--text-muted); }
.pack-value { color: var(--text-secondary); font-weight: 600; }

.pricing-container {
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  margin-top: auto;
  margin-bottom: 0.95rem;
}

.reference-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.reference-price-val {
  text-decoration: line-through;
}

.offer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offer-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
}

.selling-price-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-gold-400);
}

.subtle-savings-label {
  font-size: 0.6875rem;
  color: var(--color-emerald-light);
  font-weight: 600;
  text-align: right;
  margin-top: 0.15rem;
}

.btn-detail-link {
  background: transparent;
  border: 1px solid var(--border-glass-light);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  padding: 0.45rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-detail-link:hover {
  background: var(--bg-navy-surface);
  color: #FFFFFF;
  border-color: var(--color-gold-400);
}

/* Card Stepper when in Enquiry */
.card-enquiry-stepper-wrap {
  width: 100%;
}

.card-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold-medium);
  border-radius: var(--radius-sm);
  padding: 2px 4px;
}

.card-stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: var(--bg-navy-surface);
  color: var(--color-gold-300);
  border: 1px solid var(--border-glass);
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.card-stepper-btn:hover {
  background: var(--color-gold-500);
  color: #070A10;
}

.card-stepper-val {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold-300);
}

/* --------------------------------------------------------------------------
   6. BULK & CORPORATE PURCHASES SECTION (3 ELEGANT CARDS)
   -------------------------------------------------------------------------- */
.bulk-corporate-section {
  padding: 4rem 0;
  background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.08) 0%, var(--bg-deep) 70%);
  border-bottom: 1px solid var(--border-glass);
}

.bulk-3cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bulk-purchase-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.bulk-purchase-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-medium);
  box-shadow: var(--shadow-gold-glow);
  background: var(--bg-navy-card-hover);
}

.bulk-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bulk-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.bulk-purchase-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.bulk-purchase-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

@media (max-width: 900px) {
  .bulk-3cards-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   7. WHY FIREZA GRID
   -------------------------------------------------------------------------- */
.why-fireza-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-medium);
  box-shadow: var(--shadow-gold-glow);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .why-fireza-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .why-fireza-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   8. ENQUIRY & PRE-FOOTER CTA SECTION
   -------------------------------------------------------------------------- */
.enquiry-cta-section {
  padding: 4rem 0;
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.12) 0%, rgba(7, 10, 16, 0.98) 70%);
  border-bottom: 1px solid var(--border-glass);
}

.enquiry-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.enquiry-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.enquiry-cta-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.enquiry-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.policy-strip-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-gold-medium);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.policy-strip-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.policy-strip-text h4 {
  font-size: 0.9375rem;
  color: var(--color-gold-300);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.policy-strip-text p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   9. SLIDE-OUT ENQUIRY DRAWER (ROBUST INDEPENDENT SCROLL & STICKY ACTIONS)
   -------------------------------------------------------------------------- */
body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-overlay-click {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.enquiry-drawer-panel {
  position: fixed;
  top: 0;
  right: -560px;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  height: 100dvh;
  background: #080C14;
  border-left: 1px solid var(--border-gold-subtle);
  z-index: 101;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.85);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.drawer-backdrop.active .enquiry-drawer-panel {
  right: 0;
}

.drawer-header {
  flex-shrink: 0;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 26, 0.98);
  z-index: 5;
}

.drawer-header-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-gold-300);
  letter-spacing: -0.01em;
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color var(--transition-fast);
}

.drawer-close-btn:hover {
  color: #FFFFFF;
}

.drawer-body-container {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.drawer-scrollable-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Subtle thin gold custom scrollbar */
.drawer-scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.drawer-scrollable-content::-webkit-scrollbar-track {
  background: rgba(8, 12, 20, 0.6);
}

.drawer-scrollable-content::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.35);
  border-radius: 4px;
}

.drawer-scrollable-content::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 158, 11, 0.65);
}

/* Minimum Enquiry Progress Card */
.enquiry-progress-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.enquiry-progress-card.met {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.08);
}

.enquiry-progress-card.pending {
  border-color: rgba(245, 158, 11, 0.35);
}

.progress-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar-fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
  transition: width 0.4s var(--ease-spring);
}

.enquiry-progress-card.met .progress-bar-fill {
  background: var(--grad-whatsapp);
}

.status-badge-met {
  color: var(--color-emerald-light);
  font-size: 0.775rem;
  font-weight: 700;
}

.status-badge-pending {
  color: var(--color-gold-300);
  font-size: 0.775rem;
  font-weight: 600;
}

/* Customer Type Selector */
.enquiry-section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold-300);
  margin-bottom: 0.5rem;
}

.customer-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.type-pill-btn {
  background: var(--bg-navy-surface);
  border: 1px solid var(--border-glass-light);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.type-pill-btn:hover {
  border-color: var(--color-gold-400);
  color: #FFFFFF;
}

.type-pill-btn.active {
  background: var(--grad-gold);
  color: #070A10;
  border-color: var(--color-gold-400);
  font-weight: 700;
}

.details-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.drawer-input {
  width: 100%;
  background: var(--bg-navy-surface);
  border: 1px solid var(--border-glass-light);
  color: #FFFFFF;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  outline: none;
}

.drawer-input:focus {
  border-color: var(--color-gold-500);
}

/* Selected Items in Drawer */
.enquiry-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.enquiry-item-card {
  background: var(--bg-navy-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.enquiry-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.enquiry-item-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.enquiry-item-tamil {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gold-300);
}

.enquiry-item-unit {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.enquiry-remove-btn {
  background: none;
  border: none;
  color: var(--color-crimson-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.35rem;
  line-height: 1;
}

.enquiry-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.enquiry-item-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xs);
}

.stepper-btn {
  width: 26px;
  height: 26px;
  background: none;
  border: none;
  color: var(--color-gold-400);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.stepper-val {
  padding: 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.enquiry-item-price-wrap {
  text-align: right;
}

.enquiry-rate-breakdown {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.enquiry-item-subtotal {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-gold-400);
}

.clear-all-link {
  background: none;
  border: none;
  color: var(--color-crimson-light);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
}

.enquiry-summary-box {
  background: rgba(10, 14, 23, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.summary-row.highlight {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  border-top: 1px solid var(--border-glass);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.disclaimer-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.drawer-footer-actions {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-gold-subtle);
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.disabled-btn {
  opacity: 0.6;
  filter: grayscale(0.4);
}

.btn-locked-pdf {
  background: rgba(30, 41, 59, 0.6);
  border: 1px dashed rgba(148, 163, 184, 0.35);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  transition: all var(--transition-normal);
}

.btn-locked-pdf:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--color-gold-400);
  color: var(--color-gold-300);
}

.btn-unlock-animated {
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid var(--color-gold-400);
  color: #FDE68A;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
  animation: pulseGoldGlow 3s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
}

.btn-unlock-animated:hover {
  background: rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

@keyframes pulseGoldGlow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
    border-color: #FBBF24;
  }
}

/* Badge count Bump animation */
.enquiry-badge-count {
  background: var(--color-crimson);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  margin-left: 0.35rem;
  display: inline-flex;
}

.badge-bump {
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.fireza-toast {
  background: rgba(14, 20, 34, 0.95);
  border: 1px solid var(--border-gold-medium);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.28s var(--ease-spring);
  pointer-events: auto;
}

.fireza-toast.toast-show {
  transform: translateY(0);
  opacity: 1;
}

/* Compact Floating / Sticky Enquiry Bar (Never Covers Main Content) */
.mobile-sticky-enquiry-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 440px;
  background: rgba(10, 14, 23, 0.92);
  border: 1px solid var(--border-gold-medium);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.15rem;
  z-index: 45;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  transition: all var(--transition-normal);
}

.mobile-sticky-enquiry-bar.active {
  display: block;
}

.mobile-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-sticky-left {
  cursor: pointer;
}

.mobile-sticky-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #FFFFFF;
}

.mobile-sticky-val {
  color: var(--color-gold-400);
  font-weight: 800;
}

.mobile-sticky-status {
  font-size: 0.7rem;
}

.status-met { color: var(--color-emerald-light); font-weight: 700; }
.status-pending { color: var(--color-gold-300); font-weight: 600; }

@media (max-width: 768px) {
  .mobile-sticky-enquiry-bar {
    bottom: 68px;
    left: 12px;
    right: 12px;
    max-width: none;
    padding: 0.65rem 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   10. FULL-WIDTH 3-COLUMN / 4-COLUMN FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #040609;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  color: var(--text-secondary);
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--color-gold-300);
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-gold-300);
}

.footer-quicklinks-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
}

.legal-notice-text {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 992px) {
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid-4col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-navy-dark);
  border: 1px solid var(--border-gold-medium);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-spring);
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
}

.product-modal-visual {
  background: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.15) 0%, rgba(10, 14, 23, 0.8) 70%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.large-symbol {
  font-size: 4rem;
}

.modal-product-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.modal-tamil-title {
  font-size: 1rem;
  color: var(--color-gold-300);
  margin-bottom: 1rem;
}

.modal-specs-table {
  background: var(--bg-navy-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row.highlight-row {
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.spec-label { color: var(--text-muted); }
.spec-val { color: #FFFFFF; }

.safety-advisory-box {
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.safety-advisory-box h4 {
  font-size: 0.8125rem;
  color: var(--color-crimson-light);
  margin-bottom: 0.2rem;
}

.safety-advisory-box p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.modal-action-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.min-modal-box {
  background: var(--bg-navy-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.min-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
  .modal-container {
    padding: 1.25rem;
    max-height: 92vh;
  }
  .policy-strip-box {
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .policy-strip-icon {
    font-size: 1.35rem;
  }
  .policy-strip-text h4 {
    font-size: 0.85rem;
  }
  .policy-strip-text p {
    font-size: 0.75rem;
  }
  .enquiry-drawer-panel {
    right: -100%;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0;
  }
  .drawer-header {
    padding: 0.85rem 1rem;
  }
  .drawer-scrollable-content {
    padding: 0.85rem;
  }
  .drawer-footer-actions {
    padding: 0.85rem 1rem;
  }
  .customer-type-options {
    gap: 0.35rem;
  }
  .type-pill-btn {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }
  .popular-picks-cta-row {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .popular-picks-cta-row .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   20. DEDICATED SPA PAGES & LEGAL VIEW STYLES
   -------------------------------------------------------------------------- */
.legal-page-section {
  padding: 3rem 0 5rem;
  background: var(--bg-navy-dark);
  min-height: 80vh;
}

.legal-page-container {
  max-width: 960px;
  margin: 0 auto;
}

.legal-page-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.legal-page-header .legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold-subtle);
  color: var(--color-gold-400);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.legal-page-header h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
  background: var(--grad-gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-page-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.legal-card-glass {
  background: rgba(13, 19, 32, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.legal-card-glass h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-card-glass h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold-400);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-card-glass p {
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-card-glass ul, .legal-card-glass ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-card-glass li {
  margin-bottom: 0.5rem;
}

.legal-highlight-box {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-gold-500);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-highlight-box p {
  margin-bottom: 0;
  color: #F1F5F9;
  font-weight: 500;
}

.legal-danger-box {
  background: rgba(225, 29, 72, 0.1);
  border-left: 4px solid #E11D48;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-danger-box p {
  margin-bottom: 0;
  color: #F1F5F9;
  font-weight: 500;
}

/* FAQ Grid & Cards */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.faq-card {
  background: rgba(13, 19, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: all var(--transition-normal);
}

.faq-card:hover {
  border-color: var(--border-gold-medium);
  background: rgba(20, 28, 48, 0.95);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.faq-num-badge {
  background: var(--grad-gold);
  color: #070A10;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.65;
  padding-left: 2.2rem;
}

.faq-answer strong {
  color: #E2E8F0;
}

/* 5-Step What FIREZA Does Grid */
.what-fireza-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.what-card {
  background: rgba(13, 19, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.what-card:hover {
  border-color: var(--border-gold-medium);
  transform: translateY(-4px);
  background: rgba(20, 28, 48, 0.9);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

.what-card-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.what-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.what-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-bottom: 0;
}

/* 6-Step How Enquiry Works Grid */
.how-it-works-6grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .how-it-works-6grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .what-fireza-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .how-it-works-6grid {
    grid-template-columns: 1fr;
  }
  .what-fireza-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-card-glass {
    padding: 1.25rem;
  }
  .faq-card {
    padding: 1.25rem;
  }
  .faq-answer {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}

