/* ═══ ECON BATTERY – MAIN CSS ═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
  --brand-orange: #FF6B00;
  --brand-yellow: #FFB700;
  --brand-dark: #1A1A2E;
  --brand-gray: #F5F7FA;
  --brand-text: #2D3142;
  --brand-muted: #6B7080;
  --brand-border: #E8ECF0;
  --brand-white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Barlow', sans-serif;
}
.map-wrapper {
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--brand-text);
  background: var(--brand-white);
  overflow-x: hidden;
  padding-bottom: 70px;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-main); font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

#page-loader {
  position: fixed; inset: 0; background: var(--brand-white);
  z-index: 9999; display: flex; flex-direction:column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { font-family: var(--font-main); font-weight: 900; font-size: 2.2rem; display:flex; align-items:center; gap:8px; }
.loader-logo .logo-icon-loader {
  width:50px; height:50px; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
  border-radius:14px; display:flex; align-items:center; justify-content:center; color:white; font-size:1.4rem;
  animation: pulseIcon 1.2s ease infinite alternate;
}
@keyframes pulseIcon { to { transform: scale(1.08); box-shadow: 0 8px 24px rgba(255,107,0,0.4); } }
.loader-text-orange { color: var(--brand-orange); }
.loader-text-dark { color: var(--brand-dark); }
.loader-progress { width: 180px; height: 3px; background: var(--brand-border); border-radius: 100px; margin-top: 20px; overflow: hidden; }
.loader-progress-bar { height: 100%; background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow)); border-radius: 100px; animation: loadProg 1.3s ease forwards; }
@keyframes loadProg { from { width: 0 } to { width: 100% } }

.navbar-desktop {
  position: sticky; top: 0; z-index: 1000;
  background: var(--brand-white);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.navbar-inner { display: flex; align-items: center; height: 64px; gap: 24px; }
.brand-logo { font-family: var(--font-main); font-weight: 900; font-size: 1.4rem; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.logo-text .lo { color: var(--brand-orange); }
.logo-text .lt { color: var(--brand-dark); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-family: var(--font-main); font-weight: 500; font-size: 0.875rem; color: var(--brand-muted); transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-orange); background: rgba(255,107,0,0.07); }
.nav-search-wrap { position: relative; width: 260px; flex-shrink: 0; }
.nav-search { width: 100%; padding: 9px 16px 9px 40px; border-radius: 100px; border: 1.5px solid var(--brand-border); background: var(--brand-gray); font-size: 0.875rem; color: var(--brand-text); transition: var(--transition); outline: none; font-family: var(--font-main); }
.nav-search:focus { border-color: var(--brand-orange); background: white; box-shadow: 0 0 0 3px rgba(255,107,0,0.12); }
.nav-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--brand-muted); font-size: 0.9rem; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-orange { background: linear-gradient(135deg, var(--brand-orange), #FF8C42); color: white; border: none; border-radius: 100px; padding: 9px 20px; font-family: var(--font-main); font-weight: 600; font-size: 0.875rem; transition: var(--transition); cursor: pointer; display:inline-flex; align-items:center; gap:6px; }
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,0,0.35); color: white; }
.btn-outline-orange { background: transparent; border: 1.5px solid var(--brand-orange); color: var(--brand-orange); border-radius: 100px; padding: 8px 18px; font-family: var(--font-main); font-weight: 600; font-size: 0.875rem; transition: var(--transition); cursor: pointer; display:inline-flex; align-items:center; gap:6px; }
.btn-outline-orange:hover { background: var(--brand-orange); color: white; }
.search-dropdown { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--brand-border); overflow: hidden; display: none; z-index: 999; max-height: 360px; overflow-y: auto; }
.search-dropdown.show { display: block; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; transition: var(--transition); cursor: pointer; }
.search-result-item:hover { background: var(--brand-gray); }
.search-result-img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: var(--brand-gray); flex-shrink:0; }
.search-result-name { font-family: var(--font-main); font-weight: 600; font-size: 0.875rem; color: var(--brand-text); }
.search-result-brand { font-size: 0.75rem; color: var(--brand-muted); }

.mobile-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; background: var(--brand-white); border-top: 1px solid var(--brand-border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); display: none; padding: 4px 0 env(safe-area-inset-bottom,0); }
@media (max-width: 991px) { .mobile-nav { display: flex; } .navbar-desktop { display: none; } }
.mobile-nav-items { display: flex; width: 100%; list-style: none; margin: 0; padding: 0; }
.mobile-nav-item { flex: 1; }
.mobile-nav-item a { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 4px; gap: 2px; color: var(--brand-muted); transition: var(--transition); }
.mobile-nav-item a.active, .mobile-nav-item a:hover { color: var(--brand-orange); }
.mobile-nav-item i { font-size: 1.2rem; }
.mobile-nav-item .nav-label { font-family: var(--font-main); font-size: 0.6rem; font-weight: 600; }
.mobile-nav-center a { background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: white !important; box-shadow: 0 4px 16px rgba(255,107,0,0.4); margin-top: -10px; }
.mobile-nav-center i { font-size: 1.3rem; }
.mobile-search-bar { display: none; padding: 10px 16px; background: var(--brand-white); border-bottom: 1px solid var(--brand-border); }
@media (max-width: 991px) { .mobile-search-bar { display: flex; gap: 10px; align-items: center; } }
.mobile-search-bar .search-wrap { flex: 1; position: relative; }
.mobile-search-bar input { width: 100%; padding: 10px 16px 10px 38px; border-radius: 100px; border: 1.5px solid var(--brand-border); background: var(--brand-gray); font-size: 0.875rem; outline: none; font-family: var(--font-main); }
.mobile-search-bar input:focus { border-color: var(--brand-orange); background: white; }
.mobile-search-bar .si { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--brand-muted); font-size: 0.9rem; }
.mobile-logo-bar { display: none; padding: 10px 16px; background: var(--brand-white); align-items: center; justify-content: space-between; border-bottom: 1px solid var(--brand-border); }
@media (max-width: 991px) { .mobile-logo-bar { display: flex; } }

.hero-slider { position: relative; overflow: hidden; }
@media (min-width: 992px) { .hero-slider { border-radius: var(--radius-lg); margin: 16px 0; } }
.slider-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.slide-item { min-width: 100%; position: relative; overflow: hidden; height: 220px; background: linear-gradient(135deg, #1A1A2E, #2D1B4E); }
@media (min-width: 576px) { .slide-item { height: 300px; } }
@media (min-width: 992px) { .slide-item { height: 420px; border-radius: var(--radius-lg); } }
.slide-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.4) 55%, transparent 100%); display: flex; align-items: center; padding: 24px; }
@media (min-width: 992px) { .slide-overlay { padding: 60px; } }
.slide-content { max-width: 520px; }
.slide-badge { display: inline-block; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); color: white; padding: 4px 14px; border-radius: 100px; font-size: 0.72rem; font-family: var(--font-main); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.slide-title { font-family: var(--font-main); font-weight: 900; color: white; font-size: 1.4rem; line-height: 1.15; margin-bottom: 8px; }
@media (min-width: 576px) { .slide-title { font-size: 1.9rem; } }
@media (min-width: 992px) { .slide-title { font-size: 2.8rem; } }
.slide-subtitle { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 20px; }
@media (min-width: 992px) { .slide-subtitle { font-size: 1rem; } }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.slider-dot { width: 6px; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.4); transition: var(--transition); cursor: pointer; }
.slider-dot.active { background: var(--brand-orange); width: 22px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; display: none; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); z-index: 5; }
@media (min-width: 992px) { .slider-btn { display: flex; } }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-btn:hover { background: rgba(255,107,0,0.6); }

/* Category Owl Carousel (image-only) */
.category-owl-wrap { position: relative; padding: 0 4px 8px; }
.category-owl-carousel .owl-stage-outer { overflow: hidden; border-radius: var(--radius-md); }
.category-owl-carousel .item { padding: 2px 0; }
.category-owl-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: white;
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-owl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-owl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.category-owl-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
  color: white;
  font-size: 2rem;
}
.category-owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}
.category-owl-carousel .owl-nav button.owl-prev,
.category-owl-carousel .owl-nav button.owl-next {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid var(--brand-border) !important;
  color: var(--brand-orange) !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  pointer-events: all;
  transition: var(--transition);
}
.category-owl-carousel .owl-nav button.owl-prev { left: -6px; }
.category-owl-carousel .owl-nav button.owl-next { right: -6px; }
.category-owl-carousel .owl-nav button.owl-prev:hover,
.category-owl-carousel .owl-nav button.owl-next:hover {
  background: var(--brand-orange) !important;
  color: white !important;
  border-color: var(--brand-orange) !important;
}
.category-owl-carousel .owl-dots {
  margin-top: 14px;
  line-height: 1;
}
.category-owl-carousel .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 4px 4px;
  background: var(--brand-border);
  transition: var(--transition);
}
.category-owl-carousel .owl-dots .owl-dot.active span {
  width: 22px;
  background: var(--brand-orange);
}
@media (max-width: 576px) {
  .category-owl-wrap { padding: 0; }
  .category-owl-carousel .owl-nav button.owl-prev { left: 2px; width: 32px; height: 32px; }
  .category-owl-carousel .owl-nav button.owl-next { right: 2px; width: 32px; height: 32px; }
  .category-owl-fallback { font-size: 1.5rem; }
}

.section-pad { padding: 36px 0; }
@media (min-width: 992px) { .section-pad { padding: 56px 0; } }
.section-header { margin-bottom: 24px; }
.section-badge { display: inline-block; background: rgba(255,107,0,0.1); color: var(--brand-orange); padding: 4px 14px; border-radius: 100px; font-size: 0.72rem; font-family: var(--font-main); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.section-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
@media (min-width: 992px) { .section-title { font-size: 1.9rem; } }
.section-subtitle { color: var(--brand-muted); font-size: 0.875rem; }
.view-all-link { font-family: var(--font-main); font-weight: 600; font-size: 0.875rem; color: var(--brand-orange); display: flex; align-items: center; gap: 4px; white-space:nowrap; }
.view-all-link:hover { color: #e55a00; }
.divider-orange { height: 3px; background: linear-gradient(90deg, var(--brand-orange), var(--brand-yellow)); border: none; border-radius: 100px; width: 44px; margin: 8px 0 0; }

.category-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); background: white; border: 1px solid var(--brand-border); display: block; height: 100%; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.category-card-img { height: 110px; overflow: hidden; background: var(--brand-gray); display: flex; align-items: center; justify-content: center; }
@media (min-width:992px) { .category-card-img { height: 130px; } }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover .category-card-img img { transform: scale(1.07); }
.category-card-body { padding: 12px; }
.category-card-icon { width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; margin-bottom: 8px; }
.category-card-name { font-family: var(--font-main); font-weight: 700; font-size: 0.82rem; margin-bottom: 3px; color: var(--brand-text); }
.category-card-desc { font-size: 0.7rem; color: var(--brand-muted); line-height: 1.4; }

.product-card { border-radius: var(--radius-md); overflow: hidden; background: white; border: 1px solid var(--brand-border); box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-img { position: relative; overflow: hidden; padding-top: 72%; background: var(--brand-gray); }
.product-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 8px; left: 8px; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); color: white; font-size: 0.62rem; font-weight: 700; font-family: var(--font-main); padding: 2px 8px; border-radius: 100px; text-transform: uppercase; z-index:2; }
.product-badge.new-badge { background: linear-gradient(135deg, #00C853, #00E676); }
.product-card-body { padding: 10px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.product-brand { font-size: 0.68rem; font-weight: 700; color: var(--brand-orange); text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-main); }
.product-name { font-family: var(--font-main); font-weight: 700; font-size: 0.82rem; line-height: 1.3; color: var(--brand-text); }
.product-spec { font-size: 0.7rem; color: var(--brand-muted); }
.product-price { margin-top: auto; padding-top: 8px; border-top: 1px solid var(--brand-border); display: flex; align-items: center; gap: 6px; flex-wrap:wrap; }
.price-main { font-family: var(--font-main); font-weight: 800; font-size: 0.95rem; color: var(--brand-orange); }
.price-mrp { font-size: 0.72rem; color: var(--brand-muted); text-decoration: line-through; }
.price-na { font-size: 0.78rem; color: var(--brand-muted); font-family: var(--font-main); }
.product-enquire-btn { margin-top: 8px; width: 100%; padding: 7px; border-radius: 8px; background: linear-gradient(135deg, var(--brand-orange), #FF8C42); color: white; border: none; font-family: var(--font-main); font-weight: 600; font-size: 0.75rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 4px; }
.product-enquire-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,0,0.35); }

.brand-card { border-radius: var(--radius-md); padding: 18px 14px; background: white; border: 1px solid var(--brand-border); box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-orange); }
.brand-logo-img { height: 44px; object-fit: contain; filter: grayscale(40%); transition: var(--transition); }
.brand-card:hover .brand-logo-img { filter: grayscale(0); }
.brand-card-name { font-family: var(--font-main); font-weight: 700; font-size: 0.82rem; }

.testimonial-card { background: white; border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--brand-border); transition: var(--transition); height: 100%; }
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { color: var(--brand-yellow); font-size: 0.82rem; margin-bottom: 10px; }
.testimonial-text { font-size: 0.875rem; color: var(--brand-muted); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-main); font-weight: 700; font-size: 0.9rem; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--font-main); font-weight: 700; font-size: 0.875rem; }
.testimonial-vehicle { font-size: 0.72rem; color: var(--brand-muted); }

.stats-bar { background: linear-gradient(135deg, var(--brand-dark), #2D1B4E); padding: 24px 0; color: white; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-main); font-weight: 900; font-size: 1.8rem; color: var(--brand-yellow); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-family: var(--font-main); }

.vehicle-pill { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 10px; border-radius: var(--radius-md); background: white; border: 2px solid var(--brand-border); transition: var(--transition); cursor: pointer; text-align: center; min-width: 72px; }
.vehicle-pill:hover, .vehicle-pill.active { border-color: var(--brand-orange); background: rgba(255,107,0,0.05); }
.vehicle-pill i { font-size: 1.5rem; color: var(--brand-muted); transition: var(--transition); }
.vehicle-pill:hover i, .vehicle-pill.active i { color: var(--brand-orange); }
.vehicle-pill span { font-family: var(--font-main); font-weight: 600; font-size: 0.68rem; color: var(--brand-text); }

.cta-section { background: linear-gradient(135deg, var(--brand-orange) 0%, #FF8C42 50%, var(--brand-yellow) 100%); border-radius: var(--radius-lg); padding: 36px 20px; text-align: center; color: white; }
@media (min-width: 992px) { .cta-section { padding: 56px 40px; } }
.cta-section h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 10px; }
@media (min-width: 992px) { .cta-section h2 { font-size: 2.4rem; } }
.cta-section p { opacity: 0.9; margin-bottom: 24px; font-size: 0.9rem; }
.btn-cta-white { background: white; color: var(--brand-orange); border: none; border-radius: 100px; padding: 12px 28px; font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--brand-orange); }

.site-footer { background: var(--brand-dark); color: rgba(255,255,255,0.65); padding: 48px 0 24px; margin-top: 56px; }
.footer-brand { font-family: var(--font-main); font-weight: 900; font-size: 1.3rem; color: white; margin-bottom: 10px; }
.footer-brand span { color: var(--brand-orange); }
.footer-desc { font-size: 0.85rem; line-height: 1.65; margin-bottom: 20px; }
.footer-title { font-family: var(--font-main); font-weight: 700; color: white; margin-bottom: 14px; font-size: 0.95rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--brand-orange); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.85rem; }
.footer-contact-item i { color: var(--brand-orange); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 24px 0; }
.footer-bottom { font-size: 0.78rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.social-links { display: flex; gap: 8px; }
.social-link { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.85rem; }
.social-link:hover { background: var(--brand-orange); color: white; transform: translateY(-2px); }

.whatsapp-float { position: fixed; bottom: 84px; right: 14px; z-index: 998; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer; }
@media (min-width: 992px) { .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; font-size: 1.6rem; } }
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); color: white; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-tooltip { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); background: #1a1a2e; color: white; padding: 6px 12px; border-radius: 8px; font-size: 0.78rem; font-family: var(--font-main); white-space: nowrap; display: none; }
.whatsapp-float:hover .whatsapp-tooltip { display: block; }

.product-gallery-main { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; background: var(--brand-gray); cursor: zoom-in; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-gallery-main:hover img { transform: scale(1.06); }
.gallery-thumbs-wrap { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery-thumb { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; border: 2px solid var(--brand-border); cursor: pointer; flex-shrink: 0; transition: var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--brand-orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
@media (min-width: 992px) { .product-detail-name { font-size: 1.9rem; } }
.product-detail-brand { color: var(--brand-orange); font-weight: 700; font-family: var(--font-main); font-size: 0.875rem; margin-bottom: 12px; display:flex; align-items:center; gap:6px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--brand-border); }
.spec-table td { padding: 9px 12px; font-size: 0.85rem; }
.spec-table td:first-child { font-weight: 600; color: var(--brand-muted); width: 40%; font-family: var(--font-main); }

.enquiry-sticky { position: sticky; top: 80px; }
@media (max-width: 991px) { .enquiry-sticky { position: fixed; bottom: 70px; left: 0; right: 0; z-index: 90; padding: 12px 16px; background: white; border-top: 1px solid var(--brand-border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); } }
.btn-whatsapp-enquire { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; border-radius: 12px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; border: none; font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition); }
.btn-whatsapp-enquire:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.4); transform: translateY(-1px); color: white; }

.filter-sidebar { background: white; border-radius: var(--radius-md); padding: 18px; border: 1px solid var(--brand-border); box-shadow: var(--shadow-sm); position: sticky; top: 80px; }
.filter-title { font-family: var(--font-main); font-weight: 800; font-size: 0.95rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-border); }
.filter-section-title { font-family: var(--font-main); font-weight: 700; font-size: 0.82rem; margin-bottom: 8px; color: var(--brand-dark); margin-top: 14px; }
.filter-item { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; cursor: pointer; }
.filter-item input { accent-color: var(--brand-orange); width: 14px; height: 14px; cursor:pointer; }
.filter-item label { font-size: 0.82rem; cursor: pointer; }

.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f5f7fa, #e8ecf0); padding: 24px 16px; }
.auth-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 20px; }
.auth-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.auth-subtitle { font-size: 0.85rem; color: var(--brand-muted); margin-bottom: 20px; }
.form-label { font-family: var(--font-main); font-weight: 600; font-size: 0.82rem; margin-bottom: 5px; }
.form-control:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(255,107,0,0.12); }

.dashboard-card { background: white; border-radius: var(--radius-md); padding: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--brand-border); }
.user-dashboard-page { padding-bottom: 90px; }
.user-dashboard-page .dashboard-welcome { font-size: 1.35rem; }
.user-dashboard-page .dashboard-stat-value { font-size: 1.25rem; }
@media (max-width: 575px) {
  .user-dashboard-page .dashboard-card { padding: 16px; }
  .user-dashboard-page .dashboard-welcome { font-size: 1.15rem; margin-bottom: 1rem !important; }
  .user-dashboard-page .stat-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .user-dashboard-page .dashboard-stat-value { font-size: 1.1rem; }
  .user-dashboard-page .table { font-size: 0.78rem; }
  .user-dashboard-page .btn-outline-orange,
  .user-dashboard-page .btn { font-size: 0.82rem; }
}
.stat-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink:0; }
.stat-icon.orange { background: rgba(255,107,0,0.1); color: var(--brand-orange); }
.stat-icon.green { background: rgba(0,200,83,0.1); color: #00C853; }
.stat-icon.blue { background: rgba(33,150,243,0.1); color: #2196F3; }

.admin-layout { display: flex; min-height: 100vh; background: #f0f2f5; padding-bottom: 0 !important; }
.admin-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(15, 20, 30, 0.5); z-index: 1040; }
.admin-sidebar-overlay.show { display: block; }
.admin-menu-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--brand-border); background: white; color: var(--brand-orange); font-size: 1.35rem; cursor: pointer; flex-shrink: 0; }
.admin-sidebar { width: 250px; background: var(--brand-dark); color: white; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; z-index: 1050; transition: transform 0.3s ease; }
.admin-sidebar-header { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.admin-brand { font-family: var(--font-main); font-weight: 900; font-size: 1rem; color: white; }
.admin-brand span { color: var(--brand-orange); }
.admin-brand small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.35); font-weight: 400; margin-top: 2px; }
.admin-nav { padding: 10px 0; list-style: none; margin: 0; }
.admin-nav-item a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.55); font-family: var(--font-main); font-weight: 500; font-size: 0.82rem; transition: var(--transition); }
.admin-nav-item a:hover, .admin-nav-item a.active { color: white; background: rgba(255,107,0,0.14); border-left: 3px solid var(--brand-orange); padding-left: 17px; }
.admin-nav-item a i { font-size: 0.95rem; width: 18px; }
.admin-nav-section { padding: 14px 20px 4px; font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 1px; }
.admin-main { margin-left: 250px; flex: 1; min-height: 100vh; }
.admin-topbar { background: white; padding: 0 24px; height: 58px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--brand-border); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 99; }
.admin-content { padding: 20px 24px; }
.admin-stat-card { background: white; border-radius: var(--radius-md); padding: 18px 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--brand-border); display: flex; align-items: center; gap: 14px; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.admin-stat-value { font-family: var(--font-main); font-weight: 900; font-size: 1.7rem; line-height: 1; }
.admin-stat-label { font-size: 0.75rem; color: var(--brand-muted); font-family: var(--font-main); margin-top: 2px; }
.admin-card { background: white; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--brand-border); overflow: hidden; }
.admin-card-header { padding: 14px 20px; border-bottom: 1px solid var(--brand-border); display: flex; align-items: center; justify-content: space-between; }
.admin-card-title { font-family: var(--font-main); font-weight: 700; font-size: 0.95rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 11px 16px; font-family: var(--font-main); font-size: 0.72rem; font-weight: 700; color: var(--brand-muted); text-transform: uppercase; letter-spacing: 0.5px; background: var(--brand-gray); border-bottom: 1px solid var(--brand-border); }
.admin-table td { padding: 11px 16px; font-size: 0.85rem; border-bottom: 1px solid var(--brand-border); vertical-align: middle; }
.admin-table tr:hover td { background: #fafbfc; }
.badge-status { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.68rem; font-family: var(--font-main); font-weight: 700; }
.badge-new { background: rgba(255,107,0,0.1); color: var(--brand-orange); }
.badge-read { background: rgba(33,150,243,0.1); color: #2196F3; }
.badge-replied { background: rgba(0,200,83,0.1); color: #00C853; }
.badge-closed { background: rgba(107,112,128,0.1); color: var(--brand-muted); }
.admin-product-img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.admin-page-header { margin-bottom: 18px; }
.admin-page-title { font-size: 1.3rem; font-weight: 800; }

@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2); }
  .admin-main { margin-left: 0; width: 100%; min-width: 0; }
  .admin-menu-toggle { display: inline-flex; }
  .admin-topbar { padding: 10px 14px; height: auto; min-height: 56px; flex-wrap: wrap; gap: 10px; }
  .admin-topbar h6 { font-size: 0.95rem; }
  .admin-topbar .btn-orange { font-size: 0.75rem !important; padding: 6px 12px !important; }
  .admin-topbar .d-flex span { display: none; }
  .admin-content { padding: 14px 12px; }
  .admin-stat-card { padding: 14px; gap: 10px; }
  .admin-stat-value { font-size: 1.35rem; }
  .admin-stat-icon { width: 44px; height: 44px; font-size: 1.15rem; }
  .admin-card-header { padding: 12px 14px; flex-wrap: wrap; gap: 8px; }
  .admin-table th, .admin-table td { padding: 9px 10px; font-size: 0.78rem; }
  .admin-page-title { font-size: 1.1rem; }
}

.pagination { gap: 4px; }
.page-link { border-radius: 8px !important; font-family: var(--font-main); font-weight: 600; border-color: var(--brand-border); color: var(--brand-text); font-size: 0.85rem; }
.page-item.active .page-link { background: var(--brand-orange); border-color: var(--brand-orange); }
.page-link:hover { background: rgba(255,107,0,0.08); border-color: var(--brand-orange); color: var(--brand-orange); }

.toast-container { position: fixed; top: 76px; right: 14px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast-msg { background: white; border-radius: var(--radius-sm); padding: 12px 16px; box-shadow: var(--shadow-md); border-left: 3px solid var(--brand-orange); display: flex; align-items: center; gap: 8px; font-family: var(--font-main); font-weight: 600; font-size: 0.82rem; animation: slideIn 0.3s ease; min-width: 200px; }
.toast-msg.success { border-left-color: #00C853; }
.toast-msg.error { border-left-color: #F44336; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.horizontal-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.horizontal-scroll::-webkit-scrollbar { display: none; }
.sort-select { border: 1.5px solid var(--brand-border); border-radius: 100px; padding: 7px 14px; font-family: var(--font-main); font-size: 0.82rem; outline: none; cursor: pointer; color: var(--brand-text); background: white; }
.sort-select:focus { border-color: var(--brand-orange); }
.no-results { text-align: center; padding: 56px 20px; }
.no-results i { font-size: 2.5rem; color: var(--brand-muted); margin-bottom: 14px; display: block; }
.breadcrumb-item a { color: var(--brand-orange); }
.breadcrumb-item.active { color: var(--brand-muted); }
.tag-pill { display: inline-block; padding: 4px 11px; border-radius: 100px; background: var(--brand-gray); font-size: 0.72rem; font-family: var(--font-main); font-weight: 600; color: var(--brand-muted); margin: 2px; transition: var(--transition); }
.tag-pill:hover { background: rgba(255,107,0,0.1); color: var(--brand-orange); }
.back-to-top { position: fixed; bottom: 90px; left: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-dark); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); opacity: 0; pointer-events: none; z-index: 990; font-size: 1rem; }
.back-to-top.show { opacity: 1; pointer-events: all; }
@media (min-width:992px) { .back-to-top { bottom: 90px; left: 24px; } }
.back-to-top:hover { background: var(--brand-orange); transform: translateY(-2px); }
