/* ============ VinFast Vietnam - Clone giao diện ============ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #b20000;
  --dark: #000000;
  --text: #222222;
  --muted: #777777;
  --border: #eaeaea;
  --bg-light: #f6f6f6;
  --radius: 10px;
  --container: 1320px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
}
.section-title .main {
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.title-block {
  text-align: center;
  margin-bottom: 36px;
}
.title-block p.eyebrow {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.title-block h2 {
  font-size: 30px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  transition: .25s;
  cursor: pointer;
}
.btn:hover { background: #8c0000; border-color: #8c0000; }
.btn.white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn.white:hover { background: #fff; color: var(--dark); }

/* ============ HEADER ============ */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img { height: 55px; width: auto; }

.nav-main { display: flex; align-items: center; gap: 26px; }
.nav-main a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.nav-main a:hover, .nav-main li.active > a { color: #fff; }
.nav-main a:hover::after, .nav-main li.active > a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--primary);
}
.nav-main li.has-dropdown { position: relative; }
.nav-main li.has-dropdown > a::before {
  content: "▾";
  margin-left: 4px;
  font-size: 11px;
}

.header-right { display: flex; align-items: center; gap: 18px; }
.hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.4);
  padding: 8px 16px;
  border-radius: 30px;
}
.hotline svg { width: 16px; height: 16px; fill: #fff; }

.burger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}
#nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hero img { width: 100%; height: auto; display: block; }

/* ============ SERVICE HIGHLIGHTS ============ */
.highlights {
  padding: 45px 0 20px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.highlight-item .icon {
  flex: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.highlight-item .icon img { width: 32px; height: 32px; }
.highlight-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.highlight-item p {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============ PRODUCT GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }

.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: .25s;
}
.product-card:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.product-card .image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f2f2f2;
}
.product-card .image img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-card .info { padding: 16px 12px 22px; }
.product-card .name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-sale {
  color: var(--primary);
  font-size: 19px;
  font-weight: 800;
}
.price-regular {
  color: var(--muted);
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 6px;
}
.price-contact {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14.5px;
}

/* ============ MISSION / SUSTAINABILITY ============ */
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.mission-row.reverse .mission-text { order: 2; }
.mission-row.reverse .mission-image { order: 1; }
.mission-text .subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mission-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
}
.mission-text p {
  color: var(--muted);
  margin-bottom: 26px;
  font-size: 15px;
}
.mission-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============ FULL BANNER ============ */
.full-banner {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.full-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.47);
}
.full-banner .inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 20px;
}
.full-banner h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}
.full-banner p {
  margin-bottom: 26px;
  font-size: 15.5px;
  opacity: .95;
}

/* ============ INFO CARDS (blog highlight) ============ */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.info-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.05) 60%);
  z-index: 1;
}
.info-card .info-card-text {
  position: relative;
  z-index: 2;
  padding: 22px;
  width: 100%;
}
.info-card h5 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.info-card .btn-mini {
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.info-col-stack { display: flex; flex-direction: column; gap: 24px; }
.info-col-stack .info-card { min-height: 118px; }

/* ============ NEWS ============ */
.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.news-head h2 {
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}
.news-head a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.news-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.news-card .thumb {
  aspect-ratio: 16/10.4;
  overflow: hidden;
  background: #eee;
}
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .body { padding: 16px; }
.news-card h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 42px;
}
.news-card .date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.news-card .excerpt {
  font-size: 13.5px;
  color: var(--muted);
}

/* ============ VIDEO ============ */
.video-section h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.video-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .85;
}
.video-thumb .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
}
.video-thumb .play::before {
  content: "";
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark) url('https://vinfastvn.vn/wp-content/uploads/2026/05/footerbg.webp') center/cover no-repeat;
  color: #fff;
  padding-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col img.footer-logo { height: 46px; margin-bottom: 16px; }
.footer-col h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p, .footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.footer-col li strong { color: #fff; }
.footer-col a:hover { color: var(--primary); }
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-icons svg { width: 16px; height: 16px; fill: #fff; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form button {
  align-self: flex-start;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
}
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.75); }
.footer-links a:hover { color: #fff; }
.copyright { font-size: 13.5px; color: rgba(255,255,255,.6); }

.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 999;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3) { grid-column: span 2; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-row { gap: 34px; }
}

@media (max-width: 860px) {
  .nav-main, .header-right .hotline { display: none; }
  .burger { display: flex; }
  #nav-toggle:checked ~ nav .nav-main {
    display: flex;
  }
  .header-inner { position: relative; }
  .nav-main {
    display: none;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-main li { width: 100%; }
  .nav-main a { display: block; padding: 12px 0; width: 100%; }
  .nav-main a:hover::after, .nav-main li.active > a::after { display: none; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .mission-row { grid-template-columns: 1fr; }
  .mission-row.reverse .mission-text { order: 1; }
  .mission-row.reverse .mission-image { order: 2; }
  .info-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-col:nth-child(3) { grid-column: span 1; }
}

@media (max-width: 600px) {
  .section { padding: 40px 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .video-grid-right { grid-template-columns: 1fr; }
  .title-block h2 { font-size: 22px; }
  .mission-text h2 { font-size: 24px; }
  .full-banner h2 { font-size: 24px; }
  .news-head { flex-direction: row; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .product-grid, .product-grid.cols-3, .news-grid { grid-template-columns: 1fr; }
  .logo img { height: 42px; }
  .header-inner { height: 66px; }
}

/* ============================================================
   TRANG CON (breadcrumb, page hero, trang bài viết, trang xe...)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 14px 0;
  font-size: 13.5px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span.sep { margin: 0 6px; color: #bbb; }
.breadcrumb span.current { color: var(--dark); font-weight: 600; }

/* Page hero (banner tiêu đề cho trang tĩnh: giới thiệu, liên hệ, bảng giá...) */
.page-hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), var(--dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.page-hero .eyebrow {
  color: #ffb3b3;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.page-hero h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Trang nội dung dạng bài viết (Giới thiệu, Tin tức chi tiết...) */
.article-page {
  max-width: 860px;
  margin: 0 auto;
}
.article-page h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 34px 0 14px;
}
.article-page h2:first-child { margin-top: 0; }
.article-page h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--primary);
}
.article-page p {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.75;
}
.article-page ul {
  margin: 0 0 16px 4px;
}
.article-page ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}
.article-page ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
figure { margin: 20px 0; }
figure img { border-radius: var(--radius); width: 100%; }
figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.article-cover img { width: 100%; }

/* Info list (địa chỉ, MST, hotline...) */
.info-list { margin: 18px 0 26px; }
.info-list li {
  font-size: 15px;
  margin-bottom: 10px;
  padding-left: 0;
}
.info-list li::before { display: none; }
.info-list li strong { color: var(--dark); }

/* ============ PRODUCT DETAIL PAGE (chi tiết xe) ============ */
.product-hero {
  padding: 40px 0;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: flex-start;
}
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-light);
  aspect-ratio: 16/10;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-gallery-thumbs img {
  width: 70px; height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--border);
  cursor: pointer;
}
.product-hero h1 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: left;
}
.price-table th {
  background: var(--dark);
  color: #fff;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: .3px;
}
.price-table .old { color: var(--muted); text-decoration: line-through; display: block; }
.price-table .new { color: var(--primary); font-weight: 800; font-size: 16px; display: block; }
.price-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 26px;
}

.promo-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.promo-box h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}
.promo-box ul { margin: 0; }
.promo-box ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.promo-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: #fff;
  background: var(--primary);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.promo-box .cta-line {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  margin: 14px 0;
}
.promo-box .btn { width: 100%; justify-content: center; margin-top: 6px; }

/* Anchor tab nav */
.anchor-tabs {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.anchor-tabs ul {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.anchor-tabs a {
  display: block;
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  border-bottom: 3px solid transparent;
}
.anchor-tabs a:hover { color: var(--primary); }

.spec-section {
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 130px;
}
.spec-section h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.spec-section .content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.spec-section p {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.spec-section img {
  border-radius: var(--radius);
  margin: 18px 0;
  width: 100%;
}
.spec-section img + p, .spec-section p:has(+ img) { margin-bottom: 0; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table tr:nth-child(odd) { background: var(--bg-light); }
.spec-table tr:first-child { background: var(--dark) !important; }
.spec-table tr:first-child td {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
}
.spec-table td {
  padding: 12px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.spec-table td:first-child { font-weight: 600; width: 45%; }
.spec-table td:last-child { color: var(--muted); }

/* ============ LISTING (danh sách tin tức đầy đủ) ============ */
.news-grid.full { grid-template-columns: repeat(3, 1fr); }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: flex-start;
}
.contact-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 18px; }
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-row .ic {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ic svg { width: 18px; height: 18px; fill: #fff; }
.contact-row strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: 14.5px; color: var(--muted); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.form-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 18px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-card .btn { margin-top: 8px; }

/* ============ PRICE LIST PAGE ============ */
.pricelist-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricelist-table thead th {
  background: var(--dark);
  color: #fff;
  padding: 14px 16px;
  font-size: 13px;
  text-transform: uppercase;
  text-align: left;
}
.pricelist-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  vertical-align: middle;
}
.pricelist-table tbody tr:hover { background: var(--bg-light); }
.pricelist-table .car-cell { display: flex; align-items: center; gap: 12px; }
.pricelist-table .car-cell img { width: 64px; height: 40px; object-fit: cover; border-radius: 6px; }
.pricelist-table .car-cell span { font-weight: 700; }
.pricelist-table .sale { color: var(--primary); font-weight: 800; }
.pricelist-table .old { color: var(--muted); text-decoration: line-through; font-size: 13px; display: block; }
.pricelist-group-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin: 40px 0 16px;
}
.pricelist-group-title:first-child { margin-top: 0; }

@media (max-width: 860px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .anchor-tabs { top: 66px; }
  .news-grid.full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 22px; }
  .pricelist-table { font-size: 13px; }
  .pricelist-table .car-cell img { width: 48px; height: 32px; }
  .news-grid.full { grid-template-columns: 1fr 1fr; }
}

/* ============ LEAD POPUP ============ */
.lead-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lead-popup-overlay.active { display: flex; }

.lead-popup {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 22px;
  padding: 28px 22px 22px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.lead-popup h3 {
  color: var(--primary);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  padding-right: 20px;
}

.lp-subtitle {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
}

.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.lead-popup-close:hover { color: var(--primary); }

.lead-popup input,
.lead-popup textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  box-sizing: border-box;
}
.lead-popup input:focus,
.lead-popup textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.lp-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  cursor: pointer;
}
.lp-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-width: 14px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  box-sizing: border-box;
}
.lp-checkbox span { flex: 1; }

.lp-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}
.lp-submit:hover { background: #8c0000; }

.lp-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.lp-message {
  text-align: center;
  font-size: 14px;
  margin-top: 8px;
}
