/* ─────────────────────────────────────────────────────────
   STRONG LIFT PARTS — Design System v2
   Industrial B2B · Deep Navy · Steel · Gold Accent
   Fonts: Space Grotesk (headings) + Inter (body)
   ───────────────────────────────────────────────────────── */

/* ── DESIGN TOKENS ── */
:root {
  --primary:      #C9A84C;
  --primary-dark: #B8933D;
  --primary-light:#E4C97B;
  --dark:         #0D1B2E;
  --dark2:        #091525;
  --mid:          #142030;
  --steel:        #3A5670;
  --light:        #F2F5F8;
  --border:       #D5DFE8;
  --border-strong:#B8C8D8;
  --text:         #0D1B2E;
  --muted:        #556678;
  --green:        #15803d;
  --wa:           #25D366;
  --radius:       4px;
  --radius-lg:    6px;
  --shadow:       0 2px 10px rgba(13,27,46,.07);
  --shadow-md:    0 4px 20px rgba(13,27,46,.11);
  --shadow-lg:    0 10px 36px rgba(13,27,46,.16);
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --transition:   .2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.rtl {
  font-family: "Segoe UI", "Noto Naskh Arabic", "Arabic Typesetting", Tahoma, Arial, sans-serif;
  direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--dark);
}

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

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 6rem 0;
}

/* ── SECTION EYEBROW — replaces pill badges ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  line-height: 1.08;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
}

/* Primary = Deep Navy — authoritative CTA (Request Quote, View Parts) */
.btn-primary {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-primary:hover {
  background: var(--dark2);
  border-color: var(--dark2);
  box-shadow: 0 4px 16px rgba(13,27,46,.28);
}

/* Gold — accent CTA where gold is appropriate */
.btn-gold {
  background: var(--primary);
  color: var(--dark2);
  border-color: var(--primary);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}

/* Navy alias (kept for backward compatibility) */
.btn-navy, .btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-navy:hover, .btn-dark:hover {
  background: var(--dark2);
  box-shadow: 0 4px 16px rgba(13,27,46,.28);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-gold:hover {
  background: var(--primary);
  color: var(--dark2);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--light); color: var(--dark); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(13,27,46,.1);
  border-bottom-color: var(--primary);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-links li a {
  font-family: var(--font-body);
  font-size: .825rem;
  font-weight: 500;
  color: var(--muted);
  padding: .45rem .8rem;
  border-radius: 0;
  letter-spacing: .01em;
  transition: color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover {
  color: var(--dark);
  border-bottom-color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--dark);
  padding: .3rem;
  margin-left: auto;
}

/* ── LANG SWITCHER ── */
.lang-switcher { display: flex; gap: .35rem; margin-left: 1.25rem; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .28rem .6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ── CINEMA HERO ── */
.hero-cinema {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-cinema-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,21,37,.98) 0%,
    rgba(9,21,37,.85) 30%,
    rgba(9,21,37,.50) 60%,
    rgba(9,21,37,.20) 100%
  );
  z-index: 1;
}

.hero-cinema-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero location label — replaces pill badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}

.hero-accent {
  color: var(--primary);
  display: block;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Specialty tags — rectangular, subtle */
.hero-specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 2.25rem;
}
.hero-specialty-tags span {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .28rem .7rem;
  border-radius: 0;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition);
}
.hero-specialty-tags span:hover {
  background: rgba(201,168,76,.12);
  border-color: rgba(201,168,76,.3);
  color: var(--primary-light);
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Legacy split hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.hero-photo-col { overflow: hidden; }
.hero-photo-img { width: 100%; height: 100%; object-fit: cover; }
.hero-left { display: flex; align-items: center; background: var(--dark2); padding: 4rem 3.5rem; }
.hero-left-inner { max-width: 520px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 2.5rem 0;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .75rem 2.25rem;
  min-width: 140px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ── TRUST STRIP ── */
.trust-strip {
  padding: 3.5rem 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.75rem 1.5rem;
  background: #fff;
  transition: background var(--transition);
}
.trust-item:hover { background: var(--light); }

.trust-icon {
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.trust-item span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── BRANDS SECTION ── */
.brands-section { padding: 6rem 0; }

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.brand-card:hover {
  border-top-color: var(--primary);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.brand-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.brand-logo { height: 32px; width: auto; }
.sany-logo, .xcmg-logo, .zoomlion-logo { height: 32px; width: auto; }
.brand-logo-img { height: 32px; width: auto; object-fit: contain; }

.brand-card-arrow {
  font-size: 1rem;
  color: var(--muted);
  transition: color var(--transition), transform var(--transition);
}
.brand-card:hover .brand-card-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

.brand-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}
.brand-card p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.brand-card-models {
  font-size: .74rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.brand-card-models li {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--steel);
  padding: .18rem .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 2px;
}

.brand-card-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: .1rem;
  transition: color var(--transition), border-color var(--transition);
}
.brand-card:hover .brand-card-cta {
  color: var(--primary);
  border-color: var(--primary);
}

/* ── CATEGORIES GRID ── */
.categories-section { padding: 6rem 0; background: var(--light); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.category-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background var(--transition);
  border-left: 3px solid transparent;
}
.category-card:hover {
  background: var(--light);
  border-left-color: var(--primary);
}
.category-card--specialty {
  background: var(--dark2);
  border-left-color: var(--primary);
}
.category-card--specialty:hover { background: var(--mid); }

/* cat-star kept for specialty marking */
.cat-star {
  color: var(--primary);
  font-size: .85rem;
  margin-bottom: .5rem;
  display: block;
}

.cat-icon {
  color: var(--primary);
  margin-bottom: .9rem;
  flex-shrink: 0;
}

.category-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}
.category-card--specialty h4 { color: #fff; }

.category-card p {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  flex: 1;
  line-height: 1.6;
}
.category-card--specialty p { color: rgba(255,255,255,.48); }

.cat-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
  letter-spacing: .02em;
}
.cat-link:hover { gap: .55rem; }

/* ── WHY SECTION ── */
.why-section { padding: 6rem 0; }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border: 1px solid var(--border);
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: #fff;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-left-color var(--transition);
}
.why-list li:last-child { border-bottom: none; }
.why-list li:hover {
  background: var(--light);
  border-left-color: var(--primary);
}

.why-check {
  flex-shrink: 0;
  margin-top: .1rem;
  color: var(--primary);
  width: 16px;
  height: 16px;
}

.why-list li div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .15rem;
}
.why-list li div { font-size: .85rem; color: var(--muted); line-height: 1.6; }

.why-image { position: relative; overflow: hidden; }
.why-img { width: 100%; height: 420px; object-fit: cover; }

.why-image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9,21,37,.88);
  border-top: 2px solid var(--primary);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  padding: .85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.why-image-badge strong { color: var(--primary); font-size: .85rem; }
.why-image-badge span { color: rgba(255,255,255,.55); font-weight: 400; }

/* ── INDUSTRIES SECTION ── */
.industries-section {
  padding: 6rem 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,.1);
}
.industries-section .section-title { color: #fff; }
.industries-section .section-sub   { color: rgba(255,255,255,.48); }
.industries-section .section-eyebrow { color: var(--primary); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
}

.industry-card {
  background: var(--dark2);
  padding: 2rem 1.5rem;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-left-color var(--transition);
}
.industry-card:hover {
  background: var(--mid);
  border-left-color: var(--primary);
}

.industry-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  width: 28px;
  height: 28px;
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.industry-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery-section { padding: 5rem 0; background: var(--dark2); }
.gallery-section .section-title { color: #fff; }
.gallery-section .section-sub   { color: rgba(255,255,255,.45); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}

.gallery-item { overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 6rem 0; background: var(--light); }

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), border-top-color var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--primary);
}

.testimonial-stars { color: var(--primary); font-size: .95rem; margin-bottom: .85rem; letter-spacing: .05em; }

.testimonial-body {
  font-size: .9rem;
  color: #3A4D62;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: .85rem; }

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author span { font-size: .78rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; }

.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: var(--light); }

.faq-question {
  padding: 1.2rem 1.5rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.faq-item[open] .faq-question,
.faq-question:hover {
  border-left-color: var(--primary);
  color: var(--dark);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem 1.7rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── MODELS / BRAND TABS ── */
.models-section { padding: 6rem 0; background: var(--dark2); }
.models-section .section-title { color: #fff; }
.models-section .section-sub   { color: rgba(255,255,255,.45); }

.models-tabs-header {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

.models-tab {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.75rem;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: background var(--transition);
}
.models-tab:last-child { border-right: none; }
.models-tab.active, .models-tab:hover {
  background: rgba(201,168,76,.1);
}
.models-tab.active {
  border-bottom: 2px solid var(--primary);
}

.models-tab-logo { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: .7; }
.models-tab.active .models-tab-logo { opacity: 1; }
.models-tab-meta { text-align: left; }
.models-tab-meta strong { display: block; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); }
.models-tab-meta span  { font-size: .73rem; color: rgba(255,255,255,.42); }

.models-panel { display: none; }
.models-panel.active { display: block; }

.models-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}

.models-cat-block {
  background: var(--dark2);
  padding: 1.25rem;
}

.models-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.models-cat-name {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.models-cat-count {
  font-size: .7rem;
  background: rgba(201,168,76,.12);
  color: var(--primary-light);
  padding: .15rem .45rem;
  border-radius: 2px;
  font-weight: 700;
}

.models-chip-grid { display: flex; flex-wrap: wrap; gap: .3rem; }

.model-chip {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  padding: .22rem .55rem;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}
.model-chip:hover {
  color: var(--primary-light);
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.2);
}

.models-panel-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .85rem;
  color: rgba(255,255,255,.42);
}
.models-panel-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 5.5rem 0;
  background: var(--dark2);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,.12);
}

.cta-content { position: relative; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .85rem;
  letter-spacing: -.03em;
}
.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,.52);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (non-home pages) ── */
.page-hero, .about-hero, .brand-hero {
  background: var(--dark2);
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
}

.page-hero h1, .about-hero h1, .brand-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: .65rem;
}
.page-hero p, .about-hero p, .brand-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.52);
  max-width: 560px;
  line-height: 1.75;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .78rem;
  color: rgba(255,255,255,.36);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ── ABOUT PAGE ── */
.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.about-body {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.85;
}
.about-body p + p { margin-top: 1.25rem; }
.about-body h2, .about-body h3 {
  color: var(--dark);
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: .65rem;
}

.about-oem-note {
  background: var(--light);
  border-left: 3px solid var(--primary);
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 2rem;
}

.about-sidebar-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

.about-photo { overflow: hidden; aspect-ratio: 4/3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT PAGE ── */
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  margin-bottom: .75rem;
  transition: border-left-color var(--transition), background var(--transition);
}
.contact-item:hover {
  border-left-color: var(--primary);
  background: #fff;
}

.contact-icon {
  flex-shrink: 0;
  color: var(--primary);
  width: 18px;
  height: 18px;
  margin-top: .15rem;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: .2rem;
}
.contact-item a, .contact-item span { font-size: .85rem; color: var(--muted); }
.contact-item a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .72rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── PRODUCTS / PARTS ── */
.product-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.product-card {
  background: #fff;
  border-left: 3px solid transparent;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-left-color var(--transition), background var(--transition);
}
.product-card:hover {
  border-left-color: var(--primary);
  background: var(--light);
}
.product-card p { flex: 1; }

.product-icon {
  color: var(--primary);
  margin-bottom: .75rem;
  width: 24px;
  height: 24px;
}

.product-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}
.product-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: .9rem;
  transition: gap var(--transition);
}
.product-card-link:hover { gap: .55rem; }

/* ── PARTS TABLE ── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.parts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.parts-table th {
  background: var(--dark2);
  color: rgba(255,255,255,.75);
  font-family: var(--font-heading);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 1rem;
  text-align: left;
}
.parts-table td {
  padding: .82rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.parts-table tr:last-child td { border-bottom: none; }
.parts-table tr:hover td { background: var(--light); }

/* ── BADGES ── */
.badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-green { background: rgba(21,128,61,.1); color: var(--green); }
.badge-orange { background: rgba(234,88,12,.1); color: #ea580c; }

/* ── PRODUCT SIDEBAR ── */
.product-sidebar { position: sticky; top: 90px; }

.sidebar-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1px;
}
.sidebar-box h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-cat-links { display: flex; flex-direction: column; gap: 0; }
.sidebar-cat-links li a {
  font-size: .85rem;
  color: var(--muted);
  display: block;
  padding: .4rem .5rem;
  border-left: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.sidebar-cat-links li a:hover {
  color: var(--dark);
  background: #fff;
  border-left-color: var(--border-strong);
}
.sidebar-cat-links li.active a {
  color: var(--primary);
  font-weight: 700;
  border-left-color: var(--primary);
}

.sidebar-star { color: var(--primary); font-size: .75rem; }

/* ── REAL STOCK SECTION ── */
.stock-section {
  padding: 5rem 0;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.stock-set-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .65rem;
}

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

.stock-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}
.stock-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.stock-item:hover img { transform: scale(1.04); }

.stock-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,21,37,.85) 0%, transparent 100%);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 600;
  padding: 1.1rem .85rem .55rem;
  letter-spacing: .04em;
}

.stock-actions {
  display: flex;
  gap: .85rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── FOOTER MAP ── */
.footer-map {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-top: 2px solid rgba(201,168,76,.15);
  filter: grayscale(20%) brightness(.85);
  opacity: .88;
  display: block;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark2);
  color: rgba(255,255,255,.55);
  border-top: 2px solid rgba(201,168,76,.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.75; }

.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  transition: color var(--transition);
  padding: .1rem 0;
  border-left: 2px solid transparent;
  padding-left: .5rem;
}
.footer-links a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}

.footer-contact { display: flex; flex-direction: column; gap: .45rem; }
.footer-contact p { font-size: .85rem; }
.footer-contact a { color: var(--primary-light); transition: color var(--transition); }
.footer-contact a:hover { color: var(--primary); }

.footer-trademark {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  line-height: 1.75;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.22);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  background: var(--wa);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.38);
  transition: box-shadow var(--transition), background var(--transition);
}
.wa-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-big { font-size: 1.5rem; }

/* ── FLASH ── */
.flash {
  padding: .8rem 1.5rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 500;
}
.flash-notice {
  background: rgba(21,128,61,.08);
  color: var(--green);
  border-bottom: 1px solid rgba(21,128,61,.15);
}

/* ── RTL ── */
.rtl .nav-links      { margin-left: 0; margin-right: auto; }
.rtl .why-list li    { border-left: none; border-right: 3px solid transparent; }
.rtl .why-list li:hover { border-right-color: var(--primary); }
.rtl .about-oem-note { border-left: none; border-right: 3px solid var(--primary); }
.rtl .category-card  { border-left: none; border-right: 3px solid transparent; }
.rtl .category-card:hover { border-right-color: var(--primary); }
.rtl .contact-item   { border-left: none; border-right: 3px solid transparent; }
.rtl .contact-item:hover { border-right-color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .brand-cards      { grid-template-columns: repeat(2, 1fr); }
  .categories-grid  { grid-template-columns: repeat(3, 1fr); }
  .industries-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .trust-grid        { grid-template-columns: repeat(2, 1fr); }
  .models-cats-grid  { grid-template-columns: repeat(2, 1fr); }
  .product-layout    { grid-template-columns: 1fr; }
  .product-sidebar   { order: -1; position: static; }
  .why-layout        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-layout      { grid-template-columns: 1fr; }
  .contact-layout    { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .categories-grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .brand-cards       { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-cinema       { min-height: 80vh; padding-bottom: 4rem; }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .stock-grid     { grid-template-columns: repeat(2, 1fr); }
  .section        { padding: 4rem 0; }
  .section-title  { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 8px 28px rgba(13,27,46,.14);
    border-top: 1px solid var(--border);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: .75rem .85rem;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle     { display: block; }
  .lang-switcher  { margin-left: auto; }

  .trust-grid     { grid-template-columns: 1fr; }
  .categories-grid{ grid-template-columns: repeat(2, 1fr); }
  .industries-grid{ grid-template-columns: 1fr; }

  .stats-inner    { justify-content: space-around; }
  .stat-divider   { display: none; }
  .stat-item      { padding: .85rem; min-width: 100px; }

  .hero-title     { font-size: clamp(2.2rem, 7vw, 2.8rem); }
  .hero-sub       { font-size: .95rem; }

  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .models-cats-grid { grid-template-columns: 1fr; }
  .models-tabs-header { width: 100%; }
  .models-tab     { flex: 1; justify-content: center; padding: .75rem 1rem; }
}

@media (max-width: 480px) {
  .hero-cinema      { min-height: 70vh; }
  .categories-grid  { grid-template-columns: 1fr; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
  .cta-buttons      { flex-direction: column; align-items: center; }
  .brand-cards      { grid-template-columns: 1fr; }
  .hero-specialty-tags { gap: .25rem; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE-SPECIFIC COMPONENTS
══════════════════════════════════════════════════════════ */

/* ── BUTTON VARIANTS ── */
.btn-lg   { padding: 1rem 2.25rem; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── PAGE HERO with background photo ── */
.page-hero--photo {
  background-size: cover;
  background-position: center;
}
.page-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.page-hero-content > div { flex: 1; min-width: 0; }

/* ── SPECIALTY BADGE ── */
.specialty-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(201,168,76,.35);
  padding: .25rem .65rem;
  border-radius: 2px;
  margin-bottom: .75rem;
}
.specialty-badge--lg { font-size: .75rem; padding: .3rem .8rem; }

/* ── PRODUCT MAIN (category page two-col layout) ── */
.product-main { min-width: 0; }

.product-description-card {
  padding: 2rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  margin-bottom: 2rem;
}
.product-description-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .65rem;
}
.product-description-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── COMPATIBLE BRANDS (product page) ── */
.brands-covered {
  margin-bottom: 2rem;
}
.brands-covered h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.brand-badges { display: flex; gap: .75rem; flex-wrap: wrap; }

.brand-badge-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color var(--transition), background var(--transition);
}
.brand-badge-link:hover {
  border-color: var(--primary);
  background: var(--light);
}
.brand-badge-link .brand-logo { font-size: .75rem; font-weight: 800; }

/* ── MODELS BY BRAND (product page) ── */
.models-by-brand {
  margin-bottom: 2rem;
}
.models-by-brand h3 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .85rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.model-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .35rem;
}

.model-tag {
  font-size: .75rem;
  font-weight: 500;
  color: var(--steel);
  background: var(--light);
  border: 1px solid var(--border);
  padding: .28rem .5rem;
  border-radius: 2px;
  text-align: center;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.model-tag:hover {
  color: var(--dark);
  border-color: var(--primary);
  background: rgba(201,168,76,.06);
}

/* ── PARTS IN CATEGORY ── */
.parts-in-category h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

/* ── SIDEBAR CARDS (alias for sidebar-box) ── */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1px;
}
.sidebar-card h3 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .9rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .9rem;
}

.sidebar-card--cta {
  background: var(--dark2);
  border-color: rgba(201,168,76,.15);
}
.sidebar-card--cta h3 { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.sidebar-card--cta p  { color: rgba(255,255,255,.55); }

.sidebar-part-photo { padding: 0; overflow: hidden; }
.sidebar-photo-img  { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sidebar-photo-caption {
  padding: .5rem .75rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.sidebar-specialties {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-specialties li {
  font-size: .82rem;
  color: var(--muted);
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sidebar-specialties li:last-child { border-bottom: none; }
.sidebar-specialties li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BRAND TAG (table inline label) ── */
.brand-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 2px;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  background: var(--light);
}
.brand-tag.sany     { border-color: rgba(201,168,76,.35); color: var(--dark); }
.brand-tag.xcmg     { border-color: rgba(58,86,112,.35);  color: var(--steel); }
.brand-tag.zoomlion { border-color: rgba(13,27,46,.2);    color: var(--dark); }

/* ── PART NUMBER CELL ── */
.parts-table td.pn {
  font-family: 'Space Grotesk', monospace;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}

/* ── BRAND PAGE HERO LOGO ── */
.brand-hero-logo {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.brand-hero-logo::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
}

/* ── BRAND PAGE MODELS GRID ── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  border: 1px solid var(--border);
}
.models-category {
  background: #fff;
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.models-category:nth-child(2n)   { border-right: none; }
.models-category:nth-last-child(-n+2):nth-child(2n+1),
.models-category:nth-last-child(-n+2):nth-child(2n+1) ~ .models-category { border-bottom: none; }
.models-category h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}

/* ── MODEL / ENQUIRY CTA (empty parts page) ── */
.model-enquiry-cta {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
}
.model-enquiry-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.model-enquiry-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.model-enquiry-cta > p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.model-enquiry-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
  border: 1px solid var(--border);
  text-align: left;
}
.enquiry-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.enquiry-step:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.enquiry-step span:last-child {
  font-size: .88rem;
  color: var(--muted);
}

.model-enquiry-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.model-enquiry-note {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .02em;
}

/* ── CATALOG SEARCH ── */
.catalog-search-bar {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.search-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.search-input {
  flex: 1;
  min-width: 200px;
  padding: .72rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.search-select {
  padding: .72rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text);
  background: #fff;
  cursor: pointer;
  transition: border-color var(--transition);
}
.search-select:focus { outline: none; border-color: var(--primary); }

.results-count {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.results-count strong { color: var(--dark); }

/* ── ABOUT PAGE EXTRAS ── */
.about-img-wrap { overflow: hidden; }
.about-photo { width: 100%; object-fit: cover; display: block; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}
.values-list li {
  padding: .9rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  transition: border-left-color var(--transition), background var(--transition);
  line-height: 1.65;
}
.values-list li:last-child { border-bottom: none; }
.values-list li:hover {
  background: var(--light);
  border-left-color: var(--primary);
}

/* Stock photo gallery (about page) */
.stock-gallery-section { padding: 4rem 0; }
.stock-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.gallery-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-photo--tall { grid-row: span 2; }
.gallery-cta-note {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
}
.gallery-cta-note a { color: var(--primary); font-weight: 600; }

/* About brands */
.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-brand-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.about-brand-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.about-brand-card:hover .about-brand-photo { transform: scale(1.04); }
.about-brand-info {
  padding: 1.5rem;
}
.about-brand-logo-img { height: 28px; width: auto; margin-bottom: .85rem; }
.about-brand-info p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

/* About location */
.about-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-location-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: .65rem;
}
.about-location-text > p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.location-details li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted);
}
.location-details li:last-child { border-bottom: none; }
.location-details li svg { flex-shrink: 0; color: var(--primary); }
.location-details li a { color: var(--primary); font-weight: 600; }

.location-map-wrap {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.location-map-wrap iframe {
  width: 100%;
  height: 260px;
  border: none;
  border: 1px solid var(--border);
  display: block;
}
.btn-map-cta { font-size: .82rem; }

.shopfront-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: .75rem;
}

/* ── PART DETAIL PAGE ── */
.part-detail-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.part-detail-breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.part-detail-breadcrumb a { color: var(--muted); transition: color var(--transition); }
.part-detail-breadcrumb a:hover { color: var(--primary); }
.part-detail-breadcrumb span { color: var(--border-strong); }

.part-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.part-pn-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Space Grotesk', monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-strong);
  padding: .3rem .75rem;
  margin-bottom: 1rem;
}
.part-pn-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .02em;
  margin-bottom: .25rem;
}
.part-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.part-detail-brand {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.part-detail-brand strong { color: var(--dark); }

.part-enquiry-note {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--light);
  border-left: 3px solid var(--primary);
}
.part-cta-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.part-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}
.part-back-link:hover { color: var(--dark); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 960px) {
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .models-grid       { grid-template-columns: repeat(2, 1fr); }
  .model-tags { grid-template-columns: repeat(3, 1fr); }
  .about-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-location    { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  .products-grid       { grid-template-columns: 1fr; }
  .stock-gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-photo--tall { grid-row: span 1; }
  .models-grid         { grid-template-columns: 1fr; }
  .about-brands-grid   { grid-template-columns: 1fr; }
  .search-row          { flex-direction: column; }
  .search-input        { width: 100%; }
  .part-detail-card    { padding: 1.5rem; }
  .model-enquiry-steps { text-align: left; }
}

/* ── PRODUCTS INDEX — specialty banner & card variants ── */
.specialty-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}
.specialty-star {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .1rem;
}
.specialty-banner strong { font-size: .85rem; color: var(--dark); display: block; margin-bottom: .15rem; }
.specialty-banner p      { font-size: .78rem; color: var(--muted); margin: 0; }

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.product-card--specialty {
  border-left-color: rgba(201,168,76,.35);
}
.product-card--specialty:hover {
  border-left-color: var(--primary);
}

/* ── PART DETAIL PAGE ── */
.part-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.part-detail-main { min-width: 0; }

.part-detail-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.part-detail-hero h1 {
  font-size: 1.6rem;
  color: #fff;
  margin: .4rem 0 .5rem;
}
.part-detail-hero > div p { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }

.part-detail-pn {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--primary);
  padding: .25rem .75rem;
  border-radius: 3px;
  font-family: 'Space Grotesk', monospace;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.part-detail-dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}
.part-detail-dl dt {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  padding: .85rem 1rem .85rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.part-detail-dl dd {
  font-size: .85rem;
  color: var(--dark);
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  margin: 0;
}
.part-detail-dl dt:last-of-type,
.part-detail-dl dd:last-of-type { border-bottom: none; }

.part-detail-code {
  font-family: 'Space Grotesk', monospace;
  font-size: .85rem;
  background: var(--light);
  padding: .2rem .5rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--dark);
}

.part-detail-cta-block {
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.part-detail-cta-block h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 .5rem;
}
.part-detail-cta-block p { font-size: .83rem; color: var(--muted); margin: 0 0 1.25rem; }

.part-detail-cta-buttons {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .part-detail-layout { grid-template-columns: 1fr; }
  .part-detail-dl     { grid-template-columns: 120px 1fr; }
}
@media (max-width: 580px) {
  .part-detail-hero   { flex-direction: column; gap: 1rem; }
  .part-detail-dl     { grid-template-columns: 1fr; }
  .part-detail-dl dt  { border-bottom: none; padding-bottom: .15rem; }
  .part-detail-dl dd  { padding-top: 0; }
}
