/* Bhavani Cooling Solutions - Flipkart E-Commerce Design System (Mobile-First & Desktop Responsive) */

:root {
  --fk-blue: #2874f0;
  --fk-blue-dark: #1a56db;
  --fk-yellow: #ffe11b;
  --fk-orange: #fb641b;
  --fk-amber: #ff9f00;
  --fk-green: #388e3c;
  --fk-light-green: #e8f5e9;
  --fk-bg: #f1f3f6;
  --fk-card-bg: #ffffff;
  --fk-text: #212121;
  --fk-text-secondary: #878787;
  --fk-border: #e0e0e0;
  --fk-whatsapp: #25d366;
  --fk-shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --fk-shadow-md: 0 2px 10px rgba(0, 0, 0, 0.12);
  --fk-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --bottom-nav-height: 58px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  /* scroll-behavior smooth removed to prevent page jumping */
  scroll-behavior: auto;
}

body {
  font-family: var(--font-family);
  background-color: var(--fk-bg);
  color: var(--fk-text);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 10px));
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 600px) {
  .container {
    padding: 0 10px;
  }
}

/* --- Top Notice Bar --- */
.top-notice-bar {
  background: #172337;
  color: #c2c2c2;
  font-size: 12px;
  padding: 6px 0;
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.notice-pill {
  background: #ff9f00;
  color: #000;
  font-weight: 800;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
}

.notice-contact a {
  color: #ffe11b;
  font-weight: 600;
  margin-left: 8px;
}

@media (max-width: 600px) {
  .top-notice-bar {
    font-size: 11px;
    padding: 4px 0;
  }
  .notice-contact {
    display: none;
  }
}

/* --- Main Header --- */
.main-header {
  background-color: var(--fk-blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Brand Logo */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-header-flex {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-width: 100%;
}

.brand-emblem-badge {
  background: #ffffff;
  border-radius: 6px;
  padding: 2px 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-emblem-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.brand-emblem-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Cinzel Decorative', 'Metamorphous', Georgia, serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
}

.brand-title-img {
  height: 22px;
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
}

.brand-subtext {
  font-size: 10.5px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-weight: 700;
}

.brand-subtext .brand-tagline {
  color: #ffffff;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.4px;
}

.brand-subtext .brand-24h-pill {
  background: #16a34a;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 540px;
  position: relative;
  margin: 0 12px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  height: 38px;
  padding: 0 12px;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--fk-text);
  padding: 6px 0;
  background: transparent;
}

.search-input-wrap input::placeholder {
  color: #878787;
  font-size: 13px;
}

.search-btn {
  background: none;
  color: var(--fk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

/* Autocomplete Dropdown */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: var(--fk-shadow-lg);
  max-height: 360px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
  border: 1px solid var(--fk-border);
  border-top: none;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-item:hover {
  background: #f8f9fa;
}

.search-item img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  background: #f1f3f6;
}

.search-item-info {
  flex: 1;
}

.search-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fk-text);
}

.search-item-price {
  font-size: 12px;
  color: var(--fk-green);
  font-weight: 700;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cart-label-desktop {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-left: 2px;
}

.location-picker-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 7px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.location-picker-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.location-picker-btn.location-static-display {
  cursor: default;
  user-select: none;
}

.location-picker-btn.location-static-display:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: none;
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.header-action-btn:hover {
  opacity: 0.9;
}

.header-action-btn.btn-book-service {
  background-color: var(--fk-amber);
  color: #212121;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.header-action-btn.btn-book-service:hover {
  background-color: #f39700;
}

.cart-badge {
  position: absolute;
  top: 1px;
  left: 20px;
  background: #ff6161;
  color: #fff;
  border: 2px solid var(--fk-blue);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Header for Mobile Devices */
@media (max-width: 768px) {
  .main-header {
    padding: 8px 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: auto;
    gap: 8px 0;
  }

  .brand-logo-wrap {
    order: 1;
  }

  .location-picker-btn {
    order: 2;
    padding: 5px 8px;
    font-size: 11px;
    margin: 0 4px;
  }

  .location-picker-btn span {
    max-width: 85px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions {
    order: 3;
    gap: 6px;
  }

  .header-actions .btn-book-service {
    display: none; /* Accessible in bottom nav */
  }

  .cart-label-desktop {
    display: none;
  }

  .header-search {
    order: 4;
    max-width: 100%;
    width: 100%;
    margin: 4px 0 0 0;
  }

  .search-input-wrap {
    height: 38px;
  }
}

/* --- Category Navigation Strip --- */
.category-nav-strip {
  background: #fff;
  border-bottom: 1px solid var(--fk-border);
  box-shadow: var(--fk-shadow-sm);
  position: sticky;
  top: 64px;
  z-index: 990;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .category-nav-strip {
    top: 92px;
  }
}

.category-nav-strip::-webkit-scrollbar {
  display: none;
}

.category-nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
  min-width: max-content;
}

.category-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: none;
  border-radius: 6px;
  color: var(--fk-text);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.category-nav-item .cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fk-blue);
  transition: transform 0.2s;
}

.category-nav-item:hover .cat-icon,
.category-nav-item.active .cat-icon {
  background: var(--fk-blue);
  color: #fff;
  transform: translateY(-2px);
}

.category-nav-item.active {
  color: var(--fk-blue);
  font-weight: 700;
}

.category-nav-item .cat-label {
  font-size: 11px;
}

/* --- Hero Banner Carousel --- */
.hero-carousel-section {
  padding: 14px 0 10px 0;
}

.carousel-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--fk-shadow-md);
  background: #fff;
  touch-action: pan-y;
}

.carousel-slides {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 36px;
  background: linear-gradient(135deg, #0d3880 0%, #1a56db 60%, #3b82f6 100%);
  color: #fff;
  position: relative;
  min-height: 250px;
}

.carousel-slide.slide-2 {
  background: linear-gradient(135deg, #064e3b 0%, #059669 60%, #10b981 100%);
}

.carousel-slide.slide-3 {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 60%, #ea580c 100%);
}

.carousel-slide.slide-4 {
  background: linear-gradient(135deg, #31104b 0%, #6b21a8 60%, #9333ea 100%);
}

.slide-content {
  max-width: 580px;
  z-index: 2;
}

.slide-badge {
  display: inline-block;
  background: var(--fk-yellow);
  color: #000;
  font-weight: 800;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.slide-desc {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 16px;
  line-height: 1.35;
}

.slide-cta-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.slide-btn-primary {
  background: var(--fk-orange);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
}

.slide-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}

.slide-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-visual img {
  max-width: 280px;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--fk-shadow-md);
  border-radius: 4px;
}

.carousel-btn.prev {
  left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.carousel-btn.next {
  right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: #fff;
  width: 20px;
  border-radius: 10px;
}

@media (max-width: 680px) {
  .carousel-slide {
    padding: 20px 16px 36px 16px;
    flex-direction: column;
    text-align: left;
    min-height: 220px;
  }

  .slide-title {
    font-size: 20px;
  }

  .slide-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .slide-visual {
    display: none; /* Hide heavy side image on mobile hero to keep cards ultra-responsive */
  }

  .carousel-btn {
    display: none; /* On mobile use touch swipe/dots */
  }

  .slide-btn-primary, .slide-btn-secondary {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* --- Quick Value Props Strip --- */
.value-props-strip {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 14px;
  box-shadow: var(--fk-shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-prop-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-prop-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--fk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-prop-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fk-text);
  line-height: 1.2;
}

.value-prop-text p {
  font-size: 11px;
  color: var(--fk-text-secondary);
}

@media (max-width: 768px) {
  .value-props-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }
}

/* --- Deal of the Day Banner --- */
.deal-of-day-card {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--fk-shadow-sm);
  overflow: hidden;
}

.deal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fk-border);
  gap: 10px;
}

.deal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.deal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--fk-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-box {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff4e5;
  border: 1px solid #ffcc80;
  color: #e65100;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.view-all-deal-btn {
  background: var(--fk-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 3px;
  text-transform: uppercase;
}

.deals-row {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.deal-item-mini {
  flex: 0 0 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  cursor: pointer;
  background: #fafafa;
}

.deal-item-mini img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}

.deal-item-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fk-text);
  margin-bottom: 4px;
  height: 32px;
  overflow: hidden;
}

.deal-item-discount {
  font-size: 12px;
  color: var(--fk-green);
  font-weight: 700;
}

.deal-item-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--fk-text);
}

/* --- Mobile Sticky Sort & Filter Action Bar --- */
.mobile-sticky-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: sticky;
    top: 136px;
    z-index: 980;
    background: #fff;
    border-bottom: 1px solid var(--fk-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
  }

  .mobile-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fk-text);
    background: #fff;
    border-right: 1px solid var(--fk-border);
  }

  .mobile-bar-btn:last-child {
    border-right: none;
  }

  .filter-active-count {
    background: var(--fk-blue);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    border-radius: 10px;
    padding: 1px 6px;
  }
}

/* --- Main Layout: Filter Sidebar + Catalog --- */
.main-catalog-layout {
  display: block;
  margin-bottom: 24px;
}

/* Filters Sidebar (Desktop) */
.filters-sidebar {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--fk-shadow-sm);
  padding: 16px;
  position: sticky;
  top: 130px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fk-border);
  margin-bottom: 14px;
}

.filters-header h3 {
  font-size: 16px;
  font-weight: 800;
}

.btn-clear-filters {
  background: none;
  color: var(--fk-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-group {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #878787;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.filter-option-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fk-text);
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-option-label input[type="checkbox"],
.filter-option-label input[type="radio"] {
  accent-color: var(--fk-blue);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.price-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-slider-wrap input[type="range"] {
  accent-color: var(--fk-blue);
  width: 100%;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--fk-text-secondary);
  font-weight: 600;
}

/* Mobile Off-Canvas Filter Drawer */
@media (max-width: 768px) {
  .main-catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    max-height: 100vh;
    z-index: 2500;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .filters-sidebar.open {
    transform: translateX(0);
  }

  .filters-header {
    padding: 16px;
    margin-bottom: 0;
    background: var(--fk-blue);
    color: #fff;
  }

  .filters-header h3 {
    color: #fff;
  }

  .btn-clear-filters {
    color: var(--fk-yellow);
  }

  .filters-scroll-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
  }

  .mobile-filters-footer {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--fk-border);
  }

  .btn-apply-filters-mobile {
    flex: 1;
    background: var(--fk-orange);
    color: #fff;
    padding: 12px;
    font-weight: 800;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
  }
}

/* Catalog Main Panel */
.catalog-content-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Sorting & Catalog Header */
.catalog-header-bar {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--fk-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-title-area h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--fk-text);
}

.catalog-item-count {
  font-size: 12px;
  color: var(--fk-text-secondary);
  font-weight: 500;
}

.sort-options-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.sort-label {
  font-weight: 700;
  color: #878787;
}

.sort-btn {
  background: none;
  color: var(--fk-text);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 6px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.sort-btn:hover {
  color: var(--fk-blue);
}

.sort-btn.active {
  color: var(--fk-blue);
  font-weight: 700;
  border-bottom-color: var(--fk-blue);
}

@media (max-width: 768px) {
  .catalog-header-bar {
    padding: 10px 12px;
  }
  .sort-options-bar {
    display: none; /* Accessible via mobile sticky sort bar */
  }
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Flipkart-Style Product Card */
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--fk-shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fk-shadow-md);
}

.card-top-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #212121;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.card-top-tag.tag-green {
  background: var(--fk-green);
}

.card-top-tag.tag-orange {
  background: var(--fk-orange);
}

.card-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2c2c2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
  color: #ff4343;
}

.product-img-wrap {
  padding: 16px 12px 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: #fafafa;
  cursor: pointer;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  color: #878787;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fk-text);
  line-height: 1.3;
  margin-bottom: 6px;
  height: 34px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  cursor: pointer;
}

.product-title:hover {
  color: var(--fk-blue);
}

.rating-and-assured {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.rating-badge {
  background: var(--fk-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-count {
  font-size: 11px;
  color: var(--fk-text-secondary);
}

.assured-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #e8f0fe;
  color: var(--fk-blue);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 2px;
  margin-left: auto;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--fk-text);
}

.original-mrp {
  font-size: 12px;
  color: var(--fk-text-secondary);
  text-decoration: line-through;
}

.discount-tag {
  font-size: 12px;
  color: var(--fk-green);
  font-weight: 700;
}

.product-perks {
  font-size: 11px;
  color: #388e3c;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-perks span {
  color: #212121;
  font-weight: 400;
}

.card-features-list {
  font-size: 11px;
  color: #555;
  margin-bottom: 10px;
  padding-left: 14px;
  line-height: 1.35;
}

.card-actions-wrap {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

.btn-card-cart {
  background: var(--fk-amber);
  color: #212121;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 36px;
}

.btn-card-buy {
  background: var(--fk-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 36px;
}

@media (max-width: 600px) {
  .product-img-wrap {
    height: 120px;
    padding: 8px;
  }
  .product-img-wrap img {
    max-height: 100px;
  }
  .product-card-body {
    padding: 8px;
  }
  .product-title {
    font-size: 12px;
    height: 32px;
  }
  .current-price {
    font-size: 15px;
  }
  .original-mrp {
    font-size: 11px;
  }
  .discount-tag {
    font-size: 11px;
  }
  .card-features-list {
    display: none; /* Hide bullets on mobile 2-col to keep cards clean and compact */
  }
  .product-perks {
    display: none;
  }
  .card-actions-wrap {
    grid-template-columns: 1fr;
  }
  .btn-card-buy {
    display: none; /* On mobile cards, single prominent Add to Cart button */
  }
  .btn-card-cart {
    width: 100%;
    padding: 6px;
    font-size: 12px;
  }
}

/* --- Doorstep Service Booking Section --- */
.service-section-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--fk-shadow-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.section-title-wrap {
  margin-bottom: 16px;
}

.section-badge {
  display: inline-block;
  background: #e8f0fe;
  color: var(--fk-blue);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-main-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--fk-text);
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--fk-text-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.service-card {
  border: 1px solid var(--fk-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.service-badge {
  background: #e8f5e9;
  color: var(--fk-green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  align-self: flex-start;
  margin-bottom: 6px;
}

.service-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--fk-text-secondary);
  margin-bottom: 8px;
}

.service-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.service-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--fk-text);
}

.service-mrp {
  font-size: 12px;
  color: var(--fk-text-secondary);
  text-decoration: line-through;
}

.service-card ul {
  font-size: 12px;
  color: #4b5563;
  padding-left: 14px;
  margin-bottom: 14px;
  line-height: 1.35;
  flex: 1;
}

.btn-book-now-srv {
  background: var(--fk-blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px;
  border-radius: 4px;
  text-align: center;
}

/* --- AMC Packages Grid --- */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.amc-card {
  border: 1px solid var(--fk-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #fafafa;
  position: relative;
  display: flex;
  flex-direction: column;
}

.amc-card.featured {
  background: #fff;
  border: 2px solid var(--fk-blue);
  box-shadow: var(--fk-shadow-md);
}

.amc-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--fk-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.amc-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 2px;
}

.amc-sub {
  font-size: 12px;
  color: var(--fk-text-secondary);
  margin-bottom: 10px;
}

.amc-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--fk-text);
  margin-bottom: 12px;
}

.amc-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--fk-text-secondary);
}

.amc-card ul {
  font-size: 12px;
  color: #374151;
  padding-left: 16px;
  margin-bottom: 16px;
  line-height: 1.45;
  flex: 1;
}

.btn-select-amc {
  background: #fff;
  border: 1px solid var(--fk-blue);
  color: var(--fk-blue);
  font-weight: 700;
  padding: 9px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .amc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* --- Old AC Exchange Banner Section --- */
.exchange-promo-card {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: var(--radius-md);
  color: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: var(--fk-shadow-md);
  flex-wrap: wrap;
  gap: 14px;
}

.exchange-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.exchange-info p {
  font-size: 13px;
  color: #bfdbfe;
  max-width: 650px;
}

.btn-open-exchange-calc {
  background: var(--fk-yellow);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* --- Testimonials Showcase --- */
.testimonials-section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--fk-shadow-sm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.testimonial-card {
  border: 1px solid var(--fk-border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: #fafafa;
}

.testimonial-user-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.test-user-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--fk-text);
}

.test-user-loc {
  font-size: 11px;
  color: var(--fk-text-secondary);
}

.testimonial-text {
  font-size: 12px;
  color: #4b5563;
  line-height: 1.4;
  margin-top: 6px;
  font-style: italic;
}

/* --- Vizag Branch Locations & Trust Strip --- */
.branches-trust-strip {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: var(--fk-shadow-sm);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.branch-card {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--fk-border);
  background: #fcfcfc;
}

.branch-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--fk-blue);
  margin-bottom: 4px;
}

.branch-card p {
  font-size: 12px;
  color: var(--fk-text-secondary);
  line-height: 1.35;
  margin-bottom: 6px;
}

.branch-card .branch-phone {
  font-size: 12px;
  font-weight: 700;
  color: var(--fk-text);
}

@media (max-width: 768px) {
  .branches-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
.site-footer {
  background: #172337;
  color: #fff;
  padding: 30px 0 20px 0;
  font-size: 12px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2d3b4e;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #878787;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #fff;
}

.footer-col ul li a:hover {
  color: var(--fk-yellow);
}

.footer-col p {
  color: #c2c2c2;
  line-height: 1.45;
  margin-bottom: 8px;
}

.footer-bottom-bar {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #878787;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

@media (max-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Bottom Navigation Bar (Flipkart Style) --- */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: #fff;
    border-top: 1px solid var(--fk-border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1500;
    justify-content: space-around;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .nav-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    color: #717478;
    font-size: 10px;
    font-weight: 600;
    gap: 2px;
    padding: 6px 10px;
    position: relative;
    flex: 1;
  }

  .nav-tab-btn.active {
    color: var(--fk-blue);
  }

  .nav-tab-btn svg {
    width: 20px;
    height: 20px;
  }

  .nav-cart-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 16px);
    background: #ff6161;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
  }
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--fk-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 1400;
  transition: transform 0.2s;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: calc(var(--bottom-nav-height) + 14px);
    right: 14px;
    width: 48px;
    height: 48px;
  }
}

/* --- Slide-Out Cart Drawer --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-backdrop.open {
  display: block !important;
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 2001;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--fk-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fk-blue);
  color: #fff;
}

.cart-drawer-header h3 {
  font-size: 15px;
  font-weight: 700;
}

.btn-close-cart {
  background: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--fk-shadow-sm);
  display: flex;
  gap: 10px;
}

.cart-item-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  background: #f1f3f6;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.3;
}

.cart-item-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 800;
}

.cart-item-mrp {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--fk-text-secondary);
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--fk-border);
  border-radius: 2px;
  background: #fff;
}

.btn-qty {
  width: 24px;
  height: 24px;
  background: none;
  font-weight: 700;
  color: var(--fk-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-display {
  width: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.btn-cart-remove {
  background: none;
  color: #ff3e3e;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.cart-empty-state {
  text-align: center;
  padding: 50px 16px;
  color: var(--fk-text-secondary);
}

.cart-coupon-wrap {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: var(--fk-shadow-sm);
  display: flex;
  gap: 6px;
}

.cart-coupon-wrap input {
  flex: 1;
  border: 1px solid var(--fk-border);
  padding: 8px;
  border-radius: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.btn-apply-coupon {
  background: var(--fk-blue);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 0 12px;
  border-radius: 2px;
}

.cart-price-summary {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  box-shadow: var(--fk-shadow-sm);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: #555;
}

.summary-row.savings {
  color: var(--fk-green);
  font-weight: 600;
}

.summary-row.total-row {
  font-size: 15px;
  font-weight: 800;
  color: var(--fk-text);
  border-top: 1px dashed var(--fk-border);
  padding-top: 8px;
  margin-top: 8px;
}

.cart-drawer-footer {
  padding: 14px;
  background: #fff;
  border-top: 1px solid var(--fk-border);
}

.btn-checkout-now {
  width: 100%;
  background: var(--fk-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Modals: Mobile-First Bottom-Sheet & Desktop Centered --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--fk-shadow-lg);
  position: relative;
  transform: scale(0.96);
  transition: transform 0.25s ease;
  pointer-events: auto;
}

.modal-backdrop:not(.open) .modal-card {
  pointer-events: none !important;
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

@media (max-width: 768px) {
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-card {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    max-height: 85vh;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  }

  .modal-backdrop.open .modal-card {
    transform: translateY(0);
  }

  .mobile-drag-handle {
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 4px;
    margin: 10px auto 4px auto;
  }
}

.btn-close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f1f3f6;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #555;
  z-index: 10;
}

.modal-content-padding {
  padding: 24px;
}

@media (max-width: 600px) {
  .modal-content-padding {
    padding: 18px 14px;
  }
}

/* Product Detail Modal View & Multi-POV Gallery */
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
}

.modal-img-col {
  display: flex;
  flex-direction: column;
}

.modal-main-img-wrap {
  position: relative;
  width: 100%;
  background: #f8fafc;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  max-height: 280px;
  border: 1px solid #e2e8f0;
}

.modal-main-img-wrap img {
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: opacity 0.18s ease-in-out;
  padding: 10px;
}

.modal-active-pov-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.modal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 1px solid #cbd5e1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-nav-arrow:hover {
  background: #0b57d0;
  color: #ffffff;
  border-color: #0b57d0;
  transform: translateY(-50%) scale(1.08);
}

.modal-nav-arrow.prev {
  left: 8px;
}

.modal-nav-arrow.next {
  right: 8px;
}

.modal-pov-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pov-thumb-btn {
  flex: 1;
  min-width: 64px;
  max-width: 86px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: all 0.18s ease;
}

.pov-thumb-btn:hover {
  border-color: #93c5fd;
  background: #f0f7ff;
}

.pov-thumb-btn.active {
  border-color: #0b57d0;
  background: #eff6ff;
  box-shadow: 0 0 0 2px rgba(11, 87, 208, 0.2);
}

.pov-thumb-img-wrap {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 4px;
  overflow: hidden;
}

.pov-thumb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pov-thumb-label {
  font-size: 9px;
  font-weight: 700;
  color: #475569;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.pov-thumb-btn.active .pov-thumb-label {
  color: #0b57d0;
}

.modal-warranty-box {
  margin-top: 10px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  padding: 10px;
  font-size: 11px;
  color: #2e7d32;
}

.card-pov-indicator, .bestseller-pov-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(3px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 3;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 12px 0;
}

.modal-specs-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #f0f0f0;
}

.modal-specs-table td:first-child {
  color: var(--fk-text-secondary);
  width: 40%;
  font-weight: 600;
}

.exchange-calc-box {
  background: #f0f7ff;
  border: 1px solid #b9d9ff;
  border-radius: var(--radius-md);
  padding: 12px;
  margin: 14px 0;
}

.exchange-calc-box h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fk-blue);
  margin-bottom: 6px;
}

.exchange-select {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #c2c2c2;
  font-size: 12px;
  margin-bottom: 6px;
}

/* Forms: Checkout & Service Booking */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--fk-border);
  border-radius: 4px;
  font-size: 13px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fk-blue);
  outline: none;
}

.payment-method-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--fk-border);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.payment-label input {
  accent-color: var(--fk-blue);
}

/* Mobile Sort Bottom Sheet */
.mobile-sort-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2500;
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.2s ease;
  align-items: flex-end;
}

.mobile-sort-sheet-backdrop.open {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.mobile-sort-sheet {
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.mobile-sort-sheet-backdrop.open .mobile-sort-sheet {
  transform: translateY(0);
}

.sort-sheet-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #878787;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.sort-sheet-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--fk-text);
  border-bottom: 1px solid #fafafa;
  cursor: pointer;
}

.sort-sheet-option.active {
  color: var(--fk-blue);
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: calc(var(--bottom-nav-height) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #212121;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  z-index: 4000;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  white-space: nowrap;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 769px) {
  .toast-notice {
    bottom: 24px;
  }
}

/* =========================================================
   UI & UX MAX POLISH & MODERN INTERACTIONS
   ========================================================= */

/* --- Quick Filter Chips Strip --- */
.quick-filter-chips-strip {
  background: #fff;
  border-bottom: 1px solid var(--fk-border);
  padding: 8px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.quick-filter-chips-strip::-webkit-scrollbar {
  display: none;
}

.chips-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.chip-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: #eff6ff;
  border-color: var(--fk-blue);
  color: var(--fk-blue);
}

.chip-btn.active {
  background: var(--fk-blue);
  color: #fff;
  border-color: var(--fk-blue);
  box-shadow: 0 2px 6px rgba(40, 116, 240, 0.3);
}

/* --- Product Card UI Max Additions --- */
.card-badges-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.emi-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.stock-urgency-pill {
  background: #fef2f2;
  color: #dc2626;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.compare-checkbox-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  user-select: none;
  margin-top: 6px;
}

.compare-checkbox-label input {
  accent-color: var(--fk-blue);
  cursor: pointer;
}

/* Wishlist Heart Burst */
@keyframes heartBurst {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.card-wishlist-btn.active svg {
  animation: heartBurst 0.3s ease-out;
  fill: #ef4444;
  color: #ef4444;
}

/* Cart Badge Bounce Animation */
@keyframes badgeBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

.cart-badge.bounce,
.nav-cart-badge.bounce {
  animation: badgeBounce 0.35s ease-out;
}

/* --- Floating Compare Bar --- */
.floating-compare-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #0f172a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1450;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  white-space: nowrap;
}

.floating-compare-bar.show {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .floating-compare-bar {
    bottom: calc(var(--bottom-nav-height) + 12px);
    padding: 8px 16px;
    gap: 10px;
  }
}

.compare-thumbnails {
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-thumb-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #38bdf8;
  object-fit: cover;
  background: #fff;
}

.btn-open-compare {
  background: var(--fk-yellow);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.btn-clear-compare {
  background: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

/* Comparison Modal Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 10px 12px;
  border: 1px solid var(--fk-border);
  text-align: left;
}

.comparison-table th {
  background: #f8fafc;
  color: #475569;
  font-weight: 700;
}

.comparison-table td.feature-label {
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
  width: 25%;
}

.comparison-product-header {
  text-align: center;
}

.comparison-product-header img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* --- Cart Perks Progress Bar & 1-Tap Coupon Chips --- */
.cart-perks-banner {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.perks-header-text {
  font-size: 11px;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.perks-progress-track {
  width: 100%;
  height: 6px;
  background: #d1fae5;
  border-radius: 4px;
  overflow: hidden;
}

.perks-progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 4px;
  width: 100%;
  transition: width 0.3s ease;
}

.quick-coupon-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.coupon-chip {
  background: #f1f5f9;
  border: 1px dashed #94a3b8;
  color: var(--fk-blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}

.coupon-chip:hover {
  background: #eff6ff;
  border-color: var(--fk-blue);
}

/* Modal body scroll-lock helper */
body.modal-locked {
  overflow: hidden !important;
  touch-action: none;
}

/* --- Razorpay & Payment Gateway Polish --- */
.payment-label {
  transition: all 0.2s ease;
}

.payment-label:has(input:checked) {
  border-color: var(--fk-blue);
  background: #f0f7ff;
  box-shadow: 0 0 0 1px var(--fk-blue);
}

.btn-whatsapp-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 12px;
  border-radius: 4px;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-whatsapp-order:hover {
  background: #1eb954;
  color: #fff;
}

/* Simulated Razorpay Test Dialog (Fallback Sandbox) */
.rzp-sim-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.rzp-sim-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.rzp-sim-header {
  background: #0c2340;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rzp-sim-body {
  padding: 20px;
}

.rzp-sim-upi-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.rzp-app-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s;
}

.rzp-app-box:hover,
.rzp-app-box.active {
  border-color: #0284c7;
  background: #f0f9ff;
  color: #0284c7;
}

.btn-sim-pay-success {
  width: 100%;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-sim-pay-success:hover {
  background: #15803d;
}

.btn-sim-cancel {
  width: 100%;
  background: none;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  padding: 8px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

/* ==========================================================================
   OWNER REQUIREMENTS: NAVIGATION, SPARE PARTS, REFURBISHED, SELL OLD AC
   ========================================================================== */

/* 1. Main Website Navigation (8 Menu Items) */
.main-site-nav {
  max-width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  position: sticky;
  top: 64px;
  z-index: 990;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 16px;
}

.main-nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-menu-link {
  color: #334155;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu-link:hover {
  background: #f1f5f9;
  color: var(--fk-blue);
}

.nav-menu-link.active {
  background: #eff6ff;
  color: var(--fk-blue);
}

.nav-menu-link.highlight-sell-nav {
  background: #fef2f2;
  color: #dc2626;
  border: 1px dashed #f87171;
}

.nav-menu-link.highlight-sell-nav:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

/* 2. Homepage Category Icon Grid (Section 8 item 3) */
.owner-category-grid-section {
  margin: 18px 0 24px 0;
}

.category-icon-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

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

@media (max-width: 550px) {
  .category-icon-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat-icon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cat-icon-card:hover {
  transform: translateY(-3px);
  border-color: var(--fk-blue);
  box-shadow: 0 10px 15px -3px rgba(11, 87, 208, 0.1);
}

.cat-icon-card.highlight {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-color: #fdba74;
}

.cat-icon-symbol {
  font-size: 28px;
  margin-bottom: 6px;
}

.cat-icon-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.cat-icon-card p {
  font-size: 10px;
  color: #64748b;
  line-height: 1.2;
}

/* WhatsApp Enquiry Button on Product Cards */
.btn-card-whatsapp {
  grid-column: span 2;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-card-whatsapp:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

/* 3. Spare Parts Catalog Styling */
.spare-parts-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.spare-parts-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.spare-filter-chip {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.spare-filter-chip.active,
.spare-filter-chip:hover {
  background: var(--fk-blue);
  color: #ffffff;
  border-color: var(--fk-blue);
}

.spare-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.spare-part-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  transition: all 0.2s ease;
}

.spare-part-card:hover {
  border-color: var(--fk-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.spare-part-img-wrap {
  width: 100%;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.spare-part-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spare-cat-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}

.spare-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 6px;
}

.spare-specs {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.spare-unit-badge {
  font-size: 10px;
  color: #475569;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
}

.spare-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.spare-price {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.spare-mrp {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.spare-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.btn-spare-cart {
  background: var(--fk-orange);
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-spare-cart:hover {
  background: #e05e00;
}

.btn-spare-wa {
  background: #25d366;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
}

.btn-spare-wa:hover {
  background: #1eb954;
}

/* 4. Refurbished & Used AC Section */
.refurbished-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

.refurbished-tab-bar {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
  width: fit-content;
  margin: 0 auto 20px auto;
}

.ref-tab-btn {
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.ref-tab-btn.active {
  background: #ffffff;
  color: var(--fk-blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.refurbished-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
}

.ref-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ref-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.ref-warranty-badge {
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ref-used-badge {
  background: #fef3c7;
  color: #b45309;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.ref-testing-info {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: #334155;
  margin: 10px 0;
  line-height: 1.3;
}

.ref-location-pill {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.ref-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.btn-ref-wa {
  background: #25d366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.btn-ref-call {
  background: #0b57d0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

/* 5. We Buy Old ACs Section (Customer Enquiry Form) */
.sell-old-ac-section {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #ffffff;
  border-radius: 14px;
  padding: 32px 24px;
  margin: 36px 0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
}

.sell-ac-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 24px auto;
}

.sell-ac-header .section-badge {
  background: #ea580c;
  color: #fff;
}

.sell-ac-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 8px 0 6px 0;
}

.sell-ac-header p {
  color: #94a3b8;
  font-size: 13px;
}

.sell-ac-form-card {
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
  padding: 24px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.sell-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 650px) {
  .sell-form-grid {
    grid-template-columns: 1fr;
  }
}

.sell-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sell-form-group.full-width {
  grid-column: span 2;
}

@media (max-width: 650px) {
  .sell-form-group.full-width {
    grid-column: span 1;
  }
}

.sell-form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.sell-form-group input,
.sell-form-group select,
.sell-form-group textarea {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s;
}

.sell-form-group input:focus,
.sell-form-group select:focus,
.sell-form-group textarea:focus {
  border-color: var(--fk-blue);
  box-shadow: 0 0 0 2px rgba(11, 87, 208, 0.15);
}

.btn-submit-old-ac {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  transition: background 0.2s;
}

.btn-submit-old-ac:hover {
  background: #1eb954;
}

/* 6. Contact Section & Showroom Locations */
.contact-section-wrap {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

.contact-channels-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 18px;
}

.contact-channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-channel-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

/* ==========================================================================
   🧒 KID-FRIENDLY INTERACTIVE AC MATCHMAKER & FAMILY COOLING GUIDE
   ========================================================================== */
.kid-matchmaker-section {
  margin: 30px 0;
}

.matchmaker-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid #bfdbfe;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.12);
}

.matchmaker-header {
  text-align: center;
  margin-bottom: 24px;
}

.matchmaker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef08a;
  color: #854d0e;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 9999px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

.matchmaker-title {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 8px;
}

.matchmaker-subtitle {
  font-size: 14px;
  color: #475569;
  max-width: 680px;
  margin: 0 auto;
}

.matchmaker-step-block {
  margin-bottom: 22px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.step-num {
  width: 26px;
  height: 26px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.step-label {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
}

.choice-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.choice-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.choice-card:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1);
}

.choice-card.active {
  background: #eff6ff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.choice-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.choice-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.choice-size {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.choice-badge {
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-top: 4px;
}

.choice-badge.popular {
  background: #dbeafe;
  color: #1e40af;
}

.choice-badge.superhero {
  background: #dcfce7;
  color: #166534;
}

.match-result-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 24px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.result-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.result-desc {
  font-size: 14px;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto 16px auto;
}

.result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-match-view {
  background: #ffe11b;
  color: #0f172a;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn-match-view:hover {
  background: #facc15;
  transform: translateY(-2px);
}

.btn-match-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s;
}

.btn-match-whatsapp:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   💡 FAMILY COOLING GUIDE CARDS
   ========================================================================== */
.kid-guide-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 22px;
  margin: 24px 0;
}

.kid-guide-header {
  text-align: center;
  margin-bottom: 20px;
}

.kid-guide-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-top: 4px;
}

.kid-guide-header p {
  font-size: 13px;
  color: #64748b;
}

.kid-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.guide-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.guide-card:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
}

.guide-icon-badge {
  font-size: 28px;
  margin-bottom: 8px;
}

.guide-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.guide-card p {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
}

/* ==========================================================================
   🔩 SPARE PARTS SECTION & CARDS
   ========================================================================== */
.spare-parts-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  margin: 30px 0;
}

.spare-parts-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 20px;
  scrollbar-width: thin;
}

.spare-filter-chip {
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.spare-filter-chip:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.spare-filter-chip.active {
  background: #2874f0;
  color: #ffffff;
  border-color: #2874f0;
  box-shadow: 0 2px 6px rgba(40, 116, 240, 0.3);
}

.spare-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.spare-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.spare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.spare-img-wrap {
  width: 100%;
  height: 160px;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

.spare-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.spare-card:hover .spare-img-wrap img {
  transform: scale(1.05);
}

.spare-cat-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.spare-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spare-title {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
}

.spare-specs {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
}

.spare-unit {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.spare-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.spare-price {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.spare-mrp {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.spare-stock-chip {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
}

.spare-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.btn-spare-cart {
  background: #ffe11b;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-spare-cart:hover {
  background: #facc15;
}

.btn-spare-wa {
  background: #25d366;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ==========================================================================
   🔄 REFURBISHED & USED ACS
   ========================================================================== */
.refurbished-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  margin: 30px 0;
}

.refurbished-tab-bar {
  display: flex;
  gap: 12px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 22px;
  overflow-x: auto;
}

.ref-tab-btn {
  padding: 10px 18px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 800;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  margin-bottom: -2px;
}

.ref-tab-btn.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.refurbished-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.ref-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.ref-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  background: #f1f5f9;
}

.ref-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ref-badge.used {
  background: #d97706;
}

.ref-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ref-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.ref-specs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.ref-spec-tag {
  font-size: 11px;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
  padding: 2px 8px;
  border-radius: 4px;
}

.ref-condition-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: #475569;
  margin-bottom: 12px;
}

.ref-condition-box strong {
  color: #0f172a;
}

.ref-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.ref-price {
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.ref-orig-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.ref-discount {
  font-size: 12px;
  font-weight: 800;
  color: #16a34a;
}

.ref-location {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 14px;
}

.ref-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.btn-ref-wa {
  background: #25d366;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-ref-call {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ==========================================================================
   FLOATING WHATSAPP & HEADER ACTIONS
   ========================================================================== */
.btn-whatsapp-header {
  background: #25d366 !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
}

.btn-admin-header {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  text-decoration: none !important;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s, transform 0.2s;
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 74px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
}





/* ==========================================================================
   NEW ACs INTERACTIVE DRILLDOWN EXPLORER
   ========================================================================== */

.new-ac-explorer-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  margin: 28px 0 32px 0;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.new-ac-explorer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.explorer-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.explorer-badge {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid #dbeafe;
}

.explorer-subbadge {
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
}

.explorer-title-box h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}

.explorer-title-box p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
  max-width: 680px;
  line-height: 1.5;
}

.btn-reset-explorer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-reset-explorer:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
}

/* Step 1: Technology Selector Cards */
.tech-selection-block {
  margin-bottom: 20px;
}

.tech-step-indicator, .drill-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tech-step-pill, .drill-step-pill {
  background: #0f172a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-step-text, .drill-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
}

.drill-hint {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  margin-left: 4px;
}

.tech-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-choice-card {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tech-choice-card:hover {
  border-color: #93c5fd;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(37, 99, 235, 0.1);
}

.tech-choice-card.active {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 12px 28px -6px rgba(37, 99, 235, 0.18);
}

.tech-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.tech-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.inv-glow {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1.5px solid #bfdbfe;
}

.noninv-glow {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #bbf7d0;
}

.tech-card-title-group {
  flex: 1;
}

.tech-pill-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.badge-saver {
  background: #dbeafe;
  color: #1d4ed8;
}

.badge-budget {
  background: #dcfce7;
  color: #15803d;
}

.tech-card-title-group h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px 0;
}

.tech-card-title-group p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.tech-check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all 0.2s ease;
}

.tech-choice-card.active .tech-check-circle {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.tech-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.tech-card-features span {
  font-size: 11px;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.tech-choice-card.active .tech-card-features span {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Step 2 & 3: Dynamic Drilldown Controls Panel */
.ac-drilldown-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn 0.3s ease;
}

.drill-row {
  display: flex;
  flex-direction: column;
}

.drill-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Generic Drill Pill */
.drill-pill {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drill-pill:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
  transform: translateY(-1px);
}

.drill-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

/* Tonnage Pills with Room Description */
.tonnage-pill {
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px;
  min-width: 150px;
}

.tonnage-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.tonnage-room {
  font-size: 11px;
  opacity: 0.75;
  margin-top: 2px;
  line-height: 1.2;
}

.tonnage-pill.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.tonnage-pill.active .tonnage-room {
  opacity: 0.9;
  color: #94a3b8;
}

/* Drilldown Status & Scroll-to-catalog Bar */
.drilldown-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  margin-top: 4px;
  gap: 12px;
  flex-wrap: wrap;
}

.drill-status-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  display: inline-block;
}

.drill-count-badge {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  border: 1px solid #bfdbfe;
}

.btn-view-matches-scroll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-view-matches-scroll:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .new-ac-explorer-section {
    padding: 18px 16px;
    margin: 16px 0 24px 0;
  }
  .new-ac-explorer-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tech-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tonnage-pill {
    width: 100%;
    min-width: auto;
  }
  .drilldown-status-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .btn-view-matches-scroll {
    justify-content: center;
  }
}


@keyframes highlightPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06); }
}
.new-ac-explorer-section.highlight-pulse {
  animation: highlightPulse 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ==========================================================================
   NEW ACs SELECTION MODAL & ACTIVE FILTER NOTIFICATION
   ========================================================================== */

/* Active Filter Notice Banner (Above Catalog) */
.ac-active-filter-notice {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  padding: 12px 20px;
  margin: 18px 0 24px 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.active-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.active-filter-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1e293b;
}

.active-filter-label {
  color: #64748b;
  font-weight: 500;
  font-size: 12px;
}

.btn-clear-active-filter {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear-active-filter:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}

/* Modal Technology Cards */
.modal-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-tech-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  font-family: inherit;
  width: 100%;
}

.modal-tech-btn:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  transform: translateY(-1px);
}

.modal-tech-btn.active {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 6px 16px rgba(37, 99, 235, 0.12);
}

.mt-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mt-icon.inv {
  background: #dbeafe;
  color: #1d4ed8;
}

.mt-icon.noninv {
  background: #dcfce7;
  color: #15803d;
}

.mt-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mt-info strong {
  font-size: 15px;
  color: #0f172a;
  line-height: 1.2;
}

.mt-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
  line-height: 1.25;
}

.mt-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.modal-tech-btn.active .mt-check {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Modal Brand Pills */
.modal-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-brand-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.modal-brand-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.modal-brand-btn.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* Modal Tonnage Grid */
.modal-tonnage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.modal-ton-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.modal-ton-btn:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.modal-ton-btn strong {
  font-size: 13px;
  color: #0f172a;
}

.modal-ton-btn span {
  font-size: 10px;
  color: #64748b;
  margin-top: 2px;
}

.modal-ton-btn.active {
  background: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

.modal-ton-btn.active strong {
  color: #ffffff;
}

.modal-ton-btn.active span {
  color: #94a3b8;
}

/* Modal Action Buttons */
.modal-action-footer {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.btn-modal-apply {
  flex: 1;
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  font-family: inherit;
}

.btn-modal-apply:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-modal-cancel {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-modal-cancel:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* Product Card Visibility Guarantee */
.product-card {
  opacity: 1 !important;
  visibility: visible !important;
}

.bcs-reveal-group > * {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 600px) {
  .modal-tech-grid {
    grid-template-columns: 1fr;
  }
  .modal-tonnage-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Active / Clicked state for Category Icon Card */
.cat-icon-card.active, .cat-icon-card:active {
  border-color: #2563eb !important;
  background: #eff6ff !important;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25) !important;
}


/* ==========================================================================
   IN-PLACE VIEW SWITCHING & DIRECT TECH DRILLDOWN BAR
   ========================================================================== */

/* Zero scroll in-place view container */
.bcs-view-pane {
  display: none;
  animation: bcsFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bcs-view-pane.active-view {
  display: block;
}

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

/* Category Card active / selected indicator */
.cat-icon-card.active-cat {
  border-color: #2563eb !important;
  background: #eff6ff !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18) !important;
  transform: translateY(-2px);
}

.cat-icon-card.active-cat h4 {
  color: #1d4ed8 !important;
}

/* Main nav active state */
.nav-menu-link.active-nav,
.nav-menu-link.active {
  color: #2563eb !important;
  background: #eff6ff !important;
  font-weight: 700 !important;
}

/* Direct New AC Technology Filter Bar (Solid, In-Place) */
.new-ac-direct-bar {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.direct-bar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.direct-pill-tag {
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid #bfdbfe;
  display: inline-block;
  margin-bottom: 4px;
}

.direct-tech-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.direct-tech-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid #cbd5e1;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.direct-tech-card:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  transform: translateY(-1px);
}

.direct-tech-card.active {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15), 0 8px 20px rgba(37, 99, 235, 0.12);
}

.dt-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dt-icon.inv {
  background: #dbeafe;
  color: #1d4ed8;
}

.dt-icon.noninv {
  background: #dcfce7;
  color: #15803d;
}

.dt-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dt-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.direct-tech-card.active .dt-check {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

/* Sub-filter rows */
.direct-subfilters {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}

.subfilter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.subfilter-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  min-width: 85px;
}

.subfilter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.direct-pill {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.direct-pill:hover {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.direct-pill.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.direct-pill.type-pill.active {
  background: #0d9488;
  border-color: #0d9488;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

.direct-pill.ton-pill.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

/* Call & WhatsApp Card Actions */
.btn-card-call {
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-card-call:hover {
  background: #0369a1 !important;
  transform: translateY(-1px);
}
.btn-card-wa {
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-card-wa:hover {
  background: #16a34a !important;
  transform: translateY(-1px);
}

/* Sad Mechanic Empty State */
.sad-mechanic-card {
  animation: fadeIn 0.25s ease-out;
}
.sad-mechanic-card a {
  transition: filter 0.15s ease, transform 0.15s ease;
}
.sad-mechanic-card a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.sad-mechanic-card button {
  transition: background 0.15s ease, transform 0.15s ease;
}
.sad-mechanic-card button:hover {
  background: #e2e8f0 !important;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .direct-tech-row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PERFECT MOBILE RESPONSIVENESS (320px, 375px, 390px, 414px, 768px)
   ========================================================================== */

/* 1. Global Viewport & Reset */
html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Prevent iOS auto-zoom on input focus */
@media (max-width: 768px) {
  input[type="text"],
  input[type="tel"],
  input[type="number"],
  input[type="email"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* 3. Mobile Header Layout (Orderly 2-Row Clean Hierarchy) */
@media (max-width: 768px) {
  .main-header {
    padding: 6px 0 8px 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
  }

  .header-inner {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
    gap: 4px 0 !important;
  }

  /* Row 1: Brand Logo (Left) */
  .brand-logo-wrap {
    order: 1 !important;
    flex: 0 1 auto !important;
    max-width: calc(100% - 165px) !important;
    min-width: 0 !important;
  }

  .brand-header-flex {
    gap: 5px !important;
    align-items: center !important;
  }

  .brand-emblem-badge {
    padding: 1px 2px !important;
    border-radius: 4px !important;
  }

  .brand-emblem-img {
    height: 24px !important;
  }

  .brand-title-img {
    height: 14px !important;
    max-width: 135px !important;
    object-fit: contain !important;
  }

  .brand-subtext {
    font-size: 8px !important;
    gap: 3px !important;
    white-space: nowrap !important;
  }

  .brand-subtext .brand-tagline {
    display: none !important;
  }

  .brand-subtext .brand-24h-pill {
    font-size: 7.5px !important;
    padding: 1px 4px !important;
  }

  /* Row 1: Action Icons (Right) */
  .header-actions {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
  }

  .header-actions .btn-book-service {
    display: none !important;
  }

  .cart-label-desktop {
    display: none !important;
  }

  .btn-whatsapp-header {
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    min-width: 32px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-whatsapp-header span {
    display: none !important;
  }

  .header-actions #cartBtn {
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    min-width: 32px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  .cart-badge {
    top: -3px !important;
    left: 17px !important;
    font-size: 9px !important;
    min-width: 15px !important;
    height: 15px !important;
    line-height: 15px !important;
  }

  .btn-customer-auth {
    height: 32px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
    max-width: 95px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    gap: 4px !important;
  }

  .btn-customer-auth span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 65px !important;
  }

  /* Row 2: Location Chip + Search Bar side by side */
  .location-picker-btn {
    order: 3 !important;
    flex: 0 0 auto !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 0 7px !important;
    margin: 4px 6px 0 0 !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    gap: 3px !important;
    white-space: nowrap !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 6px !important;
    color: #ffffff !important;
  }

  .location-picker-btn svg {
    width: 12px !important;
    height: 12px !important;
  }

  .header-search {
    order: 4 !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 4px 0 0 0 !important;
  }

  .search-input-wrap {
    height: 34px !important;
    border-radius: 6px !important;
    padding: 0 8px !important;
  }

  .search-input-wrap input {
    font-size: 12px !important;
  }

  .search-btn {
    padding: 0 4px !important;
  }

  .search-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
}

/* 4. Main Site Nav Strip & Category Cards */
@media (max-width: 768px) {
  .main-site-nav {
    position: relative !important;
    top: 0 !important;
    z-index: 10 !important;
    background: #ffffff !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .main-nav-inner {
    padding: 8px 10px !important;
    gap: 6px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .main-nav-inner::-webkit-scrollbar {
    display: none !important;
  }

  .nav-menu-link {
    font-size: 12px !important;
    padding: 6px 12px !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .category-nav-strip {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .category-icon-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .cat-icon-card {
    padding: 10px 8px !important;
    border-radius: 8px !important;
  }

  .cat-icon-card .cat-icon-symbol {
    font-size: 24px !important;
    margin-bottom: 4px !important;
  }

  .cat-icon-card h4 {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }

  .cat-icon-card p {
    font-size: 9.5px !important;
    line-height: 1.2 !important;
  }

  .cat-icon-card[data-view="sell-old-ac"] {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 10px 14px !important;
    text-align: left !important;
  }

  .cat-icon-card[data-view="sell-old-ac"] .cat-icon-symbol {
    margin-bottom: 0 !important;
    font-size: 26px !important;
  }
}

/* 5. Direct Technology Bar */
@media (max-width: 650px) {
  .new-ac-direct-bar {
    padding: 14px 10px !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
  }

  .direct-bar-top h3 {
    font-size: 15px !important;
  }

  .direct-tech-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .direct-tech-card {
    padding: 10px 14px !important;
    border-radius: 10px !important;
    gap: 10px !important;
  }

  .dt-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
  }

  .dt-info strong {
    font-size: 13px !important;
  }

  .dt-info span {
    font-size: 11px !important;
  }

  .subfilter-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .subfilter-label {
    font-size: 12px !important;
    min-width: auto !important;
  }

  .subfilter-pills {
    gap: 6px !important;
    width: 100% !important;
  }

  .direct-pill {
    padding: 6px 10px !important;
    font-size: 11.5px !important;
    border-radius: 6px !important;
  }
}

/* 6. Products Grid & Compact Cards */
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .product-card {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
  }

  .product-img-wrap {
    height: 125px !important;
    padding: 6px !important;
  }

  .product-img-wrap img {
    max-height: 105px !important;
  }

  .product-card-body {
    padding: 8px 6px !important;
  }

  .product-brand {
    font-size: 10px !important;
  }

  .product-title {
    font-size: 12px !important;
    height: 32px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
  }

  .rating-and-assured {
    gap: 4px !important;
    margin-bottom: 6px !important;
  }

  .rating-badge {
    font-size: 10px !important;
    padding: 1px 4px !important;
  }

  .rating-count {
    font-size: 10px !important;
  }

  .price-row {
    gap: 4px !important;
    margin-bottom: 6px !important;
    align-items: baseline !important;
  }

  .current-price {
    font-size: 14.5px !important;
    font-weight: 800 !important;
  }

  .original-mrp {
    font-size: 10px !important;
  }

  .discount-tag {
    font-size: 10px !important;
    font-weight: 700 !important;
  }

  .card-actions-wrap {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding-top: 6px !important;
  }

  .btn-card-cart {
    width: 100% !important;
    min-height: 34px !important;
    font-size: 11px !important;
    padding: 6px 2px !important;
    border-radius: 4px !important;
  }

  .btn-card-buy {
    display: none !important;
  }

  .btn-card-whatsapp {
    width: 100% !important;
    grid-column: 1 / -1 !important;
    padding: 6px 2px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
  }

  .card-features-list,
  .product-perks {
    display: none !important;
  }
}

@media (max-width: 340px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .product-img-wrap {
    height: 150px !important;
  }

  .product-img-wrap img {
    max-height: 130px !important;
  }
}

/* 7. Modals & Cart Drawer Touch Optimization */
@media (max-width: 650px) {
  .modal-backdrop {
    padding: 8px !important;
  }

  .modal-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    max-height: 92vh !important;
    margin: auto 0 !important;
  }

  .modal-content-padding {
    padding: 16px 12px !important;
  }

  .product-modal-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .modal-img-col img {
    max-height: 190px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .cart-drawer {
    width: 100% !important;
    max-width: 100vw !important;
  }

  .cart-drawer-header {
    padding: 12px 14px !important;
  }

  .cart-drawer-body {
    padding: 10px !important;
  }

  .qty-control {
    border-radius: 4px !important;
  }

  .btn-qty {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    font-size: 16px !important;
  }

  .qty-display {
    width: 32px !important;
    font-size: 14px !important;
  }

  .btn-cart-remove {
    font-size: 12px !important;
    padding: 6px 8px !important;
  }
}

/* 8. Services, Spares & Used ACs Grids */
@media (max-width: 768px) {
  .service-section-wrap,
  .spare-parts-section,
  .refurbished-section,
  .sell-old-ac-section {
    padding: 16px 12px !important;
    margin: 16px 0 !important;
    border-radius: 10px !important;
  }

  .section-main-title {
    font-size: 18px !important;
  }

  .section-subtitle {
    font-size: 12px !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .service-card {
    padding: 10px 8px !important;
  }

  .service-card h4 {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .service-price {
    font-size: 14px !important;
  }

  .service-btn {
    padding: 7px 6px !important;
    font-size: 11px !important;
  }

  .spare-parts-filter-bar {
    gap: 6px !important;
    padding-bottom: 8px !important;
    margin-bottom: 14px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .spare-filter-chip {
    font-size: 11px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  .spare-parts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .refurbished-tab-bar {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .ref-tab-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 10px !important;
    font-size: 12px !important;
  }

  .refurbished-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

@media (max-width: 360px) {
  .spare-parts-grid,
  .refurbished-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 9. Reviews & Showroom Branches */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .review-card {
    padding: 14px 12px !important;
  }

  .branches-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .branch-card {
    padding: 14px 12px !important;
  }

  .contact-channels-strip {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .contact-channel-item {
    width: 100% !important;
    padding: 10px 12px !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* 10. Mobile Bottom Nav & Safe Area Padding */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 12px)) !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom, 0px)) !important;
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08) !important;
    z-index: 1500 !important;
    justify-content: space-around !important;
    align-items: center !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }

  .nav-tab-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    color: #64748b !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    gap: 3px !important;
    padding: 6px 4px !important;
    position: relative !important;
    flex: 1 !important;
    min-height: 44px !important;
    transition: color 0.15s ease !important;
  }

  .nav-tab-btn svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nav-tab-btn.active {
    color: var(--fk-blue) !important;
    font-weight: 700 !important;
  }

  .nav-cart-badge {
    position: absolute !important;
    top: 3px !important;
    right: calc(50% - 16px) !important;
    background: #ff6161 !important;
    color: #fff !important;
    border-radius: 10px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    min-width: 16px !important;
    height: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
  }

  .floating-whatsapp-btn {
    bottom: calc(var(--bottom-nav-height) + 14px + env(safe-area-inset-bottom, 0px)) !important;
    right: 14px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 1400 !important;
  }

  .floating-whatsapp-btn svg {
    width: 26px !important;
    height: 26px !important;
  }
}


/* ==========================================================================
   Opening / Hero Portal Page (#view-home) Styles
   ========================================================================== */
.hero-portal-container {
  padding: 10px 0 40px;
}

.hero-portal-banner {
  text-align: center;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  border: 1.5px solid #dbeafe;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(11, 87, 208, 0.05);
}

.hero-trust-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-trust-tag {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
}

.hero-24h-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #15803d;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.25);
}

.hero-brand-card {
  margin: 10px auto 14px;
  text-align: center;
  max-width: 540px;
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 14px rgba(11, 87, 208, 0.06);
}

.hero-master-logo {
  max-width: 100%;
  height: auto;
  max-height: 125px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-portal-title {
  font-family: 'Cinzel Decorative', 'Metamorphous', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin: 0 0 6px;
}

.hero-portal-subtitle {
  font-size: 14px;
  color: #475569;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}

/* 5 Primary Choice Cards Grid (2-Column Grid + Full-Width Rectangular Cash Card) */
.hero-choices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .hero-choices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.hero-choice-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hero-choice-card:hover {
  transform: translateY(-2px);
  border-color: #0b57d0;
  box-shadow: 0 6px 16px rgba(11, 87, 208, 0.1);
}

.hero-choice-card.choice-rectangular-full {
  grid-column: 1 / -1 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  padding: 14px 18px !important;
  gap: 14px !important;
}

.hero-choice-card.choice-rectangular-full .choice-icon-bubble {
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}

.hero-choice-card.choice-rectangular-full .choice-main-content {
  flex: 1 !important;
}

.hero-choice-card.choice-rectangular-full .choice-main-content h3 {
  font-size: 16px;
  margin-bottom: 3px;
}

.hero-choice-card.choice-rectangular-full .choice-main-content p {
  font-size: 12.5px;
}

.choice-icon-bubble {
  font-size: 26px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.choice-new-acs .choice-icon-bubble { background: #eff6ff; }
.choice-services .choice-icon-bubble { background: #fdf2f8; }
.choice-spares .choice-icon-bubble { background: #f0fdf4; }
.choice-refurbished .choice-icon-bubble { background: #f5f3ff; }
.choice-used .choice-icon-bubble { background: #faf5ff; }
.choice-sell .choice-icon-bubble { background: #fffbeb; }

.choice-main-content {
  width: 100%;
}

.choice-main-content h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.choice-main-content p {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

.choice-main-content p.gold-text {
  color: #b45309;
}

.hero-choice-card.highlight-cash {
  background: #fffbeb;
  border-color: #fde68a;
}

.hero-choice-card.highlight-cash:hover {
  border-color: #f59e0b;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15);
}

/* --- Card Image Horizontal Side-Scroll Carousel (FOR ALL CARDS) --- */
.card-carousel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  user-select: none;
}

.service-card .card-carousel-wrap {
  margin: -16px -16px 12px -16px;
  width: calc(100% + 32px);
  border-radius: var(--radius) var(--radius) 0 0;
  height: 160px;
}

.card-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.card-carousel-track::-webkit-scrollbar {
  display: none;
}

.card-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  position: relative;
}

.card-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.card-slide-pov-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  z-index: 3;
  letter-spacing: 0.2px;
  pointer-events: none;
}

.card-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  z-index: 4;
  opacity: 0.85;
  transition: all 0.15s;
  padding: 0;
  line-height: 1;
}

.card-carousel-arrow:hover {
  background: #ffffff;
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.card-carousel-arrow.prev {
  left: 6px;
}

.card-carousel-arrow.next {
  right: 6px;
}

.card-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  padding: 3px 6px;
  border-radius: 999px;
}

.card-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.card-carousel-dot.active {
  background: #ffffff;
  width: 14px;
  border-radius: 4px;
}

.card-carousel-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  z-index: 3;
  pointer-events: none;
}

.emi-pill {
  display: none !important;
}

.hero-choice-card.highlight-cash:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

/* Contact Details on Opening Page */
.hero-contact-section {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-trust-rating-strip {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
  flex-wrap: wrap;
  text-align: center;
}

/* Return / Back Bar across each specific view pane */
.view-return-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #0b57d0;
  color: #0b57d0;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(11, 87, 208, 0.1);
}

.btn-back-home:hover {
  background: #0b57d0;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(11, 87, 208, 0.25);
}

.btn-back-home .back-icon {
  font-size: 16px;
  font-weight: 900;
}

.view-return-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.view-return-badge .view-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* Responsive Rules for Hero Portal */
@media (max-width: 900px) {
  .hero-choices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Keep all 6 cards in 2 columns: Used ACs and We Buy Old ACs side-by-side in row 3 */
  .hero-choice-card.choice-sell {
    grid-column: auto;
  }
}

@media (max-width: 650px) {
  .hero-portal-banner {
    padding: 16px 14px;
    margin-bottom: 18px;
  }
  .hero-portal-title {
    font-size: 20px;
  }
  .hero-portal-subtitle {
    font-size: 12.5px;
  }
  .hero-choices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-choice-card {
    padding: 16px;
  }
  .hero-contact-section {
    padding: 16px 12px;
  }
  .view-return-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
  }
  .btn-back-home {
    justify-content: center;
    width: 100%;
    min-height: 42px;
  }
  .view-return-badge {
    justify-content: center;
    font-size: 12px;
  }
}

/* ==========================================================================
   Hero Page Curated Bestsellers Showcase (Neat, Clear, and Spacious)
   ========================================================================== */
.hero-bestsellers-section {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  margin: 28px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.hero-bestsellers-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px auto;
}

.hero-bestsellers-header .section-badge {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero-bestsellers-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.hero-bestsellers-header p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.hero-bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

@media (max-width: 768px) {
  .hero-bestsellers-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .hero-bestsellers-section {
    padding: 16px 8px !important;
    margin: 16px 0 !important;
  }

  .hero-bestsellers-header h3 {
    font-size: 16px !important;
    margin-bottom: 4px !important;
  }

  .hero-bestsellers-header p {
    font-size: 11.5px !important;
  }

  .hero-bestseller-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
  }

  .bestseller-badge-ribbon {
    font-size: 8px !important;
    font-weight: 800 !important;
    padding: 2px 5px !important;
    border-radius: 8px !important;
    top: 5px !important;
    left: 5px !important;
    max-width: calc(100% - 10px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    z-index: 5 !important;
  }

  /* Fixed, equal height image container for all bestsellers */
  .hero-bestseller-card .card-carousel-wrap {
    width: 100% !important;
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    aspect-ratio: auto !important;
    margin-top: 14px !important;
    margin-bottom: 6px !important;
    border-radius: 6px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .hero-bestseller-card .card-carousel-track {
    width: 100% !important;
    height: 115px !important;
    display: flex !important;
    overflow-x: auto !important;
  }

  .hero-bestseller-card .card-carousel-slide {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 115px !important;
    flex: 0 0 100% !important;
    overflow: hidden !important;
  }

  .hero-bestseller-card .card-carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .bestseller-card-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .bestseller-cat-tag {
    font-size: 8.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #0284c7 !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
  }

  .bestseller-card-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    height: 28px !important;
    max-height: 28px !important;
    min-height: 28px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 0 0 4px 0 !important;
    word-break: break-word !important;
  }

  .bestseller-specs-line {
    font-size: 9.5px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    height: 13px !important;
    max-height: 13px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-bottom: 6px !important;
  }

  .bestseller-price-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    flex-wrap: nowrap !important;
    margin-top: auto !important;
    margin-bottom: 6px !important;
    height: 18px !important;
    overflow: hidden !important;
  }

  .bestseller-current-price {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
  }

  .bestseller-original-mrp {
    font-size: 9.5px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
  }

  .bestseller-price-row .discount-tag {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: var(--fk-green) !important;
    white-space: nowrap !important;
  }

  .bestseller-actions-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3px !important;
    width: 100% !important;
  }

  .btn-bestseller-cart {
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 6px 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  .btn-bestseller-call {
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 6px 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  .btn-bestseller-povs {
    grid-column: 1 / -1 !important;
    font-size: 8.5px !important;
    padding: 4px 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  /* --- Doorstep Services Mobile Grid (Strict 50/50 Equal Distribution) --- */
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .service-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
  }

  .service-badge {
    font-size: 8px !important;
    font-weight: 700 !important;
    padding: 1.5px 4px !important;
    border-radius: 4px !important;
    margin-bottom: 4px !important;
    align-self: flex-start !important;
  }

  .service-card .card-carousel-wrap {
    width: calc(100% + 16px) !important;
    margin: -8px -8px 6px -8px !important;
    height: 115px !important;
    min-height: 115px !important;
    max-height: 115px !important;
    aspect-ratio: auto !important;
    border-radius: 6px 6px 0 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .service-card .card-carousel-track {
    width: 100% !important;
    height: 115px !important;
    display: flex !important;
    overflow-x: auto !important;
  }

  .service-card .card-carousel-slide {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 115px !important;
    flex: 0 0 100% !important;
    overflow: hidden !important;
  }

  .service-card .card-carousel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .service-card h4 {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    height: 28px !important;
    max-height: 28px !important;
    min-height: 28px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    margin: 2px 0 4px 0 !important;
    word-break: break-word !important;
  }

  .service-meta-row {
    font-size: 9.5px !important;
    color: #64748b !important;
    gap: 4px !important;
    height: 14px !important;
    margin-bottom: 4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .service-pricing-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    margin-top: auto !important;
    margin-bottom: 6px !important;
    height: 18px !important;
    overflow: hidden !important;
  }

  .service-price {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    white-space: nowrap !important;
  }

  .service-mrp {
    font-size: 9.5px !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    white-space: nowrap !important;
  }

  .service-pricing-row .discount-tag {
    font-size: 9px !important;
    font-weight: 700 !important;
    color: var(--fk-green) !important;
    white-space: nowrap !important;
  }

  .service-card p,
  .service-card ul,
  .service-card div[style*="font-weight: 500"] {
    display: none !important;
  }

  .service-card div[style*="display: grid"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3px !important;
    width: 100% !important;
    margin-top: auto !important;
  }

  .btn-book-now-srv,
  .btn-card-call {
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 6px 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  .btn-card-buy {
    grid-column: 1 / -1 !important;
    font-size: 8.5px !important;
    padding: 4px 2px !important;
    border-radius: 4px !important;
    text-align: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }
}

.hero-bestseller-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-bestseller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #93c5fd;
}

.bestseller-badge-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 4;
}

.bestseller-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 12px;
}

.bestseller-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.hero-bestseller-card:hover .bestseller-img-wrap img {
  transform: scale(1.05);
}

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

.bestseller-cat-tag {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bestseller-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  line-height: 1.35;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}

.bestseller-card-title:hover {
  color: #0b57d0;
}

.bestseller-specs-line {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bestseller-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 12px;
}

.bestseller-current-price {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
}

.bestseller-original-mrp {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through;
}

.bestseller-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.btn-bestseller-cart {
  background: var(--fk-orange);
  color: #ffffff;
  border: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-bestseller-cart:hover {
  opacity: 0.92;
}

.btn-bestseller-call {
  background: #0284c7;
  color: #ffffff;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.15s;
}

.btn-bestseller-call:hover {
  opacity: 0.92;
}

.btn-bestseller-povs {
  grid-column: 1 / -1;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background 0.15s;
}

.btn-bestseller-povs:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.hero-bestsellers-cta {
  text-align: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.btn-view-all-bestsellers {
  background: #eff6ff;
  color: #0b57d0;
  border: 1.5px solid #bfdbfe;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-view-all-bestsellers:hover {
  background: #0b57d0;
  color: #ffffff;
  border-color: #0b57d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 87, 208, 0.2);
}

/* --- Hero AC Scrolling Images Carousel (Automated & Manual) --- */
.hero-ac-carousel {
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #0f172a;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  user-select: none;
}

@media (max-width: 650px) {
  .hero-ac-carousel {
    height: 190px;
    border-radius: 10px;
    margin-bottom: 14px;
  }
}

.hero-ac-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-ac-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-ac-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-ac-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.3) 55%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.hero-ac-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 650px) {
  .hero-ac-caption {
    padding: 12px 14px;
  }
}

.hero-ac-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-ac-title {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
}

@media (max-width: 650px) {
  .hero-ac-title {
    font-size: 15px;
  }
}

.hero-ac-subtitle {
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 650px) {
  .hero-ac-subtitle {
    font-size: 11px;
  }
}

.hero-ac-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 0;
  line-height: 1;
}

.hero-ac-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.hero-ac-arrow.prev {
  left: 12px;
}

.hero-ac-arrow.next {
  right: 12px;
}

@media (max-width: 650px) {
  .hero-ac-arrow {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }
  .hero-ac-arrow.prev { left: 8px; }
  .hero-ac-arrow.next { right: 8px; }
}

.hero-ac-dots {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 999px;
}

@media (max-width: 650px) {
  .hero-ac-dots {
    bottom: 8px;
    right: 12px;
    padding: 3px 6px;
  }
}

.hero-ac-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-ac-dot.active {
  background: #38bdf8;
  width: 18px;
  border-radius: 4px;
}

/* --- Per-Product Dynamic Notice Styles --- */
.product-card-notice {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 4px;
  margin-top: 6px;
  line-height: 1.35;
  animation: fadeInNotice 0.3s ease;
}

.product-card-notice .notice-icon {
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.modal-product-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 6px;
  margin: 10px 0 14px 0;
  line-height: 1.45;
}

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

/* ==========================================================================
   CUSTOMER AUTHENTICATION, MOBILE OTP & PROFILE SYSTEM (FLIPKART GRADE)
   ========================================================================== */

/* Header Auth Wrapper & Button */
.header-auth-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.btn-customer-auth {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-customer-auth:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.6) !important;
}

.btn-customer-auth.logged-in {
  background: #ffffff;
  color: #0b57d0 !important;
  border-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-customer-auth.logged-in:hover {
  background: #f8fafc;
}

/* Customer Profile Dropdown */
.customer-profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  overflow: hidden;
  animation: dropdownSlideIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.profile-dropdown-head {
  padding: 12px 14px;
  background: #eff6ff;
  border-bottom: 1px solid #dbeafe;
}

.profile-user-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.profile-user-phone {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
  font-family: monospace;
}

.profile-verified-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  margin-top: 4px;
}

.profile-dropdown-menu {
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}

.profile-menu-item {
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s;
}

.profile-menu-item:hover {
  background: #f1f5f9;
  color: #0b57d0;
}

.profile-menu-item.text-danger {
  color: #dc2626;
  border-top: 1px solid #f1f5f9;
  margin-top: 4px;
}

.profile-menu-item.text-danger:hover {
  background: #fee2e2;
}

.profile-order-count-badge {
  background: #0b57d0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
}

/* Auth Modal Specifics */
.auth-modal-card {
  border-radius: 12px;
  overflow: hidden;
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.auth-brand-emblem img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}

.auth-modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.auth-modal-header p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.auth-checkout-gate-banner {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  text-align: left;
  line-height: 1.4;
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
  background: #ffffff;
}

.phone-input-group:focus-within {
  border-color: #0b57d0;
  box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
}

.phone-country-code {
  background: #f8fafc;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  border-right: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  user-select: none;
}

.auth-phone-input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  outline: none;
  color: #0f172a;
  width: 100%;
}

.auth-channels-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.btn-auth-primary {
  width: 100%;
  background: #0b57d0;
  color: #ffffff;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-auth-primary:hover {
  background: #0842a0;
}

.btn-auth-whatsapp {
  width: 100%;
  background: #f0fdf4;
  color: #16a34a;
  border: 1.5px solid #86efac;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-auth-whatsapp:hover {
  background: #dcfce7;
  border-color: #16a34a;
}

.auth-terms-note {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 14px;
  line-height: 1.4;
}

.auth-terms-note a {
  color: #0b57d0;
  text-decoration: underline;
}

/* OTP Boxes Grid */
.otp-sent-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #475569;
  margin-bottom: 16px;
}

.btn-edit-phone {
  background: none;
  border: none;
  color: #0b57d0;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.otp-boxes-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 12px 0 16px 0;
}

.auth-otp-box {
  width: 48px;
  height: 52px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #0b57d0;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  outline: none;
  transition: all 0.2s;
}

@media (max-width: 400px) {
  .auth-otp-box {
    width: 42px;
    height: 48px;
    font-size: 20px;
  }
}

.auth-otp-box:focus {
  border-color: #0b57d0;
  box-shadow: 0 0 0 3px rgba(11, 87, 208, 0.15);
  background: #f0f7ff;
}

.otp-resend-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
}

.btn-resend-otp {
  background: none;
  border: none;
  color: #0b57d0;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

/* Real-Time SMS Simulator Banner (Disabled for Production) */
.sms-simulator-banner {
  display: none !important;
  position: fixed;
  top: 16px;
  right: 16px;
  max-width: 400px;
  width: calc(100% - 32px);
  background: #0f172a;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border: 1.5px solid #38bdf8;
  z-index: 10000;
  animation: smsSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes smsSlideDown {
  from { opacity: 0; transform: translateY(-20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.sms-sim-inner {
  padding: 14px 16px;
}

.sms-sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 6px;
}

.sms-sim-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #38bdf8;
  font-weight: 700;
}

.sms-sim-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sms-sim-close:hover {
  color: #ffffff;
}

.sms-sim-text {
  font-size: 13px;
  color: #f1f5f9;
  line-height: 1.45;
  margin-bottom: 10px;
}

.sms-sim-otp {
  display: inline-block;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

.sms-sim-actions {
  display: flex;
  gap: 8px;
}

.sms-sim-btn-autofill {
  flex: 1;
  background: #38bdf8;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sms-sim-btn-autofill:hover {
  opacity: 0.9;
}

.sms-sim-btn-copy {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.sms-sim-btn-copy:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Customer Orders & Bookings Modal Tabs & Cards */
.account-tabs-wrap {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 16px;
}

.account-tab-btn {
  padding: 8px 14px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.account-tab-btn.active {
  color: #0b57d0;
  border-bottom-color: #0b57d0;
}

.user-history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.user-order-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.user-order-id {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.user-order-status {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.user-order-status.confirmed {
  background: #dcfce7;
  color: #15803d;
}

.user-order-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.btn-modal-logout {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fca5a5;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* --- Direct Customer Photo Upload for "We Buy Old ACs" --- */
.old-ac-upload-dropzone {
  border: 2px dashed #93c5fd;
  background: #f8fafc;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 4px;
}

.old-ac-upload-dropzone:hover,
.old-ac-upload-dropzone.dragover {
  border-color: #0b57d0;
  background: #eff6ff;
  transform: translateY(-1px);
}

.upload-dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-dropzone-content .upload-icon {
  font-size: 32px;
  line-height: 1;
}

.upload-dropzone-content .upload-text {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.upload-dropzone-content .upload-text strong {
  color: #0b57d0;
}

.upload-dropzone-content .upload-hint {
  font-size: 12px;
  color: #64748b;
  max-width: 380px;
  line-height: 1.4;
}

.btn-choose-photos {
  background: #0b57d0;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}

.btn-choose-photos:hover {
  background: #0842a0;
  transform: translateY(-1px);
}

.old-ac-photos-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  background: #f1f5f9;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.old-ac-photo-thumb-card {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #cbd5e1;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.old-ac-photo-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-remove-photo-thumb {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 22px;
  height: 22px;
  background: rgba(220, 38, 38, 0.92);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: background 0.15s, transform 0.15s;
  z-index: 5;
}

.btn-remove-photo-thumb:hover {
  background: #b91c1c;
  transform: scale(1.1);
}

.old-ac-add-more-card {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  border: 2px dashed #93c5fd;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
  color: #0b57d0;
  font-size: 11px;
  font-weight: 700;
}

.old-ac-add-more-card:hover {
  background: #eff6ff;
  border-color: #0b57d0;
}

/* --- Legal & Compliance Policies (Payment Gateway & Razorpay Compliant) --- */
.footer-policy-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-policy-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
}

.footer-policy-title {
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-policy-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-policy-links a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.policy-sep {
  color: #64748b;
  font-size: 10px;
}

/* Policy Modal Styling */
.policy-modal-card {
  max-width: 720px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}

.policy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px 22px;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
}

.policy-header-title-group h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0 0 0;
}

.policy-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #0b57d0;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-nav-tabs {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 14px;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.policy-nav-tabs::-webkit-scrollbar {
  display: none;
}

.policy-tab-btn {
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  color: #64748b;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.policy-tab-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.policy-tab-btn.active {
  background: #0b57d0;
  color: #ffffff;
}

.policy-modal-body {
  padding: 22px;
  overflow-y: auto;
  flex: 1;
  background: #ffffff;
  color: #334155;
  line-height: 1.65;
  font-size: 13.5px;
}

.policy-content-pane h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.policy-effective-date {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 8px;
}

.policy-content-pane h5 {
  font-size: 14px;
  font-weight: 800;
  color: #1e293b;
  margin: 16px 0 6px 0;
}

.policy-content-pane p {
  margin-bottom: 10px;
}

.policy-content-pane ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.policy-content-pane li {
  margin-bottom: 6px;
}

.policy-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 22px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.policy-footer-support {
  font-size: 12px;
  color: #64748b;
}

.policy-footer-support a {
  color: #0b57d0;
  font-weight: 700;
  text-decoration: none;
}

.btn-policy-confirm {
  background: #0b57d0;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-policy-confirm:hover {
  background: #0842a0;
}


