/* ========= Base / Reset ========= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body { font-family: Arial, Helvetica, sans-serif; background:#efefef; color:#111; }

/* ========= Common Layout ========= */
.container { width: min(1200px, 92%); margin: 0 auto; }

/* top shipping notice */
.notice { background:#e9e9e9; color:#000; font-size:14px; }
.notice .container { padding: 8px 0; display:flex; align-items:center; gap:8px; }

/* header with brand + simple links */
.header { background:#f8f8f8; border-bottom:1px solid #dcdcdc; }
.header-inner { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.brand { display:flex; align-items:center; gap:12px; text-decoration:none; }
.site-logo { height:64px; width:auto; } /* bigger logo as requested */

.top-links a {
  color:#111; text-decoration:none; margin-left:24px; font-size:15px;
}
.top-links a:hover, .top-links a.active { color:#c52020; text-decoration:underline; }

/* ========= Hero / Carousel ========= */
.hero { margin: 16px 0 10px; }
.carousel {
  position: relative;
  border: 3px solid #c52020;       /* red border like screenshot */
  border-radius: 4px;
  overflow: hidden;
  background:#222;
}
.slides { position: relative; width: 100%; height: 0; padding-bottom: 42%; } 
/* 42% gives the same tall banner proportion you showed */

.slide { position:absolute; inset:0; opacity:0; transition: opacity .6s ease; }
.slide.is-active { opacity:1; }
.slide img { width:100%; height:100%; object-fit:cover; display:block; }

/* arrows */
.arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,.45); color:#fff; border:0; width:40px; height:40px;
  border-radius:50%; font-size:26px; line-height:40px; text-align:center;
  cursor:pointer;
}
.arrow:hover { background:rgba(0,0,0,.65); }
.arrow.prev { left:12px; }
.arrow.next { right:12px; }

/* dots */
.dots { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); display:flex; gap:6px; }
.dots button {
  width:8px; height:8px; border-radius:50%; border:0; background:#cfcfcf; cursor:pointer;
}
.dots button.is-active { background:#333; }

/* ========= Section Title ========= */
.section-title {
  background:#303030; color:#fff; text-align:center;
  padding:12px; margin:18px 0; border-radius:3px; font-weight:bold; letter-spacing:.4px;
}

/* ========= Cards (Featured grid) ========= */
.cards {
  display:grid; gap:18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards { grid-template-columns: 1fr; } }

.card {
  background:#fff; border:1px solid #ddd; border-radius:6px; overflow:hidden;
  display:flex; flex-direction:column;
}
.card-media img { width:100%; height:100%; display:block; object-fit:contain; background:#fff; }
.card-body { padding:12px; display:flex; flex-direction:column; gap:6px; }
.card-title { font-size:15px; line-height:1.35; }
.card-meta { display:flex; align-items:center; justify-content:space-between; margin-top:6px; }
.price { color:#c52020; font-weight:bold; font-size:16px; }

/* buttons */
.btn {
  background:#c52020; color:#fff; text-decoration:none; padding:8px 12px; border-radius:4px;
  display:inline-block; font-size:14px;
}
.btn:hover { background:#9e1a1a; }
.btn-lg { padding:12px 16px; font-size:16px; }

/* ========= Vehicles list page ========= */
.catalog { margin: 8px 0 24px; }
.vehicle-list { list-style:none; display:flex; flex-direction:column; gap:14px; }
.vehicle-row {
  background:#fff; border:1px solid #ddd; border-radius:6px; padding:10px;
  display:flex; gap:16px; align-items:center;
}
.vehicle-media img { width:180px; height:120px; object-fit:contain; background:#fff; }
.vehicle-info { flex:1; display:flex; flex-direction:column; gap:6px; }
.vehicle-name { font-weight:bold; color:#111; text-decoration:none; }
.vehicle-name:hover { text-decoration:underline; }
.vehicle-meta { display:flex; align-items:center; gap:10px; }

/* ========= Product page ========= */
.product-page { margin: 6px 0 30px; }
.product-title { font-size:26px; line-height:1.2; margin: 6px 0 12px; }
.product-layout { display:grid; grid-template-columns: 1.1fr .9fr; gap:20px; }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } }

.gallery { background:#fff; border:1px solid #ddd; border-radius:6px; padding:12px; }
.gallery-main { border:1px solid #eee; background:#fff; display:flex; align-items:center; justify-content:center; }
.gallery-main img { width:100%; height:auto; cursor:zoom-in; }
.thumbs { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.thumb { border:1px solid #ddd; padding:4px; background:#fff; cursor:pointer; border-radius:4px; }
.thumb.is-active { outline:2px solid #c52020; }
.thumb img { width:68px; height:48px; object-fit:contain; display:block; }

.buybox { background:#fff; border:1px solid #ddd; border-radius:6px; padding:14px; }
.price-lg { font-size:28px; color:#c52020; font-weight:bold; margin-bottom:12px; }
.product-note { margin-top:12px; color:#333; }

/* product description block */
.product-desc { margin-top:22px; }
.product-desc h2 { font-size:20px; margin-bottom:10px; }

/* ========= Lightbox ========= */
.lightbox {
  position: fixed; inset:0; background:rgba(0,0,0,.85);
  display:none; align-items:center; justify-content:center; z-index: 50;
}
.lightbox.is-open { display:flex; }
.lightbox img { max-width:92%; max-height:90%; }
.lb-close {
  position:absolute; top:18px; right:22px; background:transparent; color:#fff;
  font-size:36px; border:0; cursor:pointer;
}

/* ========= Footer ========= */
.footer { background:#111; color:#fff; margin-top:26px; }
.footer .container { padding:14px 0; text-align:center; }
