/* ============================================================
   NORTH STAR WHEELS — styles.css
   Brand Colors:
     Dark Navy  #1A212A (bg/text)
     Pure White #FFFFFF
     Steel Gray #26384C
     Light Blue #5279AD (accent/CTAs)
   ============================================================ */

/* ── Reset / Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Roboto', sans-serif;
  background-color: #1A212A;
  color: #FFFFFF;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }

p { margin-bottom: 1rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
  white-space: nowrap;
}

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

.btn-primary {
  background: #5279AD;
  color: #FFFFFF;
  border-color: #5279AD;
}
.btn-primary:hover { background: #3e61933; background: #3e6193; border-color: #3e6193; }

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-blue {
  background: transparent;
  color: #5279AD;
  border-color: #5279AD;
}
.btn-outline-blue:hover { background: rgba(82,121,173,0.12); }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section spacing ──────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ── Divider accent ───────────────────────────────────────── */
.title-divider {
  width: 60px;
  height: 3px;
  background: #5279AD;
  margin: 0.75rem auto 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 33, 42, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(82,121,173,0.25);
  transition: box-shadow 0.3s;
}

.site-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-logo span { color: #5279AD; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: #5279AD;
  transform: scaleX(0);
  transition: transform 0.25s;
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s;
}

/* Mobile nav overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(26, 33, 42, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-mobile-menu a:hover { color: #5279AD; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,33,42,0.55) 0%,
    rgba(26,33,42,0.65) 50%,
    rgba(26,33,42,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5279AD;
  margin-bottom: 1rem;
}

.hero-title {
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,33,42,0.75) 0%,
    rgba(26,33,42,0.9) 100%
  );
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-title { color: #FFFFFF; margin-bottom: 0.75rem; }
.page-hero-subtitle { color: rgba(255,255,255,0.65); font-size: 1.1rem; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.category-tiles {
  background: #1A212A;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile:hover img { transform: scale(1.06); }

.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,33,42,0.92) 0%, rgba(26,33,42,0.3) 60%, transparent 100%);
  z-index: 1;
}

.tile-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.tile-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.tile-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-products {
  background: #1e2831;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #26384C;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a2530;
}

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

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

.product-card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a2530;
}

.product-card-no-image svg { opacity: 0.2; }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.tag {
  background: rgba(82,121,173,0.18);
  border: 1px solid rgba(82,121,173,0.35);
  color: #5279AD;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.product-card-cta {
  margin-top: auto;
}

/* ============================================================
   WHY NORTH STAR SECTION
   ============================================================ */
.why-section {
  background: #26384C;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(26,33,42,0.5);
  border-radius: 4px;
  border: 1px solid rgba(82,121,173,0.15);
  transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: rgba(82,121,173,0.45);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(82,121,173,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(82,121,173,0.3);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: #5279AD;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #5279AD;
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-item svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111820;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 1rem; }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #5279AD; }

.footer-newsletter h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
}

.footer-newsletter p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}

.newsletter-form input {
  flex: 1;
  background: #26384C;
  border: 1px solid rgba(82,121,173,0.3);
  border-right: none;
  color: #FFFFFF;
  padding: 0.7rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  outline: none;
  border-radius: 3px 0 0 3px;
}

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

.newsletter-form button {
  background: #5279AD;
  color: #FFFFFF;
  border: none;
  padding: 0.7rem 1.2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #3e6193; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.filter-bar {
  background: #26384C;
  padding: 1.5rem 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  border-bottom: 1px solid rgba(82,121,173,0.2);
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #5279AD;
  border-color: #5279AD;
  color: #FFFFFF;
}

.filter-select {
  background: rgba(26,33,42,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.filter-select option { background: #1A212A; }

.results-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
  white-space: nowrap;
}

.product-card.hidden { display: none; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 7rem;
}

/* Gallery */
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  background: #26384C;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}

.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.gallery-thumb.active { border-color: #5279AD; }

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

/* Product info */
.product-info {}

.product-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.product-breadcrumb a { transition: color 0.2s; }
.product-breadcrumb a:hover { color: #5279AD; }
.product-breadcrumb span { color: rgba(255,255,255,0.25); margin: 0 0.5rem; }

.product-title {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-desc h3 {
  color: #FFFFFF;
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.product-desc ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.product-desc ul li { margin-bottom: 0.3rem; }

/* Specs table */
.specs-table-wrap {
  margin-bottom: 2rem;
}

.specs-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 0.65rem 0.75rem;
}

.specs-table td:first-child {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 42%;
}

.specs-table td:last-child {
  color: #FFFFFF;
  font-weight: 500;
}

.specs-table tr:nth-child(even) { background: rgba(38,56,76,0.4); }

/* Product CTA */
.product-cta-box {
  background: #26384C;
  border: 1px solid rgba(82,121,173,0.25);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-cta-text { flex: 1; }
.product-cta-text h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.product-cta-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.product-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #FFFFFF;
  font-size: 1.4rem;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Related products */
.related-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 4rem;
  margin-top: 4rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro img {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #26384C;
  padding: 2rem;
  border-radius: 4px;
  border-left: 3px solid #5279AD;
}

.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat-item h2 { color: #5279AD; font-size: 3rem; }
.stat-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-info p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(82,121,173,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(82,121,173,0.3);
}

.contact-icon svg {
  width: 20px; height: 20px;
  stroke: #5279AD;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact form */
.contact-form {
  background: #26384C;
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(26,33,42,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  padding: 0.75rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #5279AD; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group select option { background: #1A212A; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   DEALERS PAGE
   ============================================================ */
.dealers-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.dealer-feature {
  text-align: center;
  padding: 2rem;
  background: #26384C;
  border-radius: 4px;
}

.dealer-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dealer-feature h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.dealer-feature p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
  .product-layout { grid-template-columns: 1fr; padding-top: 6rem; }
  .about-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .tiles-grid { grid-template-columns: 1fr; }
  .tile { min-height: 260px; }

  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .dealers-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .filter-inner { gap: 0.75rem; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 220px; text-align: center; }

  .product-cta-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  .section { padding: 3.5rem 0; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-blue { color: #5279AD; }
.text-muted { color: rgba(255,255,255,0.55); }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

.separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
/* Fallback: if JS hasn't run yet (e.g. file:// protocol), show content */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* No products message */
.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
