@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Space+Grotesk:wght@300..700&display=swap');


/* =============================================
   Reset
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: transparent; font: inherit; color: inherit; cursor: pointer; }

/* =============================================
   Design Tokens
============================================= */
:root {
 /* Base */
  --bg: #ffffff;
  --bg-elevated: #F5F5F5;
  --surface: #ffffff;
  --surface-2: #F5F5F5;
  --bg-white: #ffffff;
  /* Brand */
  --primary: #B30000;
  --primary-hover: #8F0000;
  --secondary: #B30000;
  --accent: #B30000;

  /* Text */
  --text: #111111;
  --text-muted: #333333;

  /* UI */
  --border: rgba(0, 0, 0, 0.16);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

  /* Status */
  --success: #B30000;
  --danger: #8F0000;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.14);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

   --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;

  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.125rem, 2.2vw, 1.5rem);
  --transition: 0.25s ease;

  --color-brand: var(--primary);
  --color-brand-strong: var(--primary-hover);
  --color-accent: var(--accent);
  --color-bg: var(--bg);
  --color-surface: var(--surface);
  --color-text: var(--text);
  --color-muted: var(--text-muted);
  --color-border: var(--border);
  --color-overlay: rgba(0, 0, 0, 0.35);
}

/* =============================================
   Base
============================================= */
html, body { min-height: 100%; font-family: var(--font-body);}
html { scroll-behavior: smooth; scroll-margin-top: 100px;}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

::selection { background: var(--color-accent); color: #000000; }
h1, h2, h3, h4 { line-height: 1.25; color: var(--color-text); font-family: var(--font-heading);}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--color-muted); }

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px dashed var(--secondary);
  outline-offset: 3px;
}

main { min-height: 40vh; padding-block: var(--space-7); }

/* =============================================
   Utilities
============================================= */
.section { padding-block: var(--space-8); }
.section-sm { padding-block: var(--space-6); }
.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-justify{text-align: justify;}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 44px;
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-primary,
.btn-brand { background: var(--color-brand); color: #ffffff; }
.btn-primary:hover,
.btn-brand:hover { background: var(--color-brand-strong); }

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 3000;
  background: var(--color-text);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  transition: top var(--transition);
}

.skip-link:focus-visible { top: var(--space-4); }

/* =============================================
   Header
============================================= */


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  /* box-shadow: var(--shadow-sm); */

}

.header-inner {
  min-height: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand { flex-shrink: 0; }
.brand-logo { width: 170px; }
.site-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: var(--space-5); }
.nav-list > li { position: relative; }

.nav-list > li > a,
.product-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-block: 1.65rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  font-weight: 700;
}

.nav-list > li > a:hover,
.nav-list > li > a:focus-visible,
.product-toggle:hover,
.product-toggle:focus-visible { color: var(--accent);scale: .99;}

.caret { transition: transform var(--transition); }

.products-drop {
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  min-width: 16rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  background:var(--bg-elevated);
  color: var(--text);
}

.products-drop a {
  display: block;
  padding: 0.7rem 1rem;
  font-size: var(--fs-small);
  white-space: nowrap;
  border-left: 2px solid transparent;
  font-weight: 600;
}

.products-drop a:hover,
.products-drop a:focus-visible { 
      background: rgb(0 0 0);
    border-left-color: var(--secondary);
    color: #ffffff;
 }

.product-list:hover .products-drop,
.product-list:focus-within .products-drop,
.product-list.open .products-drop {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: .7rem;
}

.product-list:hover .caret,
.product-list:focus-within .caret,
.product-list.open .caret { transform: rotate(180deg); }

.header-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1200; }

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.cta-call{ border-radius: var(--radius-md);}
.cta-call span{background-color: red; color: white; border-radius: 50%; padding: .5rem;}
/* .search-input{ border: none; padding: 0.5rem 1rem; width: 80%; background: #ffffff; color: var(--color-text); font-size: 1rem; font-weight: 500; outline: none; transition: all 0.3s ease-in-out; border-right: none; }
.search-button{  padding: 3px 1rem; color: var(--primary);} */

.header-divider{
    border: 0;
    height: 1.9px;
    background-image: linear-gradient(to right, transparent, rgb(0 0 0 / 18%), transparent);
    margin:0;
}

.header-strip-pair {
  width: 56px;
  min-width: 56px;
  flex: 0 0 56px;
  height: 100%;
  align-self: stretch;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-inline: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transform: skewX(-18deg);
  transform-origin: center;
}

.header-strip {
  display: block;
  flex: 1 1 50%;
  height: 100%;
}

.header-strip-dark {
    background-color: #ff0000;
    background-image: linear-gradient(-45deg, #ff0000 0%, #ffffffba 100%);
}

.header-strip-light {
background-color: #0e0e0e;
    background-image: linear-gradient(-45deg, #ffffffba 0%, #232323 100%);
}

/* MARQUEE */
  .marquee-bar {
    overflow: hidden;
    background: #ffffff;
    border-block: 1px solid rgba(179, 0, 0, 0.28);
  }

  .marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-left 24s linear infinite;
  }

  .marquee-item {
    margin: 0;
    padding: 0.55rem 0 0.55rem 2.5rem;
    color: #111111;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
 
@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* HERO SECTION */
.hero-banner {
  position: relative;
  width: 100%;
  /* overflow: hidden; */
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.hero-banner .container {
  position: relative;
  z-index: 3;
}

.hero-content { max-width: 42rem; }

.hero-title {
  color: var(--text);
  font-size: clamp(1.9rem, 4.4vw, 3.45rem);
  line-height: 1.12;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}

.hero-subtitle {
  color: #111111;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 52ch;
}

.hero-actions {
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-btn {
  border-radius: 999px;
  padding-inline: 1.2rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.hero-btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), #B30000);
  box-shadow: 0 8px 26px rgba(179, 0, 0, 0.36);
}

.hero-btn-outline {
  color: #111111;
  border-color: rgba(179, 0, 0, 0.42);
  background: #ffffff;
}

.hero-btn-soft {
  color: #000000;
  border-color: rgba(179, 0, 0, 0.28);
  background: linear-gradient(120deg, #F5F5F5, #F5F5F5);
}

.hero-btn:hover {
  transform: translateY(-2px);
 box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
 background-color: #000000;
 color: #f7f7f7;
}

.hero-image-wrap {
  position: relative;
  max-width: 32rem;
  margin-inline: auto;
  padding: 4px;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(140deg, #ffffff, #F5F5F5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 24px 54px rgba(0, 0, 0, 0.14),
    0 0 30px rgba(0, 0, 0, 0.08);
}

.hero-image-wrap::before {
  content: none;
  position: absolute;
  inset: -18%;
  z-index: -1;
  background: none;
  filter: none;
}

.hero-image {
  width: 100%;
  border-radius: 0.9rem;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.hero-swiper .swiper-wrapper {
  border-radius: 0.9rem;
}

.hero-swiper .swiper-slide {
  overflow: hidden;
  border-radius: 0.9rem;
}

.hero-swiper .hero-image {
  transform: scale(1);
  transition: transform 3.2s ease;
}

.hero-swiper .swiper-slide-active .hero-image {
  transform: scale(1.1);
}

.hero-battery-visuals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-cell {
  position: absolute;
  border-radius: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, #f7f7f7 0%, #dfdfdf 48%, #cbcbcb 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.65),
    inset 0 -8px 12px rgba(0, 0, 0, 0.14),
    0 6px 12px rgba(0, 0, 0, 0.18);
  animation: float-cell 7.5s ease-in-out infinite;
}

.hero-cell::before {
    content: "";
    position: absolute;
    width: 34%;
    height: 0.18rem;
    left: 50%;
    top: -0.18rem;
    transform: translateX(-50%);
    border-radius: 0.12rem 0.12rem 0 0;
    background: #111111;
    border: 1px solid rgba(0, 0, 0, 0.45);
    border-bottom: none;
}

.hero-cell::after {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 0.35rem;
    bottom: 0.28rem;
    border-radius: 0.2rem;
        background: linear-gradient(180deg, #ff0000 0%, #10dc03 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.hero-cell:nth-child(1) {
  width: 1.3rem;
  height: 3rem;
  left: 50%;
  bottom: 0%;
  translate: -50% 50%;
}

.hero-cell:nth-child(2) {
  width: 1.3rem;
  height: 3rem;
  left: 50%;
  bottom: 0%;
  translate: 50% 50%;
  /* animation-delay: -2.2s; */
}

.hero-cell:nth-child(3) {
  width: 1.3rem;
  height: 3rem;
  left: 50%;
  bottom: 0%;
  translate: -150% 50%;
  /* animation-delay: -4.1s; */
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-particles span {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgb(26 231 50);;
  box-shadow: 0 0 14px rgb(255, 255, 255);
  animation: rise-particle 10s linear infinite;
  opacity: 0;
}

.hero-particles span:nth-child(1) { left: 8%; bottom: -1rem; animation-delay: -1s; }
.hero-particles span:nth-child(2) { left: 18%; bottom: -2rem; animation-delay: -4.5s; width: 0.38rem; height: 0.38rem; }
.hero-particles span:nth-child(3) { left: 33%; bottom: -1rem; animation-delay: -3s; }
.hero-particles span:nth-child(4) { left: 57%; bottom: -2rem; animation-delay: -6s; width: 0.34rem; height: 0.34rem; }
.hero-particles span:nth-child(5) { left: 69%; bottom: -1rem; animation-delay: -2s; }
.hero-particles span:nth-child(6) { left: 82%; bottom: -2rem; animation-delay: -8s; width: 0.4rem; height: 0.4rem; }
.hero-particles span:nth-child(7) { left: 91%; bottom: -1rem; animation-delay: -5s; width: 0.32rem; height: 0.32rem; }
.hero-particles span:nth-child(8) { left: 46%; bottom: -2rem; animation-delay: -7.4s; width: 0.36rem; height: 0.36rem; }

@keyframes float-cell {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes rise-particle {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  12% { opacity: 1; }
  80% { opacity: 0.85; }
  100% { transform: translateY(-120vh) scale(1.15); opacity: 0; }
}



/* counter section */
.counter-section {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.counter-card {
  height: 100%;
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(179, 0, 0, 0.22);
  background: #ffffff;
}

.counter-value {
  margin-bottom: 0.2rem;
  color: var(--secondary);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
}

.counter-label {
  margin-bottom: 0;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
}


/* Product show card show case */
.section-head {
  margin-bottom: var(--space-5);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  margin-bottom: 0;
  color: #111111;
}

.product-categories {
  background:
    radial-gradient(32rem 18rem at 78% 22%, rgba(179, 0, 0, 0.18), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.category-card {
  display: block;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 0, 0, 0.36);
  background: #ffffff;
  backdrop-filter: blur(7px);
  padding: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-thumb {
  margin-top: var(--space-3);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(179, 0, 0, 0.3);
}

.category-thumb img,
.product-thumb img {
  width: 100%;
  height: auto;
  object-fit: inherit;
  transition: transform 0.45s ease;
}

.category-btn {
  margin-top: 0;
  flex: 1 1 150px;
}

.category-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.category-card:hover .category-thumb img,
.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.product-card {
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 0, 0, 0.34);
 background:#364237d1;
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 0, 0, 0.7);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(179, 0, 0, 0.26);
}

.card-category {
  margin-bottom: 0.35rem;
  color: #B30000;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-product {
  margin-bottom: 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #111111;
}

.product-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(179, 0, 0, 0.34);
}

.product-actions {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-actions .btn {
  flex: 1 1 160px;
}


/* Testimonial */

.featured-products {
  background:
    radial-gradient(22rem 14rem at 16% 16%, rgba(179, 0, 0, 0.18), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.featured-cards .product-card{background-color: #f7f7f7;}
.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.client-img{width: 4rem; height: auto;}
.badge-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-best {
  background: rgba(179, 0, 0, 0.24);
  color: #000000;
  border: 1px solid rgba(179, 0, 0, 0.6);
}

.badge-new {
  background: rgba(179, 0, 0, 0.2);
  color: #000000;
  border: 1px solid rgba(179, 0, 0, 0.58);
}

.badge-stock {
  background: rgba(179, 0, 0, 0.2);
  color: #000000;
  border: 1px solid rgba(179, 0, 0, 0.55);
}

.compare-option {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #111111;
  font-size: 0.84rem;
  font-weight: 600;
}

.compare-check {
  accent-color: #B30000;
}

.quick-view-modal {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 0, 0, 0.48);
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.quick-view-modal .modal-title {
  color: #111111;
}

.quick-view-category {
  color: #111111;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-view-spec {
  color: #111111;
}

.reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cursor Glow + Page Loader */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.52;
  background-color: #000000;
  transform: translate(-50%, -50%);
}

.lux-loader {
  position: fixed;
  inset: 0;
  z-index: 3500;
  display: grid;
  place-items: center;
  background: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lux-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lux-loader span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(179, 0, 0, 0.35);
  border-top-color: #B30000;
  box-shadow: 0 0 22px rgba(179, 0, 0, 0.3);
  animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* BLOG SECTION */
.blog-section {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.blog-section .product-thumb {
  aspect-ratio: 16 / 10;
}

.blog-text {
  font-size: 0.92rem;
}

/* FAQ SECTION */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.faq-accordion .accordion-item {
  margin-bottom: 0.8rem;
  border: 1px solid rgba(179, 0, 0, 0.34);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
}

.faq-accordion .accordion-button {
  color: #111111;
  font-weight: 600;
  background: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #111111;
  background: #F5F5F5;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(179, 0, 0, 0.6);
}

.faq-accordion .accordion-button::after {
  filter: none;
}

.faq-accordion .accordion-body {
  color: #111111;
}

/* INQUIRY POPUP + QUOTE MODAL */
.inquiry-prompt-modal,
.quote-request-modal {
  border: 1px solid rgba(179, 0, 0, 0.46);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
  color: #111111;
}

.inquiry-prompt-modal .modal-title,
.quote-request-modal .modal-title {
  color: #111111;
  font-weight: 700;
}

.quote-modal-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.quote-label {
  margin-bottom: 0.35rem;
  color: #111111;
  font-weight: 600;
}

.quote-field {
  border: 1px solid rgba(179, 0, 0, 0.35);
  background: #ffffff;
  color: #111111;
}

.quote-field::placeholder {
  color: #666666;
}

.quote-field:focus,
.quote-select:focus {
  border-color: rgba(179, 0, 0, 0.75);
  box-shadow: 0 0 0 0.18rem rgba(179, 0, 0, 0.2);
  background: #ffffff;
  color: #111111;
}

.quote-select option {
  background: #ffffff;
  color: #111111;
}

.inquiry-actions .btn {
  width: 100%;
}


/* ABOUT PAGE */
.all-hero {
    background:linear-gradient(to right, rgb(0 0 0 / 78%), rgb(0 0 0 / 77%)), url(../images/banner/all-banner-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    padding-left: 5rem;
}
.breadcrumb-item.active {
    color: rgb(255 0 0);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(92 255 0);
}

.about-overview {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.about-lead {
  color: #111111;
  font-weight: 500;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(179, 0, 0, 0.32);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
}

.about-highlight,
.about-value-card,
.about-feature-card {
  border: 1px solid rgba(179, 0, 0, 0.28);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.about-highlight,
.about-value-card {
  padding: 1.25rem;
}

.about-check-list {
  display: grid;
  gap: 0.78rem;
}

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #111111;
  font-weight: 500;
  line-height: 1.55;
}

.about-check-list li span {
  color: var(--secondary);
  line-height: 1.45;
}

.about-feature-card {
  padding: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 0, 0, 0.52);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(179, 0, 0, 0.12);
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.about-feature-card p {
  margin-bottom: 0;
}

.about-cta {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.about-cta .about-value-card {
  max-width: 920px;
  margin-inline: auto;
}


/* CONTACT US PAGE GOES HERE */
.contact-overview,
.contact-map-section {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.contact-info-panel,
.contact-form-panel,
.contact-trust-card {
  border: 1px solid rgba(179, 0, 0, 0.28);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.contact-info-panel,
.contact-form-panel {
  padding: 1.25rem;
}

.contact-info-list {
  display: grid;
  gap: 0.85rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.contact-info-icon {
  width: 2.15rem;
  min-width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: rgba(179, 0, 0, 0.12);
  border: 1px solid rgba(179, 0, 0, 0.2);
}

.contact-label {
  color: #111111;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.contact-value {
  color: #111111;
  font-weight: 500;
  word-break: break-word;
}

a.contact-value:hover,
a.contact-value:focus-visible {
  color: var(--secondary);
}

.contact-trust-card {
  padding: 1rem;
}

.contact-map-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 0, 0, 0.28);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}


/* BLOGS CONTENT GOES HERE */
.blog-template-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.blog-sidebar-card,
.blog-article-card {
  border: 1px solid rgba(179, 0, 0, 0.28);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.blog-sidebar-card,
.blog-article-card {
  padding: 1.25rem;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 96px;
}

.blog-related-list {
  display: grid;
  gap: 0.95rem;
}

.blog-related-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(179, 0, 0, 0.18);
}

.blog-related-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-related-thumb {
  width: 92px;
  min-width: 92px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(179, 0, 0, 0.3);
  align-self: flex-start;
}

.blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-related-cat {
  color: var(--secondary);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.blog-related-title {
  font-size: 1rem;
  line-height: 1.35;
}

.blog-related-title a {
  color: #111111;
}

.blog-related-title a:hover,
.blog-related-title a:focus-visible {
  color: var(--secondary);
}

.blog-related-desc {
  font-size: 0.9rem;
  line-height: 1.45;
}

.blog-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(179, 0, 0, 0.28);
  background: #ffffff;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
}

.blog-tag:hover,
.blog-tag:focus-visible {
  color: var(--secondary);
  border-color: rgba(179, 0, 0, 0.55);
}

.blog-category {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-article-title {
  margin-top: 0.45rem;
  margin-bottom: 0.6rem;
  color: #111111;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
}

.blog-article-subtitle {
  margin-bottom: 0.85rem;
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
}

.blog-meta {
  margin-bottom: 1rem;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #111111;
  font-size: 0.86rem;
  font-weight: 600;
}

.blog-feature-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(179, 0, 0, 0.28);
  margin-bottom: 1.05rem;
}

.blog-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-body h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #111111;
}

.blog-article-body p {
  margin-bottom: 0.7rem;
}

.blog-point-list,
.blog-check-list {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.blog-point-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #111111;
}

.blog-point-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--secondary);
}

.blog-highlight-box {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(179, 0, 0, 0.35);
  background: #F5F5F5;
}

.blog-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #111111;
}

.blog-check-list li span {
  color: var(--secondary);
  line-height: 1.5;
}

.blog-article-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(179, 0, 0, 0.22);
}



/* PRODUCTS PAGE */
.products-page-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.products-sidebar-sticky {
  position: sticky;
  top: 96px;
}

.products-sidebar-card,
.products-category-card {
  border: 1px solid rgba(179, 0, 0, 0.28);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.products-sidebar-card {
  padding: 1.15rem;
}

.products-nav-list {
  display: grid;
  gap: 0.45rem;
}

.products-nav-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111111;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(179, 0, 0, 0.16);
  padding: 0.45rem 0.6rem;
  transition: border-color var(--transition), color var(--transition), transform var(--transition), background-color var(--transition);
}

.products-nav-list a span {
  width: 1.8rem;
  min-width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: rgba(179, 0, 0, 0.12);
}

.products-nav-list a:hover,
.products-nav-list a:focus-visible {
  color: var(--secondary);
  border-color: rgba(179, 0, 0, 0.42);
  background: #F5F5F5;
  transform: translateX(2px);
}

.products-main-stack {
  display: grid;
  gap: 1rem;
}

.products-category-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.products-media {
  width: 220px;
  min-width: 220px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(179, 0, 0, 0.25);
  overflow: hidden;
  align-self: flex-start;
}

.products-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.products-content {
  flex: 1 1 auto;
  min-width: 0;
}

.products-chip {
  margin-bottom: 0.25rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.products-title {
  margin-bottom: 0.45rem;
  color: #111111;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.products-intro {
  margin-bottom: 0.6rem;
  color: #111111;
}

.products-subtitle {
  margin-bottom: 0.35rem;
  color: #111111;
  font-size: 1rem;
}

.products-model-list,
.products-spec-list {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.products-model-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-model-list li,
.products-spec-list li {
  position: relative;
  padding-left: 1rem;
  color: #111111;
}

.products-model-list li a {
  display: inline-block;
  color: #111111;
  font-weight: 600;
  border-bottom: 1px dashed transparent;
  transition: color var(--transition), border-color var(--transition), padding-left var(--transition);
}

.products-model-list li a:hover,
.products-model-list li a:focus-visible {
  color: var(--secondary);
  border-bottom-color: rgba(179, 0, 0, 0.45);
  padding-left: 2px;
}

.products-model-list li::before,
.products-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--secondary);
}

.products-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.products-moq {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(179, 0, 0, 0.42);
  background: rgba(179, 0, 0, 0.1);
  color: #111111;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.34rem 0.74rem;
}


/* PRODUCTS DETAILS PAGE GOES HERE */
.product-details-wrap {
  background: linear-gradient(180deg, #ffffff 0%, #F5F5F5 100%);
}

.product-details-sidebar {
  position: sticky;
  top: 96px;
  height: fit-content;
}

.product-details-side-card,
.product-details-card {
  border: 1px solid rgba(179, 0, 0, 0.28);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.product-details-side-card {
  padding: 1.1rem;
}

.product-related-list {
  display: grid;
  gap: 0.5rem;
}

.product-related-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #111111;
  font-weight: 600;
  border: 1px solid rgba(179, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  transition: border-color var(--transition), color var(--transition), background-color var(--transition), transform var(--transition);
}

.product-related-list a span {
  width: 1.8rem;
  min-width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: rgba(179, 0, 0, 0.12);
}

.product-related-list a:hover,
.product-related-list a:focus-visible {
  color: var(--secondary);
  border-color: rgba(179, 0, 0, 0.44);
  background: #F5F5F5;
  transform: translateX(2px);
}

.product-details-card {
  padding: 1rem;
}

.product-details-image {
  width: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* .product-details-image img {
  display: block;
  width: 100%;
  height: ;
  object-fit: cover;
} */

.product-details-title {
  margin-bottom: 0.45rem;
  color: #111111;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.product-details-subtitle {
  margin-bottom: 0.8rem;
  color: #111111;
}

.product-spec-section {
  margin-bottom: 1rem;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.product-spec-item {
  border: 1px solid rgba(179, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.7rem;
  background: #ffffff;
}

.product-spec-label {
  margin-bottom: 0.2rem;
  color: var(--secondary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.product-spec-value {
  margin-bottom: 0;
  color: #111111;
  font-weight: 600;
}

.product-app-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-app-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(179, 0, 0, 0.32);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: #ffffff;
  color: #111111;
  font-weight: 600;
  font-size: 0.82rem;
}

.product-summary-box {
  border: 1px solid rgba(179, 0, 0, 0.26);
  border-radius: var(--radius-md);
  background: #F5F5F5;
  padding: 0.9rem;
  margin-bottom: 1rem;
}

.product-details-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}




/* =============================================
   Footer
============================================= */
.site-footer {
  background: linear-gradient(rgba(0, 0, 0, 0.874), rgba(0, 0, 0, 0.865)), 
              url('../images/banner/footer-banner.webp');
  background-size: cover;
  background-position: center;
  color: #FFFFFF; 
}

.footer-grid {
  padding-block: var(--space-7);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.footer-title { color:var(--bg) ; font-size: 1.05rem; margin-bottom: var(--space-3); }
.footer-text { color: var(--bg); font-size: 1rem;}
.footer-links { display: grid; gap: var(--space-2); }
.footer-brand { line-height: 0; }
.footer-logo { width: 170px; height: auto; object-fit: contain; }

.footer-links a { color: var(--bg); transition: color var(--transition); }
.footer-links a:hover,
.footer-links a:focus-visible { color: #B30000; }

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(179, 0, 0, 0.35);
  background: #ffffff;
  color: #B30000;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.social a:hover,
.social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(179, 0, 0, 0.85);
  color: #8F0000;
}

.quick-link a {
  color: #ffffff;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4rem;
  transition: color var(--transition), transform var(--transition);
}

.quick-link a:hover,
.quick-link a:focus-visible {
  color: #B30000;
  transform: translateX(2px);
}

.quick-link a span {
  color: #B30000;
}



.contact-addr span {
  color: #ffffff;
  line-height: 1.3;
}

.contact-addr p,
.contact-addr a,
.text-clr {
  color: #ffffff;
}

.contact-addr a:hover,
.contact-addr a:focus-visible {
  color: #B30000;
}

.footer-bottom p { color: #ffffff; font-size: var(--fs-small); }

.footer-devider {
  border: 0;
  height: 1.9px;
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.25), transparent);
  margin: 14px 0 0;
}

/* WHATSAPP & SCROLL TOP */
.fixed-box {
  position: fixed;
  bottom: 10px;
  right: var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 100;
}

.scroll-top,
.quick-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.scroll-top {
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--accent);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quick-whatsapp { font-size: 1.95rem; color: #ffffff; background-color: var(--primary);}

.scroll-top:hover,
.quick-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* SOCIAL FIXED */
.social-fixed {
  position: fixed;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  translate: 0 -50%;
  font-size: 1.8rem;
  gap: 0.6rem;
  z-index: 90;
}

.social-fixed a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-right: 0;
  border-radius: 0.5rem 0 0 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-fixed a:nth-child(1) { color: #B30000; }
.social-fixed a:nth-child(2) { color: #B30000; }
.social-fixed a:nth-child(3) { color: #B30000; }
.social-fixed a:nth-child(4) { color: #B30000; }

.social-fixed a:hover {
  transform: translateX(-3px);
  box-shadow: var(--shadow-md);
}

.noscript-message {
  text-align: center;
  margin: 0;
  padding: 0.6rem 1rem;
  background: #F5F5F5;
  color: #8F0000;
  font-weight: 600;
}

/* =============================================
   Responsive
============================================= */

@media (max-width:1200px) {

}



@media (max-width: 992px) {
  body.menu-open { overflow: hidden; }
  .reveal-section,
  .reveal-section.is-visible {
    opacity: 1;
    transform: none;
  }
  .all-hero { padding-left: 1rem;  background:linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)) ,url(../images/banner/banner-2.webp); background-position: center; background-repeat: no-repeat;}
  
  .about-highlight,
  .about-value-card,
  .about-feature-card { padding: 1rem; }
  .contact-info-panel,
  .contact-form-panel { padding: 1rem; }
  .blog-sidebar-sticky { position: static; }
  .blog-sidebar-card,
  .blog-article-card { padding: 1rem; }
  .products-sidebar-sticky { position: static; display: none; }
  .products-category-card { flex-direction: column; }
  .products-media { width: 100%; min-width: 100%; }
  .products-model-list { grid-template-columns: 1fr; }
  .product-details-sidebar { position: static; }
  .product-spec-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--color-overlay);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1100;
  }

.product-list:hover .products-drop,
.product-list:focus-within .products-drop,
.product-list.open .products-drop {
  opacity: 1;
  visibility: visible;
  transform: translate(0%, 0);
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: .7rem;
}

  .site-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

  .nav-list {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(84vw, 360px);
    background: #ffffff;
    border-right: 1px solid var(--color-border);
    padding: .5rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(-100%);
    transition: transform var(--transition);
    overflow: auto;
  }

  .site-nav.is-open .nav-list { transform: translateX(0); }
  .nav-list > li { border-bottom: 1px solid var(--color-border); }

  .nav-list > li > a,
  .product-toggle {
    width: 100%;
    justify-content: space-between;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  }

  .products-drop {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .product-list:hover .products-drop,
  .product-list:focus-within .products-drop { max-height: 0; }

  .product-list.open .products-drop { max-height: 70vh; overflow-y: auto; }
  .products-drop a { padding: 0.7rem 0 0.7rem 0.85rem;  border-bottom: 1px solid rgba(0, 0, 0, 0.1); color: var(--text); background: transparent;
}
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; }
 
  .brand-logo {
    width: 115px;
}

  .hero-banner { text-align: center; }
  .hero-content { margin-inline: auto; }
  .hero-title,
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap {
    margin-top: var(--space-4);
    max-width: 26rem;
  }
  .hero-battery-visuals { opacity: 0.78; }

  .cursor-glow { display: none; }

  .product-actions .btn {
    flex: 1 1 180px;
  }

  .footer-mid {
    flex-wrap: wrap;
    justify-content: flex-start !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .section{padding-block: var(--space-6);}
  .all-hero { padding-left: 0.5rem; }
  .about-chip { font-size: 0.78rem; }
  .about-check-list li { font-size: 0.95rem; }
  .contact-map-wrap iframe { min-height: 300px; }
  .blog-related-item { flex-direction: column; }
  .blog-related-thumb { width: 100%; min-width: 100%; }
  .products-sidebar-card,
  .products-category-card { padding: 0.85rem; }
  .products-nav-list a { font-size: 0.9rem; }
  .products-title { font-size: 1.2rem; }
  .product-details-side-card,
  .product-details-card { padding: 0.85rem; }
  .product-details-title { font-size: 1.35rem; }
  .product-details-image img { max-height: 320px; }
  .social-fixed { display: none; }
  .search-form { width: 151px;}

  .marquee-item {
    font-size: 0.82rem;
    padding-left: 1.5rem;
  }

  .counter-card { padding: 1rem 0.7rem; }
  .counter-label { font-size: 0.85rem; }

  .section-head { text-align: center; }
  .category-card,
  .product-card { padding: 0.85rem; }

  .product-actions .btn { width: 100%; }

  .hero-actions .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cell:nth-child(3) { display: none; }
  .hero-image-wrap {
    max-width: 20rem;
    padding: 0.75rem;
  }
  .hero-particles span:nth-child(7),
  .hero-particles span:nth-child(8) { display: none; }

  .product-details-image{width: 100%;}
 
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
