@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap");

:root {
  --bg: #f4f6f8;
  --bg-white: #ffffff;
  --surface: #f0f2f5;
  --surface-card: #ffffff;
  --surface-dark: #0e1a2b;
  --text: #0e1a2b;
  --text-light: #3a4a5c;
  --muted: #6b7a8d;
  --line: #dde3ec;
  --line-strong: #c5cdd8;
  --brand: #1a3fe8;
  --brand-dark: #0d2bb5;
  --brand-light: rgba(26,63,232,0.08);
  --blue: #0d3b7c;
  --blue-mid: #1a5bb5;
  --blue-light: rgba(13,59,124,0.08);
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(14,26,43,0.10);
  --shadow-soft: 0 4px 20px rgba(14,26,43,0.07);
  --shadow-strong: 0 20px 60px rgba(14,26,43,0.18);
  --gradient-brand: linear-gradient(135deg, #1a3fe8 0%, #0d2bb5 100%);
  --gradient-blue: linear-gradient(135deg, #0d3b7c 0%, #1a5bb5 100%);
  --gradient-hero: linear-gradient(135deg, rgba(14,26,43,0.92) 0%, rgba(14,26,43,0.65) 55%, rgba(14,26,43,0.30) 100%);
  --container: min(1240px, calc(100% - 40px));
  --header-height: 78px;
  --radius: 6px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --transition: all 0.30s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }
body.page-loaded .site-preloader { opacity: 0; visibility: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; color: var(--text-light); line-height: 1.75; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-family: "Barlow Condensed", sans-serif; letter-spacing: -0.01em; color: var(--text); }
section { position: relative; padding: 96px 0; }
main { position: relative; z-index: 1; }

.container { width: var(--container); margin: 0 auto; }




/* ── SECTION TAGS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 4px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 2px;
  background: var(--brand);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  max-width: 600px;
  font-weight: 800;
  margin-top: 14px;
}

.section-head p { max-width: 420px; font-size: 1rem; }

/* ── PRELOADER ── */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--surface-dark);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-inner { text-align: center; }

.preloader-inner img {
  width: min(260px, 60vw);
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}

.preloader-progress {
  width: min(240px, 70vw);
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  margin: 0 auto 16px;
}

.preloader-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-brand);
  animation: loadBar 1.8s ease forwards;
}

.preloader-text {
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

@keyframes loadBar { to { width: 100%; } }

/* ── PAGE PROGRESS ── */
.page-progress {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  height: 3px !important;
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 120;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(26,63,232,0.6);
}

/* ── BUTTONS ── */
.btn, button.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  overflow: hidden;
  isolation: isolate;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(26,63,232,0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,63,232,0.36);
}

.btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: var(--transition);
}

.site-header.scrolled .mainbar {
  background: #080808;
  box-shadow: 0 4px 40px rgba(26,63,232,0.15), 0 2px 0 rgba(26,63,232,0.3);
  border-bottom-color: rgba(26,63,232,0.35);
}

.site-header.scrolled .mainbar .brand-text strong { color: #ffffff; }
.site-header.scrolled .mainbar .nav-links a { color: rgba(255,255,255,0.82); }
.site-header.scrolled .mainbar .nav-links a:hover,
.site-header.scrolled .mainbar .nav-links a.active { color: var(--brand); }
.site-header.scrolled .mainbar .menu-toggle { border-color: rgba(255,255,255,0.2); color: #fff; background: transparent; }

.topbar {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.8);
}

.topbar-inner, .mainbar-inner, .footer-bottom-inner {
  width: var(--container);
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.85rem;
}

.topbar-links, .topbar-social, .nav-links, .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-links a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.topbar-links a:hover { color: #fff; }
.topbar-links i { color: var(--brand); margin-right: 5px; }

.topbar-social a {
  width: 30px; height: 30px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social a:hover { background: var(--brand); color: #fff; }

.mainbar {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(26,63,232,0.2);
  backdrop-filter: blur(24px);
}

.mainbar-inner {
  
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand img { width: 240px; height: auto; }
.brand-text strong, .brand-text span { display: block; }
.brand-text strong { font-size: 1.05rem; font-weight: 800; color: #ffffff; line-height: 1.2; font-family: "Barlow Condensed", sans-serif; }
.brand-text span { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.14em; }

.nav-links { justify-content: center; gap: 4px; }

.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--brand); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.header-actions { gap: 12px; }

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 4px;
  background: rgba(36,199,98,0.10);
  color: #0f7a35;
  border: 1.5px solid rgba(36,199,98,0.3);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.whatsapp-pill:hover { background: #1db954; color: #fff; border-color: #1db954; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface-dark);
  z-index: 200;
  padding: 120px 24px 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu nav { display: grid; gap: 10px; }

.mobile-menu nav a {
  padding: 16px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.mobile-menu nav a:hover, .mobile-menu nav a.active {
  border-color: rgba(26,63,232,0.4);
  background: rgba(26,63,232,0.1);
  color: #fff;
}

/* ── HERO ── */
.hero { padding: 0; }

/* ── HERO BANNER — Fully Responsive, No Cropping ── */
.hero-slider,
.hero .swiper {
  width: 100%;
  /* Natural height: let content define height on mobile */
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;   /* full screen on desktop */
  overflow: hidden;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Desktop: fixed background (parallax feel, no crop) */
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.swiper-slide-active .hero-media { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-top: 160px;
  padding-bottom: 80px;
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(26,63,232,0.15);
  border: 1px solid rgba(26,63,232,0.3);
  padding: 7px 16px;
  border-radius: 4px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.0;
  font-weight: 800;
  color: #fff;
}

.hero-content > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.meta-card {
  padding: 18px 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.meta-card strong {
  display: block;
  font-size: 1.55rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}

.meta-card p { font-size: 0.83rem; color: rgba(255,255,255,0.68); }

.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-badge-row span {
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.swiper-button-prev, .swiper-button-next {
  width: 52px !important;
  height: 52px !important;
  border-radius: 4px;
  background: rgba(255,255,255,0.12) !important;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  background: var(--brand) !important;
  border-color: var(--brand);
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 1rem !important;
  color: #fff;
  font-weight: 700;
}

.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; }
.swiper-pagination-bullet-active { background: var(--brand) !important; width: 24px !important; border-radius: 3px !important; }

/* ── LOGOS STRIP ── */
.logos-strip {
  padding: 20px 0;
  background: var(--surface-dark);
}

.logos-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.logo-chip {
  padding: 12px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.logo-chip:last-child { border-right: 0; }

.logo-chip::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 10px;
  vertical-align: middle;
}

/* ── ABOUT SECTION ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.image-wrap img { width: 100%; height: 628px; object-fit: cover; }

.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  padding: 22px 26px;
  border-radius: 10px;
  background: var(--brand);
  box-shadow: 0 12px 40px #0055FD;
  text-align: center;
}

.experience-badge strong {
  display: block;
  font-size: 2.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.experience-badge span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: 120px;
  margin-top: 6px;
}

.about-copy { display: grid; gap: 22px; }
.about-copy h2 { font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 800; margin-top: 8px; }

.feature-points { display: grid; gap: 14px; }

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--text-light);
}

.feature-points li i { color: var(--brand); font-size: 1rem; margin-top: 4px; flex-shrink: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}

.stat-card {
  padding: 22px 16px;
  text-align: center;
  background: var(--bg-white);
}

.stat-card strong {
  display: block;
  font-size: 1.9rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.stat-card p { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 5px; }

/* ── PRODUCTS ── */
.products-section { background: var(--bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--line-strong);
}

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-image img { transform: scale(1.08); }

.product-content {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.product-content .section-tag { font-size: 0.72rem; }
.product-content h3 { font-size: 1.18rem; font-weight: 700; }

.view-all-wrap { margin-top: 40px; text-align: center; }

.products-slider-mobile { display: none; }

/* ── WHY CHOOSE US ── */
.values-section {
  background: var(--surface-dark);
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/product-black-front.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
}
/* HEX: #0055FD */
/* RGB: rgb(0, 85, 253) */

.values-section .section-head h2 { color: #fff; }
.values-section .section-head p { color: rgba(255,255,255,0.6); }
.values-section .section-tag { background: rgba(26,63,232,0.2); color: #80a0ff; }

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flip-card { perspective: 1400px; min-height: 260px; }

.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transition: transform 0.75s ease;
}

.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }

.flip-card-face {
  position: absolute;
  inset: 0;
  padding: 28px;
  border-radius: 10px;
  backface-visibility: hidden;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.flip-card-face h3 { color: #fff; font-size: 1.15rem; }
.flip-card-face p { color: rgba(255,255,255,0.65); font-size: 0.93rem; }

.flip-card-face.back {
  transform: rotateY(180deg);
  background: var(--gradient-brand);
  border-color: transparent;
}

.flip-card-face.back h3, .flip-card-face.back p { color: #fff; }
.flip-card-face.back p { color: rgba(255,255,255,0.85); }

.flip-icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.flip-card-face.back .flip-icon { background: rgba(255,255,255,0.2); }

/* ── TIMELINE ── */
.timeline { position: relative; display: grid; gap: 20px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--line));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.timeline-item:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); }

.timeline-item h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { font-size: 0.93rem; }

.timeline-icon {
  width: 54px; height: 54px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}

/* ── GALLERY ── */
.masonry { column-count: 3; column-gap: 20px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.gallery-item img { width: 100%; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item .overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(14,26,43,0.85);
  transform: translateY(16px);
  opacity: 0;
  transition: var(--transition);
  text-align: left;
  border: 0;
  cursor: pointer;
  width: calc(100% - 28px);
}

.gallery-item:hover .overlay { transform: translateY(0); opacity: 1; }
.gallery-item .overlay strong { display: block; color: #fff; font-weight: 700; font-size: 0.92rem; }
.gallery-item .overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── LIGHTBOX ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-lightbox.open { display: flex; }

.gallery-lightbox img {
  max-width: min(1000px, 94vw);
  max-height: 86vh;
  border-radius: 10px;
}

.gallery-lightbox button {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
}

/* ── TESTIMONIALS ── */
.reviews-section { background: var(--surface-dark); }
.reviews-section .section-head h2 { color: #fff; }
.reviews-section .section-head p { color: rgba(255,255,255,0.6); }
.reviews-section .section-tag { background: rgba(26,63,232,0.2); color: #80a0ff; }
.reviews-section .swiper { overflow: visible; }

.review-card {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  display: grid;
  gap: 16px;
  height: 100%;
  transition: var(--transition);
}

.review-card:hover { background: rgba(255,255,255,0.10); }

.review-head { display: flex; align-items: center; gap: 14px; }

.review-avatar {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  flex-shrink: 0;
}

.review-head h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.review-head p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.stars { color: #f4bb40; font-size: 1rem; letter-spacing: 0.1em; }
.review-card > p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ── FAQ ── */
.accordion { display: grid; gap: 12px; }
.faq-item { overflow: hidden; background: var(--bg-white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); transition: var(--transition); }
.faq-item.active { border-color: var(--brand); }

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  font-weight: 700;
}

.faq-question i { color: var(--brand); font-size: 0.9rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 24px 22px; border-top: 1px solid var(--line); padding-top: 16px; }
.faq-item.active .faq-answer { max-height: 260px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: 40px; align-items: stretch; }

.form-card, .contact-panel {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.form-card h2, .contact-panel h2 { font-size: 1.8rem; font-weight: 800; margin: 12px 0 8px; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.form-grid .full { grid-column: 1 / -1; }

.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: 0.87rem; color: var(--text); letter-spacing: 0.03em; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(26,63,232,0.08);
}

.field textarea { min-height: 130px; resize: vertical; }

.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7a8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }

.contact-panel { display: grid; align-content: start; gap: 20px; }

.contact-grid { display: grid; gap: 14px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: var(--transition);
}

.info-card:hover { border-color: var(--brand); background: var(--brand-light); }

.info-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}

.info-card strong { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; color: var(--text); }
.info-card p { font-size: 0.93rem; color: var(--text-light); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface-dark);
  padding: 0;
}

.cta-card {
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  right: -60px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,63,232,0.2), transparent 70%);
  pointer-events: none;
}

.cta-card .section-tag { background: rgba(26,63,232,0.2); color: #80a0ff; }
.cta-card h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); max-width: 600px; color: #fff; margin-top: 14px; }

/* ── FOOTER ── */
.footer {
  background: #07111f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 32px;
}

.footer-brand img { width: 88px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }

.footer h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links, .footer-products, .footer-policies { display: grid; gap: 10px; }

.footer-links a, .footer-products a, .footer-policies a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links a:hover, .footer-products a:hover, .footer-policies a:hover { color: #fff; padding-left: 4px; }

.newsletter-form { display: grid; gap: 12px; }

.newsletter-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.social-links { display: flex; gap: 10px; margin-top: 18px; }

.social-links a {
  width: 36px; height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.10);
  transition: var(--transition);
}

.social-links a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px; }

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
}

/* ── FLOATING BUTTONS ── */
.floating-buttons {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.floating-buttons a, .floating-buttons button {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  transition: var(--transition);
}

.floating-buttons a:hover, .floating-buttons button:hover { transform: translateY(-3px) scale(1.06); }

.floating-buttons .whatsapp-float { background: #1db954; color: #fff; }
.floating-buttons .call-float { background: var(--blue); color: #fff; }
.floating-buttons .top-float { background: var(--gradient-brand); color: #fff; }

/* ── ANIMATIONS & HELPERS ── */
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.map-card iframe { width: 100%; min-height: 100%; height: 100%; border: 0; }

.image-zoom-card { overflow: hidden; border-radius: var(--radius-lg); }
.image-zoom-card img { transition: transform 0.6s ease; }
.image-zoom-card:hover img { transform: scale(1.06); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 180px 0 80px;
  background: var(--surface-dark);
}

.page-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; align-items: center; }

.page-hero-copy { display: grid; gap: 20px; }
.page-hero-copy .breadcrumb { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.page-hero-copy h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: #fff; }
.page-hero-copy p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.page-hero-stats { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-stats span { padding: 9px 16px; border-radius: 4px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 600; }

.page-hero-visual { position: relative; min-height: 400px; }
.page-hero-visual .hero-visual-card { position: absolute; inset: 0; border-radius: 14px; overflow: hidden; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.page-hero-visual .floating-badge, .about-visual .experience-badge {
  position: absolute;
  right: -20px; bottom: 24px;
}

/* ── COMPANY PAGE ── */
.company-highlights, .profile-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.infrastructure-grid, .process-grid, .quality-grid, .profile-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.infrastructure-card, .process-card, .quality-card, .profile-card {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 14px;
  transition: var(--transition);
}

.infrastructure-card:hover, .process-card:hover, .quality-card:hover, .profile-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.infrastructure-card h3, .process-card h3, .quality-card h3, .profile-card h3 { font-size: 1.1rem; font-weight: 700; }

.product-highlight, .hero-glass {
  padding: 28px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

/* ── POLICY PAGES ── */
.policy-content { display: grid; gap: 22px; }
.policy-content h2, .policy-content h3 { margin-bottom: 8px; }
.policy-content p, .policy-content li { color: var(--text-light); line-height: 1.8; font-size: 0.97rem; }
.policy-content ul { list-style: disc; padding-left: 22px; }

/* ── MISC ── */
.inline-highlight { color: var(--brand); font-weight: 700; }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.policy-card { padding: 28px; background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }

.quick-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { padding: 28px; background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius-lg); text-align: center; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── RIPPLE ── */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.7s linear;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
}

@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ── MAP CARD ── */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) saturate(0.9);
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   DEEPAK WHEELS — ALL FIXES (blank space, logo, nav, cert, mobile)
   ══════════════════════════════════════════════════════════════ */

/* ── Fix blank space above navbar ── */
html, body { margin: 0; padding: 0; overflow-x: hidden; }

/* ── NAVBAR: Black solid background ── */
.topbar { display: none !important; }

.mainbar {
  background: #0a0a0a !important;
  border-bottom: 1px solid rgba(196,30,30,0.25) !important;
}

.site-header.scrolled .mainbar {
  background: #060606 !important;
  border-bottom-color: rgba(196,30,30,0.4) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.6) !important;
}

/* ── Mainbar single-line layout ── */
.mainbar-inner {
  display: flex !important;
  align-items: center !important;
  min-height: 74px !important;
  padding: 0 32px !important;
  gap: 24px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ── LOGO: Big, transparent, no text beside it ── */
.brand { flex-shrink: 0 !important; }
.brand-text { display: none !important; }

.brand img {
  width: 250px !important;
  height: auto !important;
  display: block !important;
  filter: drop-shadow(0 2px 10px rgba(196,30,30,0.25));
  transition: filter 0.3s, transform 0.3s;
}
.brand:hover img {
  filter: drop-shadow(0 2px 20px rgba(196,30,30,0.5));
  transform: scale(1.03);
}

/* ── NAV LINKS: bigger font, white ── */
.nav-links {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  display: flex !important;
  justify-content: center !important;
  gap: 4px !important;
}

.nav-links a {
  color: rgba(255,255,255,0.85) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 10px 14px !important;
  white-space: nowrap;
  letter-spacing: 0.01em !important;
  border-radius: 4px !important;
  transition: color 0.2s, background 0.2s !important;
}
.nav-links a:hover,
.nav-links a.active {
  color: #ffffff !important;
  background: rgba(196,30,30,0.15) !important;
}
/* .nav-links a.active { color:  #1639D9 !important; } */
.nav-links a::after { background:  #1639D9 !important; }



/* ── Header actions ── */
.header-actions { flex-shrink: 0 !important; }
.whatsapp-pill { white-space: nowrap; }

/* ── Hamburger ── */
.menu-toggle {
  background: rgba(255,255,255,0.06) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  flex-shrink: 0 !important;
  position: relative;
  z-index: 201;
}
.menu-toggle:hover {
  background: rgba(196,30,30,0.18) !important;
  border-color: rgba(196,30,30,0.5) !important;
  color: #e8280a !important;
}

/* ── MOBILE MENU: slide from right, white panel ── */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 300px !important;
  max-width: 85vw !important;
  background: #ffffff !important;
  z-index: 9999 !important;
  padding: 70px 28px 40px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease !important;
  box-shadow: -6px 0 40px rgba(0,0,0,0.22) !important;
  overflow-y: auto !important;
}
.mobile-menu.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateX(0) !important;
}

/* Dim overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* Close X button */
.mobile-menu-close {
  position: absolute !important;
  top: 16px !important;
  right: 18px !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #f0f0f0 !important;
  border: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  color: #222 !important;
  z-index: 10 !important;
  transition: background 0.2s, color 0.2s !important;
}
.mobile-menu-close:hover {
  background: rgba(196,30,30,0.1) !important;
  color: #e8280a !important;
}

/* Nav inside mobile menu */
.mobile-menu nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin-top: 8px !important;
}
.mobile-menu nav a {
  display: block !important;
  padding: 18px 4px !important;
  border: none !important;
  border-bottom: 1px solid #ebebeb !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: color 0.2s, padding-left 0.2s !important;
}
.mobile-menu nav a:hover {
  color: #e8280a !important;
  padding-left: 10px !important;
  background: transparent !important;
}
.mobile-menu nav a.active {
  color: #e8280a !important;
  border-bottom-color: #e8280a !important;
}

/* ── CERTIFICATION SECTION HEADING: centered ── */
.section-heading {
  text-align: center !important;
  margin-bottom: 44px !important;
}
.section-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem) !important;
  font-weight: 800 !important;
  margin-bottom: 14px !important;
}
.section-heading p {
  max-width: 640px !important;
  margin: 0 auto !important;
  font-size: 1rem !important;
  color: var(--text-light) !important;
}

/* ── HERO BANNERS ── */
.desktop-banner { display: block; }
.mobile-banner  { display: none; }

.hero { padding: 0; }
.hero-slider, .hero .swiper { width: 100%; }

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-media {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  height: 100% !important;
}

/* ── Footer logo ── */
.footer-brand img { width: 230px !important; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════════ */

/* Tablet ≤1100px */
@media (max-width: 1100px) {
  .nav-links  { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .header-actions .whatsapp-pill { display: none !important; }
  .brand img  { width: 155px !important; }

  .mainbar-inner {
    padding: 0 20px !important;
    gap: 12px !important;
    justify-content: space-between !important;
  }
}

/* Mobile ≤768px */
@media (max-width: 768px) {
  .desktop-banner { display: none !important; }
  .mobile-banner  { display: block !important; }

  .mobile-banner {
    width: 100%;
    overflow: hidden;
  }
  .mobile-banner .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  .mobile-banner .swiper-pagination-bullet-active {
    background: #e8280a;
  }

  .mainbar-inner {
    min-height: 62px !important;
    padding: 0 16px !important;
    gap: 10px !important;
    justify-content: space-between !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .brand img { width: 200px !important; }
  .header-actions { display: none !important; }
  .menu-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
  }
  .site-header, .mainbar { max-width: 100vw !important; }

  /* Certification heading stays centered on mobile */
  .section-heading { padding: 0 16px !important; }
}

@media (max-width: 420px) {
  .brand img { width: 200px !important; }
  .mainbar-inner { padding: 0 12px !important; gap: 8px !important; }
}

/* humberger */

@media (max-width: 991px){

  .mainbar-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  .menu-toggle{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:56px !important;
    height:56px !important;
    padding:0 !important;
    margin:0 !important;
    line-height:1 !important;
  }

  .menu-toggle i{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:24px !important;
    line-height:1 !important;
  }
}

/* ══════════════════════════════════════════════
   DW PRODUCT CARDS — DUAL IMAGE HOVER SYSTEM
   ══════════════════════════════════════════════ */

/* Override grid to allow more products gracefully */
.dw-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Card base — equal height */
.dw-prod-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.38s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.38s cubic-bezier(.22,.61,.36,1),
              border-color 0.38s ease;
}

.dw-prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.18), 0 4px 16px -4px rgba(0,0,0,0.1);
  border-color: var(--line-strong);
}

.dw-prod-card .product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.dw-prod-card .product-content .btn {
  margin-top: auto;
}

/* ── Image wrapper: stacked primary + secondary ── */
.dw-prod-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
  flex-shrink: 0;
}

/* Both images fill the container */
.dw-prod-img-wrap .dw-img-primary,
.dw-prod-img-wrap .dw-img-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: opacity, transform;
}

/* Primary: visible by default, slight zoom-in on hover */
.dw-prod-img-wrap .dw-img-primary {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.55s ease;
  z-index: 1;
}

/* Secondary: hidden by default, visible on hover with zoom-out effect */
.dw-prod-img-wrap .dw-img-secondary {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.5s ease, transform 0.55s ease;
  z-index: 2;
}

/* On hover: swap visibility smoothly */
.dw-prod-card:hover .dw-prod-img-wrap .dw-img-primary {
  opacity: 0;
  transform: scale(1.04);
}

.dw-prod-card:hover .dw-prod-img-wrap .dw-img-secondary {
  opacity: 1;
  transform: scale(1);
}

/* ── Image indicator dots (desktop only, shows current view) ── */
.dw-img-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.3s;
}

.dw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s, transform 0.3s;
}

.dw-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Swap dot state on hover */
.dw-prod-card:hover .dw-dot:first-child {
  background: rgba(255,255,255,0.5);
  transform: scale(1);
}

.dw-prod-card:hover .dw-dot:last-child {
  background: #fff;
  transform: scale(1.25);
}

/* ── Mobile card image swiper (no hover on touch) ── */
.dw-card-swiper {
  width: 100%;
  height: 100%;
}

.dw-card-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.dw-card-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dw-card-pagination {
  bottom: 8px !important;
}

.dw-card-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.55;
}

.dw-card-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* Mobile slider override: make card image area full */
.products-slider-mobile .dw-prod-img-wrap {
  aspect-ratio: 1 / 1;
}

/* ── Responsive grid breakpoints ── */
@media (max-width: 1200px) {
  .dw-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dw-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  /* Hide desktop grid, show mobile slider */
  .dw-products-grid {
    display: none;
  }
  .products-slider-mobile {
    display: block;
  }
  /* Hide desktop dot indicators inside mobile slider */
  .products-slider-mobile .dw-img-dots {
    display: none;
  }
}

/* ══════════════════════════════════════════
   DW PRODUCT SIZE & MODEL NUMBER BADGES
   ══════════════════════════════════════════ */

/* Wheel Size badge — prominent block */
.dw-size-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0e1a2b 0%, #1a3050 100%);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 2px 0 4px;
}

.dw-size-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.dw-size-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  font-family: var(--font-head, inherit);
}

/* Image / Model number pill */
.dw-imgnum-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  background: var(--bg-muted, #f3f4f6);
  border: 1px solid var(--line, #e5e7eb);
  border-radius: 20px;
  padding: 4px 10px;
  margin-bottom: 4px;
  width: fit-content;
}

.dw-imgnum-badge i {
  font-size: 0.6rem;
  opacity: 0.6;
}
/* location */

