/* ==========================================================================
   FUTURE CART - PREMIUM ELECTRONICS E-COMMERCE STYLESHEET v3.0
   Branding Theme: Deep Electric Blue (#1652F0) & Vibrant Orange (#FF6B00)
   Inspired By: Flipkart App  Amazon India  JioMart
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --fc-primary: #2874f0;
  --fc-primary-hover: #1a5dc7;
  --fc-primary-light: #ebf2fe;
  --fc-secondary: #fb641b;
  --fc-secondary-hover: #e05500;
  --fc-accent: #26a541;
  --fc-accent-light: #eaf7ed;
  --fc-yellow: #f0c14b;
  --fc-dark: #212121;
  --fc-dark-2: #424242;
  --fc-gray: #878787;
  --fc-gray-light: #c2c2c2;
  --fc-light-gray: #f1f3f6;
  --fc-border: #e0e0e0;
  --fc-bg: #f1f3f6;
  --fc-white: #ffffff;
  --fc-font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fc-shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --fc-shadow-sm: 0 1px 4px rgba(0,0,0,0.1);
  --fc-shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --fc-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --fc-shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --fc-radius: 4px;
  --fc-radius-md: 8px;
  --fc-radius-lg: 12px;
  --fc-radius-pill: 50px;
  --fc-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   BASE & RESET
   ========================================== */
*, *::before, *::after { box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--fc-font-family);
  background-color: var(--fc-bg);
  color: var(--fc-dark);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--fc-transition);
}

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

/* ==========================================
   GLOBAL CLEAN SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 6px;
  height: 0px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Hide horizontal scrollbars globally */
.overflow-x-auto,
.table-responsive,
.fc-gallery-thumbs,
.fc-nav-tabs-wrapper,
.fc-card-slider,
.fc-pills-slider,
.fc-category-filter-pills {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.overflow-x-auto::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.fc-gallery-thumbs::-webkit-scrollbar,
.fc-nav-tabs-wrapper::-webkit-scrollbar,
.fc-card-slider::-webkit-scrollbar,
.fc-pills-slider::-webkit-scrollbar,
.fc-category-filter-pills::-webkit-scrollbar {
  display: none !important;
  height: 0 !important;
}

/* ==========================================
   TOP NOTIFICATION BAR
   ========================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #172b4d 0%, #1a3a6b 50%, #172b4d 100%);
  color: #d0e1fd;
  font-size: 0.8rem;
  padding: 7px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.top-notice-bar a {
  color: #ffd166;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.2s ease;
}
.top-notice-bar a:hover {
  color: #ffffff;
  text-decoration: none !important;
  opacity: 0.95;
}
@media (max-width: 767.98px) {
  .top-notice-bar {
    display: none !important;
  }
}

/* ==========================================
   MAIN HEADER (PREMIUM FLIPKART STYLE)
   ========================================== */
.fc-main-header {
  background: linear-gradient(135deg, #2874f0 0%, #1a5dc7 50%, #1245a8 100%);
  color: var(--fc-white);
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 2px 8px rgba(40, 116, 240, 0.35);
  padding: 12px 0;
}

.fc-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--fc-white);
  letter-spacing: -0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.fc-brand-logo span.highlight {
  color: #ffd166;
  font-style: italic;
}
.fc-brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(208, 225, 253, 0.85);
  margin-top: -4px;
  letter-spacing: 0.3px;
}

/* Header Live Search */
.fc-search-wrapper {
  position: relative;
  width: 100%;
}
.fc-search-input {
  width: 100%;
  padding: 11px 52px 11px 20px;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  outline: none;
  background: #fff;
  color: var(--fc-dark);
  transition: box-shadow 0.2s ease;
}
.fc-search-input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3), 0 2px 8px rgba(0,0,0,0.15);
}
.fc-search-input::placeholder { color: #aaa; }
.fc-search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--fc-primary);
  font-size: 1.1rem;
  padding: 8px 14px;
  cursor: pointer;
}

.fc-search-results-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--fc-white);
  border-radius: 4px;
  box-shadow: var(--fc-shadow-xl);
  max-height: 380px;
  overflow-y: auto;
  z-index: 1050;
  display: none;
  border: 1px solid var(--fc-border);
}
.fc-search-results-dropdown.active { display: block; }
.fc-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--fc-light-gray);
  color: var(--fc-dark);
  font-size: 0.88rem;
}
.fc-search-item:hover {
  background: var(--fc-primary-light);
  color: var(--fc-primary);
}
.fc-search-item:last-child { border-bottom: none; }
.fc-search-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background: #f8f8f8;
}

/* Header Action Nav Items */
.fc-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.fc-nav-link {
  color: var(--fc-white);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 4px;
  position: relative;
  letter-spacing: 0.1px;
  transition: background 0.15s ease;
}
.fc-nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--fc-white);
}

.badge-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: var(--fc-secondary);
  color: var(--fc-white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 10px;
  line-height: 1;
  min-width: 17px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ==========================================
   CATEGORY STRIP NAVIGATION (STICKY)
   ========================================== */

.fc-category-strip {
  background-color: var(--fc-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  border-bottom: 1px solid var(--fc-border);
  padding: 14px 0 10px 0;
  position: relative;
}
.fc-cat-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.fc-cat-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--fc-border);
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  color: var(--fc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.fc-cat-slider-wrapper:hover .fc-cat-nav-btn,
.fc-category-strip:hover .fc-cat-nav-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.fc-cat-nav-btn:hover {
  background: var(--fc-primary);
  color: var(--fc-white);
  box-shadow: 0 4px 14px rgba(40,116,240,0.4);
  transform: translateY(-50%) scale(1.12);
}
.fc-cat-nav-prev { left: -14px; }
.fc-cat-nav-next { right: -14px; }

.fc-category-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 12px 4px 12px;
  width: 100%;
}
.fc-category-scroll::-webkit-scrollbar { display: none; }

.fc-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px;
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
  transition: var(--fc-transition);
}
.fc-cat-item:hover { transform: translateY(-3px); }

.fc-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ebf2fe 0%, #dce9fd 100%);
  color: var(--fc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--fc-transition);
  box-shadow: 0 2px 6px rgba(40,116,240,0.12);
}
.fc-cat-item:hover .fc-cat-icon {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%);
  color: var(--fc-white);
  box-shadow: 0 4px 12px rgba(40,116,240,0.3);
}
.fc-cat-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fc-dark-2);
  white-space: nowrap;
}
.fc-cat-item:hover .fc-cat-name { color: var(--fc-primary); }

/* Active Category State */
.fc-cat-item.active .fc-cat-icon {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%) !important;
  color: var(--fc-white) !important;
  box-shadow: 0 4px 14px rgba(40,116,240,0.4) !important;
  transform: scale(1.08);
}
.fc-cat-item.active .fc-cat-name {
  color: var(--fc-primary) !important;
  font-weight: 800 !important;
}
.fc-cat-item.active {
  position: relative;
}
.fc-cat-item.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--fc-primary);
  border-radius: 2px;
}

/* Category Dropdown */
.fc-cat-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  min-width: 220px;
}
.fc-cat-dropdown-wrapper:hover .fc-cat-sub-menu {
  display: block;
  animation: fadeIn 0.15s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================
   HERO BANNER CAROUSEL SLIDER
   ========================================== */
.fc-hero-slider {
  margin-top: 14px;
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  box-shadow: var(--fc-shadow-lg);
  background-color: #0c182b;
  height: 280px;
  position: relative;
}

/* Carousel Control Arrows - Hidden by default, show on Slider Hover */
.fc-hero-slider .carousel-control-prev,
.fc-hero-slider .carousel-control-next {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  margin: 0 15px;
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}

.fc-hero-slider:hover .carousel-control-prev,
.fc-hero-slider:hover .carousel-control-next {
  opacity: 1 !important;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.fc-hero-slider .carousel-control-prev:hover,
.fc-hero-slider .carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.85);
}

.fc-hero-banner-img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--fc-radius-md);
}
.fc-slide-content {
  max-width: 520px;
  z-index: 2;
  position: relative;
}
.fc-slide-badge {
  background: linear-gradient(90deg, var(--fc-secondary) 0%, #ff8c42 100%);
  color: var(--fc-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--fc-radius-pill);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(251,100,27,0.35);
}
.fc-slide-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.fc-slide-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
  font-weight: 400;
}
.btn-fc-primary {
  background: linear-gradient(135deg, var(--fc-secondary) 0%, #ff8c42 100%);
  color: var(--fc-white);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--fc-radius);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(251,100,27,0.4);
  transition: var(--fc-transition);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.btn-fc-primary:hover {
  background: linear-gradient(135deg, var(--fc-secondary-hover) 0%, var(--fc-secondary) 100%);
  color: var(--fc-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251,100,27,0.4);
}

/* ==========================================
   SECTION CARDS & HEADERS
   ========================================== */
.fc-section-card {
  background: var(--fc-white);
  border-radius: var(--fc-radius-md);
  box-shadow: var(--fc-shadow-sm);
  padding: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
}
.fc-section-card:hover {
  box-shadow: var(--fc-shadow-md);
}
.fc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fc-light-gray);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.fc-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fc-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.fc-countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #fff3eb, #fff8f0);
  color: var(--fc-secondary);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--fc-radius-pill);
  font-size: 0.85rem;
  border: 1px solid #ffe0cc;
}
.btn-view-all {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%);
  color: var(--fc-white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--fc-radius);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--fc-transition);
  box-shadow: 0 2px 8px rgba(40,116,240,0.2);
}
.btn-view-all:hover {
  background: linear-gradient(135deg, #1a5dc7 0%, #124091 100%);
  color: var(--fc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40,116,240,0.3);
}

/* ==========================================
   PRODUCT CARDS (PREMIUM FLIPKART STYLE)
   ========================================== */
.fc-product-card {
  background: var(--fc-white);
  border: 1px solid #f0f0f0;
  border-radius: var(--fc-radius-md);
  padding: 14px;
  position: relative;
  transition: var(--fc-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.fc-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--fc-radius-md);
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  pointer-events: none;
  z-index: 1;
}
.fc-product-card:hover {
  box-shadow: 0 8px 28px rgba(40,116,240,0.14);
  transform: translateY(-4px);
  border-color: transparent;
}
.fc-product-card:hover::before {
  border-color: rgba(40,116,240,0.2);
}

.fc-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--fc-accent-light);
  color: var(--fc-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--fc-radius-pill);
  z-index: 2;
  letter-spacing: 0.3px;
}
.fc-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
  cursor: pointer;
  transition: var(--fc-transition);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.fc-wishlist-btn:hover, .fc-wishlist-btn.active {
  color: #e53e3e;
  background: #fff0f0;
  transform: scale(1.1);
}

.fc-product-img-wrapper {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  background: #fafafa;
}
.fc-product-img-wrapper img {
  max-height: 165px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.fc-product-card:hover .fc-product-img-wrapper img {
  transform: scale(1.08);
}

.fc-product-brand {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fc-gray);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.fc-product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fc-dark);
  margin: 4px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
  line-height: 1.4;
}

.fc-product-rating-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.fc-product-rating-row:hover {
  opacity: 0.85;
}
.fc-product-rating-row:hover .fc-rating-count {
  text-decoration: underline;
  color: var(--fc-primary);
}
.fc-rating-pill {
  background: linear-gradient(135deg, var(--fc-accent) 0%, #1d8a34 100%);
  color: var(--fc-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.fc-rating-count {
  font-size: 0.75rem;
  color: var(--fc-gray-light);
  transition: color 0.15s ease;
}

.fc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.fc-current-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fc-dark);
}
.fc-original-price {
  font-size: 0.82rem;
  color: var(--fc-gray);
  text-decoration: line-through;
}
.fc-discount-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--fc-accent);
}

.fc-card-actions {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-top: 8px;
}
.btn-fc-cart {
  flex: 1;
  background: linear-gradient(135deg, var(--fc-secondary) 0%, #ff8c42 100%);
  color: var(--fc-white);
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: var(--fc-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(251,100,27,0.25);
  transition: var(--fc-transition);
  letter-spacing: 0.2px;
}
.btn-fc-cart:hover {
  background: linear-gradient(135deg, var(--fc-secondary-hover) 0%, var(--fc-secondary) 100%);
  color: var(--fc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(251,100,27,0.35);
}
.btn-fc-quickview {
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: var(--fc-white);
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 11px;
  border-radius: var(--fc-radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: var(--fc-transition);
  box-shadow: 0 2px 8px rgba(229,62,62,0.25);
}
.btn-fc-quickview:hover {
  background: linear-gradient(135deg, #c53030 0%, #9b2626 100%);
  color: var(--fc-white);
  transform: translateY(-1px);
}

/* Product Card Action Button Centering Fix */
.fc-card-actions > * {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap;
  line-height: 1;
}
.fc-card-actions .btn-outline-primary,
.fc-card-actions .btn-outline-secondary,
.fc-card-actions .btn-outline-info,
.fc-card-actions a.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 10px !important;
  font-size: 0.82rem !important;
  font-weight: 700;
  border-radius: var(--fc-radius);
  line-height: 1;
  gap: 5px;
  text-decoration: none;
}

/* ==========================================
   TRUST BADGES & FEATURES
   ========================================== */
.fc-trust-feature {
  background: var(--fc-white);
  border-radius: var(--fc-radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--fc-shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--fc-transition);
}
.fc-trust-feature:hover {
  box-shadow: var(--fc-shadow-md);
  transform: translateY(-2px);
}
.fc-trust-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-primary-light) 0%, #d0e4fd 100%);
  color: var(--fc-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(40,116,240,0.15);
  transition: var(--fc-transition);
}
.fc-trust-feature:hover .fc-trust-icon {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(40,116,240,0.3);
}
.fc-trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--fc-dark);
}
.fc-trust-desc {
  font-size: 0.78rem;
  color: var(--fc-gray);
  margin: 0;
}

/* ==========================================
   BRAND LOGOS STRIP
   ========================================== */
.fc-brand-logo-card {
  background: var(--fc-white);
  border: 1px solid #f0f0f0;
  border-radius: var(--fc-radius-md);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 80px;
  transition: var(--fc-transition);
  cursor: pointer;
}
.fc-brand-logo-card:hover {
  border-color: var(--fc-primary);
  box-shadow: 0 4px 14px rgba(40,116,240,0.15);
  transform: translateY(-2px);
}
.fc-brand-logo-card img {
  height: 36px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.2s ease;
}
.fc-brand-logo-card:hover img { filter: grayscale(0); }

/* ==========================================
   FOOTER STYLING (PREMIUM)
   ========================================== */
.fc-footer {
  background: linear-gradient(180deg, #172b4d 0%, #0f1e35 100%);
  color: #94a3b8;
  font-size: 0.85rem;
  padding-top: 48px;
  margin-top: 48px;
  border-top: 3px solid var(--fc-primary);
}
.fc-footer-heading {
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.fc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fc-footer-links li { margin-bottom: 9px; }
.fc-footer-links a {
  color: #e2e8f0;
  font-size: 0.82rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.fc-footer-links a:hover {
  color: #ffd166;
  padding-left: 4px;
}
.fc-company-info {
  color: #cbd5e1;
  line-height: 1.8;
}

.fc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 28px;
  color: #cbd5e1 !important;
  font-size: 0.85rem;
  line-height: 1.6;
}
.fc-footer-bottom-link {
  color: #cbd5e1 !important;
  transition: color 0.2s ease;
}
.fc-footer-bottom-link:hover {
  color: #ffd166 !important;
  text-decoration: underline !important;
}

@media (max-width: 767.98px) {
  .fc-footer-bottom {
    padding-bottom: 20px;
    text-align: center;
  }
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.fc-floating-btn-group {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1045;
}
.fc-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fc-white);
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: var(--fc-transition);
}
.fc-float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  color: var(--fc-white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.fc-float-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}
.fc-float-call {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%);
}

/* Floating Button Right-Side Tooltip */
.fc-float-tooltip {
  position: relative;
}
.fc-float-tooltip::before {
  content: attr(data-float-tip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 30, 53, 0.92);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 11px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
  z-index: 2000;
}
.fc-float-tooltip::after {
  content: '';
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: rgba(15, 30, 53, 0.92);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2000;
}
.fc-float-tooltip:hover::before,
.fc-float-tooltip:hover::after {
  opacity: 1;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.fc-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-primary) 0%, #1a5dc7 100%);
  color: var(--fc-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1045;
  box-shadow: 0 4px 16px rgba(40,116,240,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease;
}
.fc-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fc-back-to-top:hover {
  background: linear-gradient(135deg, #1a5dc7 0%, var(--fc-primary) 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(40,116,240,0.45);
}

/* Generic FC Tooltip  JS powered (appended to body, position:fixed)
   Works even inside overflow:hidden containers like product cards.
   JS engine is in custom.js (fcInitTooltips)                          */
[data-fc-tooltip] { cursor: pointer; }

/* Ensure all interactive clickable elements explicitly show hand cursor pointer */
a, button, input[type="submit"], input[type="button"], select,
.btn, .btn-fc-primary, .btn-fc-cart, .fc-nav-link, [data-fc-modal],
.fc-product-rating-row, .fc-card-actions button, .fc-card-actions a,
.fc-quickview-btn, .fc-wishlist-toggle-btn, .fc-trust-feature,
[onclick] {
  cursor: pointer !important;
}

/* The floating tooltip pill  created & positioned by JS */
.fc-tooltip-pill {
  position: fixed;
  z-index: 9999;
  background: rgba(15, 30, 53, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  pointer-events: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.22);
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.fc-tooltip-pill.visible { opacity: 1; }

/* Default Caret (Bottom pointing down) */
.fc-tooltip-pill::after,
.fc-tooltip-pill.pos-top::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(15, 30, 53, 0.94);
}

/* Caret for Left-side Tooltip (Points Right towards button) */
.fc-tooltip-pill.pos-left::after {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-color: transparent;
  border-left-color: rgba(15, 30, 53, 0.94);
}

/* Caret for Bottom-side Tooltip (Points Up towards top header) */
.fc-tooltip-pill.pos-bottom::after {
  top: auto;
  bottom: 100%;
  left: 80%;
  transform: translateX(-50%);
  border-color: transparent;
  border-bottom-color: rgba(15, 30, 53, 0.94);
}

/* ==========================================
   FLIPKART STYLE MOBILE APP DOCK
   ========================================== */
@media (max-width: 767.98px) {
  body { padding-bottom: 65px !important; }
  .fc-floating-btn-group { bottom: 75px !important; }
  .fc-back-to-top { bottom: 75px !important; }
  .fc-mobile-app-dock {
    height: 62px;
    background: var(--fc-white) !important;
    border-top: 1px solid #e8e8e8 !important;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08) !important;
  }
  .fc-mobile-app-dock .fc-app-tab {
    color: #9e9e9e;
    transition: var(--fc-transition);
  }
  .fc-mobile-app-dock .fc-app-tab i { margin-bottom: 2px; }
  .fc-mobile-app-dock .fc-app-tab:active,
  .fc-mobile-app-dock .fc-app-tab.active {
    color: var(--fc-primary) !important;
  }
  .fc-slide-title { font-size: 1.6rem; }
  .fc-slide-card { min-height: 260px; padding: 24px 20px; }
  .fc-brand-sub { display: block !important; }
}

/* ==========================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================== */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(40,116,240,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(40,116,240,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,116,240,0); }
}
@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce-in {
  0%   { transform: scale(0.8); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Loading skeleton shimmer */
.fc-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Toast Notification */
.fc-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  min-width: 280px;
  max-width: 360px;
  background: var(--fc-white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fc-dark);
  border-left: 4px solid var(--fc-primary);
  animation: slide-in-up 0.3s ease-out;
  transition: all 0.3s ease;
}
.fc-toast.success { border-left-color: var(--fc-accent); }
.fc-toast.warning { border-left-color: var(--fc-yellow); }
.fc-toast.error   { border-left-color: #e53e3e; }

/* ==========================================
   PILL & BADGE COMPONENTS
   ========================================== */
.fc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--fc-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--fc-transition);
}
.fc-pill-primary {
  background: var(--fc-primary-light);
  color: var(--fc-primary);
  border: 1.5px solid rgba(40,116,240,0.2);
}
.fc-pill-primary:hover, .fc-pill-primary.active {
  background: var(--fc-primary);
  color: var(--fc-white);
  border-color: var(--fc-primary);
}
.fc-pill-orange {
  background: #fff3eb;
  color: var(--fc-secondary);
  border: 1.5px solid rgba(251,100,27,0.2);
}
.fc-pill-orange:hover {
  background: var(--fc-secondary);
  color: var(--fc-white);
}

/* ==========================================
   FILTERS & SIDEBAR
   ========================================== */
.fc-filter-sidebar {
  background: var(--fc-white);
  border-radius: var(--fc-radius-md);
  box-shadow: var(--fc-shadow-sm);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.fc-filter-head {
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fc-dark);
  border-bottom: 1px solid var(--fc-light-gray);
  background: linear-gradient(90deg, #fafbff 0%, #f5f8ff 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fc-filter-section {
  padding: 16px 18px;
  border-bottom: 1px solid var(--fc-light-gray);
}
.fc-filter-section:last-child { border-bottom: none; }
.fc-filter-section-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--fc-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.fc-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--fc-dark-2);
  cursor: pointer;
  padding: 5px 0;
  transition: color 0.15s ease;
}
.fc-filter-option:hover { color: var(--fc-primary); }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
  font-size: 0.8rem;
  background: none;
  padding: 0;
  margin: 0;
  gap: 2px;
}
.breadcrumb-item a {
  color: var(--fc-primary);
  font-weight: 500;
}
.breadcrumb-item a:hover { color: var(--fc-primary-hover); }
.breadcrumb-item.active { color: var(--fc-gray); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--fc-gray-light); }

/* ==========================================
   FORM ELEMENTS STYLING
   ========================================== */
.form-control:focus, .form-select:focus {
  border-color: var(--fc-primary) !important;
  box-shadow: 0 0 0 3px rgba(40,116,240,0.12) !important;
}
.form-check-input:checked {
  background-color: var(--fc-primary);
  border-color: var(--fc-primary);
}

/* ==========================================
   RATING STARS
   ========================================== */
.fc-stars {
  display: inline-flex;
  gap: 1px;
  color: #ffc107;
  font-size: 0.8rem;
}

/* ==========================================
   COMPARE TABLE ENHANCEMENTS
   ========================================== */
.table > thead > tr > th {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%) !important;
  font-weight: 700;
  color: var(--fc-dark);
  border-color: var(--fc-border);
}
.table > tbody > tr:hover > td {
  background: rgba(40,116,240,0.02);
}
.table > tbody > tr > th {
  font-weight: 600;
  color: var(--fc-dark-2);
  font-size: 0.85rem;
  background: #fafbff;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-fc-primary { color: var(--fc-primary) !important; }
.text-fc-secondary { color: var(--fc-secondary) !important; }
.text-fc-accent { color: var(--fc-accent) !important; }
.bg-fc-primary { background-color: var(--fc-primary) !important; }
.bg-fc-secondary { background-color: var(--fc-secondary) !important; }
.bg-fc-light { background-color: var(--fc-light-gray) !important; }
.fc-divider { border: none; border-top: 1px solid var(--fc-light-gray); margin: 16px 0; }

/* Hover Lift Utility */
.hover-lift { transition: var(--fc-transition); }
.hover-lift:hover { transform: translateY(-3px); box-shadow: var(--fc-shadow-md); }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--fc-primary) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Utilities */
@media (max-width: 576px) {
  .fc-section-card { padding: 16px 14px; }
  .fc-product-img-wrapper { height: 160px; }
  .fc-product-name { font-size: 0.85rem; }
  .fc-current-price { font-size: 1rem; }
}

/* ==========================================
   PROMOTIONAL BANNER STRIP
   ========================================== */
.fc-promo-strip {
  margin-bottom: 4px;
}
.fc-promo-banner-link {
  display: block;
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--fc-shadow-md);
  transition: var(--fc-transition);
}
.fc-promo-banner-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  border-radius: var(--fc-radius-md);
}
.fc-promo-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--fc-shadow-xl);
}
.fc-promo-banner-link:hover::after {
  background: rgba(0, 0, 0, 0.06);
}
.fc-promo-img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--fc-radius-md);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-promo-banner-link:hover .fc-promo-img {
  transform: scale(1.02);
}

@media (max-width: 767.98px) {
  .fc-promo-img { height: 90px; }
  .fc-hero-slider, .fc-hero-banner-img {
    height: 160px !important;
  }
  .fc-category-strip {
    position: relative !important;
    top: auto !important;
    padding: 8px 0 !important;
  }
  .fc-cat-item {
    min-width: 86px !important;
    flex-shrink: 0 !important;
  }
  .fc-cat-icon {
    width: 54px !important;
    height: 54px !important;
    font-size: 1.4rem !important;
  }
  .fc-cat-name {
    font-size: 0.74rem !important;
  }
}

/* ==========================================
   FLOATING CONTACT BUTTONS (BOTTOM LEFT)
   ========================================== */
.fc-floating-btn-group {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offcanvas {
  z-index: 1055 !important;
}
.offcanvas-backdrop {
  z-index: 1050 !important;
}
.fc-float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none !important;
}
.fc-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #ffffff !important;
}
.fc-float-whatsapp {
  background-color: #25d366;
}
.fc-float-call {
  background-color: #0d6efd;
}
@media (max-width: 767.98px) {
  .fc-floating-btn-group {
    bottom: 70px;
    left: 15px;
  }
  .fc-float-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* ==========================================
   PILLS CATEGORY FILTER SLIDER ARROWS
   (Moved from index.php inline <style>)
   ========================================== */
.fc-pills-slider-wrapper { position: relative; }
.fc-category-filter-pills::-webkit-scrollbar { display: none; }
.fc-pills-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #424242;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}
.fc-pills-arrow:hover {
  background: var(--fc-primary);
  color: #fff;
  border-color: var(--fc-primary);
  box-shadow: 0 4px 12px rgba(40,116,240,0.3);
}
.fc-pills-arrow-left  { left: 0; }
.fc-pills-arrow-right { right: 0; }
.fc-pills-arrow.hidden { opacity: 0; pointer-events: none; }

/* ==========================================
   TRUST PRO CARDS  (index.php service cards)
   (Moved from index.php inline <style>)
   ========================================== */
.fc-trust-pro-card {
  border-radius: 12px;
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.fc-trust-pro-card::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  pointer-events: none;
}
.fc-trust-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.fc-trust-pro-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.fc-trust-pro-body { flex: 1; }
.fc-trust-pro-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #212121;
  line-height: 1.3;
  margin-bottom: 3px;
}
.fc-trust-pro-sub {
  font-size: 0.74rem;
  color: #666;
  line-height: 1.4;
}
.fc-trust-pro-badge {
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  align-self: flex-start;
}
@media (max-width: 576px) {
  .fc-trust-pro-title { font-size: 0.8rem; }
  .fc-trust-pro-sub   { font-size: 0.68rem; }
  .fc-trust-pro-icon  { width: 42px; height: 42px; font-size: 1.1rem; border-radius: 10px; }
}


/* ============================================================
   UNIVERSAL QUICK VIEW MODAL   Premium Design
   ============================================================ */

/* Dialog sizing */
.fc-qv-dialog { max-width: 900px; }

/* Modal wrapper */
.fc-qv-content {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

/*  Header  */
.fc-qv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: var(--fc-primary);
  color: #fff;
}
.fc-qv-header-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.fc-qv-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.fc-qv-close:hover { background: rgba(255,255,255,0.32); }

/*  Body  two-column  */
.fc-qv-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 420px;
  max-height: 82vh;
  overflow-y: auto;
}

/*  LEFT: Image Column  */
.fc-qv-img-col {
  background: #f7f9fc;
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-right: 1px solid #eee;
}
.fc-qv-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--fc-secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  z-index: 2;
}
.fc-qv-img-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.fc-qv-main-img {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.fc-qv-img-wrap:hover .fc-qv-main-img { transform: scale(1.04); }

/* Thumbnail strip */
.fc-qv-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.fc-qv-thumb {
  width: 52px; height: 52px;
  object-fit: contain;
  border: 2px solid var(--fc-border);
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  padding: 3px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.fc-qv-thumb:hover,
.fc-qv-thumb.active {
  border-color: var(--fc-primary);
  box-shadow: 0 0 0 2px rgba(40,116,240,0.2);
}

/*  RIGHT: Info Column  */
.fc-qv-info-col {
  padding: 22px 24px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Brand + Category meta */
.fc-qv-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.fc-qv-brand {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fc-primary);
}
.fc-qv-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fc-gray);
  background: var(--fc-light-gray);
  padding: 2px 8px;
  border-radius: 50px;
}

/* Product name */
.fc-qv-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fc-dark);
  line-height: 1.4;
  margin: 0 0 10px;
}

/* Stars */
.fc-qv-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.fc-qv-stars { display: flex; gap: 2px; font-size: 0.82rem; }
.fc-qv-rating-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--fc-accent);
  padding: 2px 8px;
  border-radius: 5px;
}
.fc-qv-review-count { font-size: 0.78rem; color: var(--fc-gray); }

/* Divider */
.fc-qv-divider {
  height: 1px;
  background: var(--fc-border);
  margin: 10px 0 14px;
}

/* Price block */
.fc-qv-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.fc-qv-price {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--fc-dark);
  line-height: 1;
}
.fc-qv-original {
  font-size: 0.95rem;
  color: var(--fc-gray);
  text-decoration: line-through;
}
.fc-qv-off {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fc-accent);
  background: var(--fc-accent-light);
  padding: 3px 9px;
  border-radius: 5px;
}
.fc-qv-savings {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fc-accent);
  background: var(--fc-accent-light);
  padding: 5px 12px;
  border-radius: 6px;
  margin: 6px 0 10px;
  display: inline-flex;
  align-items: center;
}

/* Stock */
.fc-qv-stock {
  font-size: 0.82rem;
  font-weight: 700;
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fc-qv-stock.in  { color: var(--fc-accent); }
.fc-qv-stock.out { color: #e53935; }
.fc-qv-low-stock { font-weight: 600; color: #e53935; }

/* Specs table */
.fc-qv-specs-wrap {
  background: var(--fc-light-gray);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 4px 0 14px;
}
.fc-qv-specs-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--fc-primary);
  margin-bottom: 8px;
}
.fc-qv-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.fc-qv-spec-key {
  color: var(--fc-gray);
  font-weight: 600;
  width: 42%;
  padding: 4px 6px 4px 0;
  vertical-align: top;
}
.fc-qv-spec-val {
  color: var(--fc-dark);
  font-weight: 500;
  padding: 4px 0;
}
.fc-qv-specs-table tr + tr td { border-top: 1px solid #e8e8e8; }

/*  Primary Action Buttons  */
.fc-qv-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.fc-qv-btn-cart,
.fc-qv-btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}
.fc-qv-btn-cart {
  background: var(--fc-secondary);
  color: #fff;
}
.fc-qv-btn-cart:hover {
  background: var(--fc-secondary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(251,100,27,0.32);
}
.fc-qv-btn-detail {
  background: #fff;
  color: var(--fc-primary);
  border: 2px solid var(--fc-primary);
}
.fc-qv-btn-detail:hover {
  background: var(--fc-primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(40,116,240,0.28);
}

/*  Secondary row: Wishlist + Compare  */
.fc-qv-secondary-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.fc-qv-sec-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 10px;
  background: var(--fc-light-gray);
  border: 1px solid var(--fc-border);
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fc-dark-2);
  cursor: pointer;
  transition: all 0.18s ease;
}
.fc-qv-sec-btn:hover {
  background: var(--fc-primary-light);
  border-color: var(--fc-primary);
  color: var(--fc-primary);
}

/* SKU / Product Code */
.fc-qv-code {
  font-size: 0.7rem;
  color: var(--fc-gray);
  margin-top: auto;
  padding-top: 8px;
}
.fc-qv-code span { font-family: monospace; color: var(--fc-dark-2); }

/* Loading state */
.fc-qv-loader {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--fc-gray);
  grid-column: 1 / -1;
}

/*  Responsive mobile  */
@media (max-width: 640px) {
  .fc-qv-dialog { max-width: 100%; margin: 0.5rem; }
  .fc-qv-body { grid-template-columns: 1fr; max-height: 90vh; }
  .fc-qv-img-col { border-right: none; border-bottom: 1px solid #eee; padding: 16px; }
  .fc-qv-main-img { max-height: 200px; }
  .fc-qv-info-col { padding: 16px; }
  .fc-qv-actions { grid-template-columns: 1fr; }
  .fc-qv-price { font-size: 1.4rem; }
  .fc-qv-name { font-size: 0.95rem; }
}

/* ============================================================
   2-COLUMN PRODUCT GRID ON MOBILE (FLIPKART APP STYLE)
   ============================================================ */
@media (max-width: 575.98px) {
  .fc-product-card {
    padding: 10px 8px !important;
    border-radius: 10px !important;
  }
  .fc-product-img-wrapper {
    height: 130px !important;
    padding: 6px !important;
    margin-bottom: 6px !important;
  }
  .fc-product-brand {
    font-size: 0.64rem !important;
    margin-bottom: 2px !important;
  }
  .fc-product-name {
    font-size: 0.8rem !important;
    line-height: 1.25 !important;
    height: 2.5em !important;
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .fc-product-rating-row {
    gap: 4px !important;
    margin-bottom: 4px !important;
  }
  .fc-rating-pill {
    font-size: 0.65rem !important;
    padding: 1px 5px !important;
  }
  .fc-rating-count {
    font-size: 0.68rem !important;
  }
  .fc-price-row {
    gap: 4px !important;
    margin-bottom: 6px !important;
  }
  .fc-current-price {
    font-size: 0.95rem !important;
  }
  .fc-original-price {
    font-size: 0.74rem !important;
  }
  .fc-discount-tag {
    font-size: 0.68rem !important;
  }
  .fc-card-actions {
    gap: 4px !important;
    margin-top: 4px !important;
  }
  .fc-card-actions .btn-fc-cart {
    padding: 6px 6px !important;
    font-size: 0.74rem !important;
  }
  .fc-card-actions .btn-fc-quickview {
    padding: 6px 8px !important;
    font-size: 0.74rem !important;
  }
  .fc-wishlist-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
    top: 6px !important;
    right: 6px !important;
  }
  .fc-card-badge {
    font-size: 0.6rem !important;
    padding: 2px 6px !important;
    top: 6px !important;
    left: 6px !important;
  }
}

/* =============================================================
   MOBILE 1-LINE HEADER & NATIVE APP-STYLE DRAWER
   ============================================================= */
.fc-header-top-row {
  min-height: 44px;
}
.fc-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.fc-mobile-menu-btn {
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .fc-main-header {
    padding: 8px 0 !important;
  }
  .fc-header-top-row {
    min-height: 38px;
  }
  .fc-logo-img {
    height: 30px !important;
  }
  .fc-brand-logo {
    font-size: 1.05rem !important;
    gap: 5px !important;
    letter-spacing: -0.3px;
  }
  .fc-brand-sub {
    font-size: 0.58rem !important;
  }
  .fc-header-actions {
    gap: 8px !important;
  }
  .fc-nav-link {
    padding: 6px 8px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
  }
  .fc-nav-link i {
    font-size: 1.18rem !important;
  }
  .fc-nav-link .badge-count {
    top: -3px !important;
    right: -3px !important;
    font-size: 0.62rem !important;
    padding: 0 4px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    border: 1.5px solid #2874f0 !important;
    border-radius: 50% !important;
  }
}

/* ── NATIVE APP DRAWER (Flipkart / Amazon Mobile App Style) ── */
.fc-app-drawer {
  width: 290px !important;
  max-width: 82vw !important;
  border-top-right-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  box-shadow: 8px 0 35px rgba(0, 0, 0, 0.35) !important;
  border: none !important;
  overflow: hidden !important;
}
.fc-drawer-header {
  background: linear-gradient(135deg, #2874f0 0%, #1a5dc7 100%);
  padding: 16px 16px 18px 16px;
  color: #ffffff;
}
.fc-drawer-user-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 12px;
  border-radius: 12px;
}
.fc-drawer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #2874f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.fc-drawer-body {
  background: #f8fafc;
  overflow-y: auto;
}
.fc-drawer-section {
  background: #ffffff;
  margin-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
  padding: 6px 0;
}
.fc-drawer-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
  padding: 8px 18px 4px 18px;
  text-transform: uppercase;
}
.fc-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  color: #1e293b;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.fc-drawer-item:hover, .fc-drawer-item:active {
  background: #f1f5f9;
  color: #2874f0;
}
.fc-drawer-item.active {
  background: #eff6ff;
  color: #2874f0;
  font-weight: 700;
}
.fc-drawer-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fc-drawer-label {
  flex-grow: 1;
  font-size: 0.86rem;
}
.fc-drawer-arrow {
  font-size: 0.75rem;
  color: #cbd5e1;
}
.fc-drawer-item:hover .fc-drawer-arrow {
  color: #2874f0;
  transform: translateX(2px);
  transition: transform 0.15s ease;
}

/* ── PRODUCT PAGE MAIN & SUB ACTION BUTTONS ── */
.fc-btn-product-cart {
  background: #ff9f00 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  border: none !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 4px rgba(255, 159, 0, 0.25) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  min-height: 38px;
}
.fc-btn-product-cart:hover {
  background: #f39700 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(255, 159, 0, 0.35) !important;
}
.fc-btn-product-buy {
  background: #fb641b !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
  border: none !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 4px rgba(251, 100, 27, 0.25) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  min-height: 38px;
}
.fc-btn-product-buy:hover {
  background: #f45b10 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(251, 100, 27, 0.35) !important;
}
.fc-btn-sub-action {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 7px 10px !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}
.fc-btn-sub-action:hover, .fc-btn-sub-action:focus {
  background: #eff6ff !important;
  border-color: #2874f0 !important;
  color: #2874f0 !important;
  box-shadow: 0 3px 10px rgba(40, 116, 240, 0.15) !important;
}

/* ── ADD TO COMPARE BUTTON (NO WHITE FONT ON HOVER) ── */
.btn-fc-compare {
  background: #f8fafc !important;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.btn-fc-compare:hover, .btn-fc-compare:focus {
  background: #e8f4fd !important;
  color: #2874f0 !important;
  border-color: #2874f0 !important;
}
.btn-fc-compare:hover i, .btn-fc-compare:focus i {
  color: #2874f0 !important;
}

/* ── CARD BADGE (SOFT, READABLE, HIGH CONTRAST) ── */
.fc-card-badge {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border: 1px solid #bfdbfe !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  z-index: 2 !important;
  letter-spacing: 0.2px !important;
  max-width: calc(100% - 46px) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}

/* ── DRAWER LOGIN BUTTON ── */
.fc-drawer-login-btn {
  background: #ffd166 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  border-radius: 50px !important;
  padding: 5px 12px !important;
  border: none !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}
.fc-drawer-login-btn:hover {
  background: #ffc73a !important;
  color: #0f172a !important;
}

/* ── MOBILE FIXED BOTTOM NAV & ZERO WHITE OVERFLOW ── */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 54px !important;
  }
  .fc-mobile-bottom-nav {
    height: 52px !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
  }
}

/* ── MODERN SLEEK BREADCRUMB ── */
.fc-breadcrumb, .breadcrumb {
  font-size: 0.78rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  list-style: none;
  scrollbar-width: none;
}
.fc-breadcrumb::-webkit-scrollbar, .breadcrumb::-webkit-scrollbar {
  display: none;
}
.fc-breadcrumb-item, .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: #64748b;
  font-weight: 500;
}
.fc-breadcrumb-item a, .breadcrumb-item a {
  color: #2874f0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}
.fc-breadcrumb-item a:hover, .breadcrumb-item a:hover {
  color: #1a5dc7;
  text-decoration: underline;
}
.fc-breadcrumb-separator {
  color: #94a3b8;
  font-size: 0.65rem;
  margin: 0 8px;
  display: inline-flex;
  align-items: center;
}
.fc-breadcrumb-item.active, .breadcrumb-item.active {
  color: #1e293b;
  font-weight: 600;
}

/* ── PRODUCT TITLE BADGE PILLS ── */
.fc-pill-brand {
  background: #eff6ff !important;
  color: #1d4ed8 !important;
  border: 1px solid #bfdbfe !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  padding: 3px 10px !important;
  border-radius: 50px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px;
}
.fc-pill-cat {
  background: #f8fafc !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0 !important;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  padding: 3px 10px !important;
  border-radius: 50px !important;
}
.fc-pill-code {
  background: #f1f5f9 !important;
  color: #64748b !important;
  border: 1px solid #e2e8f0 !important;
  font-family: var(--bs-font-monospace, monospace) !important;
  font-size: 0.72rem !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
}

/* ── REVIEW LOGIN PROMPT BANNER ── */
.fc-review-login-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
}
.fc-review-login-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2874f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.fc-review-login-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.92rem;
  line-height: 1.3;
}
.fc-review-login-subtitle {
  color: #64748b;
  font-size: 0.78rem;
  margin-top: 2px;
}
.fc-btn-review-login {
  background: #ff6000 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  padding: 8px 15px !important;
  border-radius: 6px !important;
  border: none !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 6px rgba(255, 96, 0, 0.25) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
}
.fc-btn-review-login:hover {
  background: #ea5500 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 96, 0, 0.35) !important;
}

@media (max-width: 575.98px) {
  .fc-review-login-card {
    padding: 10px 12px;
  }
  .fc-review-login-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .fc-review-login-title {
    font-size: 0.82rem;
  }
  .fc-review-login-subtitle {
    font-size: 0.7rem;
  }
  .fc-btn-review-login {
    font-size: 0.72rem !important;
    padding: 6px 10px !important;
  }
}

/* ── SUBCATEGORY & BRAND PILL SCROLL STRIP (HOVER-ONLY SCROLLBAR) ── */
.fc-subcategory-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.fc-subcategory-scroll::-webkit-scrollbar {
  height: 4px;
  background: transparent;
}
.fc-subcategory-scroll::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.fc-subcategory-scroll:hover {
  scrollbar-width: thin;
}
.fc-subcategory-scroll:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
}

/* ── RATINGS & REVIEWS RESPONSIVE DESIGN ── */
.fc-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.fc-rating-summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
}
.fc-star-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.78rem;
}
.fc-star-bar-row .progress {
  height: 8px;
  border-radius: 10px;
  background-color: #e2e8f0;
}
.fc-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2874f0 0%, #1a5dc7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .fc-rating-summary-box {
    padding: 12px;
  }
  .fc-review-card {
    padding: 12px;
  }
  .fc-user-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .fc-section-card {
    border-radius: 10px !important;
  }
  /* Consistent button touch targets */
  .btn {
    letter-spacing: 0.1px;
  }
}

.hover-scale {
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s ease;
}
.hover-scale:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}






/* =========================================================
   MOBILE HEADER - FIX CART ICON CUTTING
   ========================================================= */
@media (max-width: 767.98px) {

    /* Main header container */
    .fc-main-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Header top row */
    .fc-header-top-row {
        width: 100%;
        gap: 4px;
    }

    /* Logo area */
    .fc-header-top-row > div:first-child {
        min-width: 0;
        flex-shrink: 1 !important;
    }

    .fc-logo2-img {
        max-width: 105px !important;
        max-height: 36px !important;
    }

    /* Header actions */
    .fc-header-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 4px !important;
        flex-shrink: 0 !important;
    }

    /* Navigation links */
    .fc-header-actions .fc-nav-link {
        width: 34px;
        height: 38px;
        min-width: 34px;
        padding: 0 !important;
        margin: 0 !important;

        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        position: relative;
        flex-shrink: 0;
    }

    /* Icons */
    .fc-header-actions .fc-nav-link i {
        font-size: 17px !important;
        line-height: 1;
    }

    /* Hide text on mobile */
    .fc-header-actions .fc-nav-link > span:not(.badge-count) {
        display: none !important;
    }

    /* Badge */
    .fc-header-actions .badge-count {
        position: absolute;
        top: -2px;
        right: -2px;

        min-width: 15px;
        height: 15px;
        padding: 0 3px;

        font-size: 9px;
        line-height: 15px;
        text-align: center;

        border-radius: 50%;
    }

    /* Hamburger */
    .fc-mobile-menu-btn {
        width: 32px;
        min-width: 32px;
        padding: 2px !important;
    }

    .fc-mobile-menu-btn i {
        font-size: 20px !important;
    }
}


/* Extra small mobile devices */
@media (max-width: 380px) {

    .fc-main-header .container {
        padding-left: 7px;
        padding-right: 7px;
    }

    .fc-logo2-img {
        max-width: 90px !important;
        max-height: 32px !important;
    }

    .fc-header-actions {
        gap: 2px !important;
    }

    .fc-header-actions .fc-nav-link {
        width: 30px;
        min-width: 30px;
        height: 34px;
    }

    .fc-header-actions .fc-nav-link i {
        font-size: 16px !important;
    }

    .fc-header-actions .badge-count {
        top: -3px;
        right: -2px;
        min-width: 14px;
        height: 14px;
        line-height: 14px;
        font-size: 8px;
    }
}
