:root {
  --navbar-height: 72px;
  --hero-min-h: 100svh;           /* mobilon stabilabb */
  --content-max: 1180px;
  --pad-x: clamp(16px, 4vw, 48px);
  --radius: 16px;
  --nav-bg: #ffffff;
  --nav-hover: #f2f2f2;
  --text-dark: #111;
  --wp4-gold: #D4AF37;
  --wp4-card-bg: #F3F5F7;
  --wp4-border: rgba(0,0,0,.10);
  --wp4-text: #111;
  --wp4-muted: rgba(0,0,0,.62);
  --wp4-chip-bg: rgba(0,0,0,.06);
  --wp4-chip-border: rgba(0,0,0,.10);
  --wp4-nav-breakpoint: 1200px;
}

* {
  box-sizing: border-box;
}
.landingpage {
  overflow-x: hidden;
}
.rounded-xl {
  border-radius: 10px;
}
/* center the blockquote in the page */
.blockquote-wrapper {
   display: flex;
   padding: 0 20px;
}

/* Blockquote main style */
.blockquote {
    position: relative;
    font-weight: 800;
    color: #D4AF37;
    padding: 30px 0;
    width: 100%;
    max-width: 800px;
    z-index: 1;
    margin: 80px auto;
    align-self: center;
    border-top: solid 1px;
    border-bottom: solid 1px;
}

/* Blockquote header */
.blockquote h1 {
    position: relative;
    color: #D4AF37;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

/* Blockquote right double quotes */
.blockquote:after {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    content: "”";
    color: rgba(212, 175, 55, 1);
    font-size: 10rem;
    line-height: 0;
    bottom: -43px;
    right: 30px;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquote h1 {
        font-size: 60px;
   }

}

/* Blockquote subheader */
.blockquote h4 {
    position: relative;
    color: #292a2b;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    padding-top: 20px;
    z-index: 1;
}
.social-footer {
  height: 40px;
  width: 40px;
  background-color: #212529;
  color: white;
  padding-top: 2px;
}
.social-footer:hover {
  color: #D4AF37;
}
.social-footer-tag {
  padding-top: 6px;
}
.car-property-icon {
  min-width: 160px !important;
}
.hero{
  position: relative;
  min-height: var(--hero-min-h);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff; /* ha a videó se jönne be */
}

.hero__poster,
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__poster img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02); /* apró “bleed”, hogy ne villanjon a széle */
}

.hero__video{
  object-fit: cover;
  /* Ha kell: */
  /* filter: saturate(1.05) contrast(1.05); */
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 35%, rgba(0,0,0,.15), rgba(0,0,0,.65) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.25) 40%, rgba(0,0,0,.75));
  pointer-events: none;
}

.hero__content{
  position: relative;
  z-index: 2;
  width: min(var(--content-max), 100%);
  padding: clamp(56px, 10vh, 120px) var(--pad-x);
  text-align: center;
  color: #fff;
}

.hero__eyebrow{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .85;
  margin: 0 0 12px;
}

.hero__title{
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero__lead{
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  margin: 0 auto 28px;
  max-width: 58ch;
  opacity: .9;
}

.hero__actions{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-wp4{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.btn--primary{
  background: #ffffff;
  color: #0b0b0c;
  padding: 10px 30px;
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.btn--primary:hover{
  background: #0b0b0c;
  color: #fff;
  border: 1px #fff solid;
}
.btn--secondary:hover{
  background: #adb5bd;
  color: #0b0b0c;
  padding: 10px 30px;
}
.btn--secondary{
  background: #0b0b0c;
  color: #fff;
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.btn--ghost{
  padding: 10px 30px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn--ghost:hover{
  background: rgba(255,255,255,.4);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.btn-wp4:hover{ transform: translateY(-2px); }
.btn-wp4:active{ transform: translateY(0); }

/* Scroll jelzés */
.hero__scroll{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  z-index: 2;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}

.hero__scroll span{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  animation: scrollDot 1.4s ease-in-out infinite;
}

@keyframes scrollDot{
  0%   { transform: translateY(-10px); opacity: .2; }
  40%  { opacity: 1; }
  100% { transform: translateY(10px); opacity: .2; }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero__scroll span{ animation: none; }
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  background: #F2F2F2;
  color: #000;
  min-height: 100vh;
}
.font-fancy {
  font-family: "Playfair Display", serif;
  background: rgba(242,242,242,0.8);
  padding: 20px 0px;
}

:root {
  --wp4-nav-h: 72px;
  --wp4-bg: #ffffff;
  --wp4-hover: #f2f2f2;
  --wp4-text: #111;
}

/* ===== NAVBAR ===== */
.wp4-nav {
  height: var(--wp4-nav-h);
  background: var(--wp4-bg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 1030;
}

.wp4-nav-inner {
  display: flex;
  align-items: center;
  height: var(--wp4-nav-h);
  position: relative;
}

/* columns */
.wp4-nav-col {
  display: flex;
  align-items: center;
  height: var(--wp4-nav-h);
}

.wp4-nav-left { flex: 1; }
.wp4-nav-right { flex: 1; justify-content: flex-end; }
.wp4-nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* brand */
.wp4-subheader {
  font-size: 2.2em;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wp4-text);
  text-decoration: none;
}
.wp4-brandfont {
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wp4-text);
  text-decoration: none;
}
.wp4-nav-brand {
  font-size: 14px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--wp4-text);
  text-decoration: none;
  white-space: nowrap;
}

.wp4-nav-brand {
  height: var(--wp4-nav-h);
  align-items: center;
  padding: 14px 18px;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wp4-text);
  text-decoration: none;
  transition: background .25s ease;
}

/* nav links */
.wp4-nav-link {
  height: var(--wp4-nav-h);
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wp4-text);
  text-decoration: none;
  transition: background .25s ease;
}

.wp4-nav-link:hover {
  background: #E3CA78;
}

/* ===== BURGER ===== */
.wp4-burger {
  background: none;
  border: none;
  width: 52px;
  height: var(--wp4-nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.wp4-burger span {
  height: 2px;
  width: 22px;
  background: #000;
  transition: transform .3s ease, opacity .3s ease;
}

/* X animation */
.wp4-burger:not(.collapsed) span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.wp4-burger:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.wp4-burger:not(.collapsed) span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== OFFCANVAS ===== */
.wp4-offcanvas.offcanvas {
  width: 100vw !important;
  background: white;
}

.wp4-offcanvas-header {
  height: var(--wp4-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wp4-offcanvas-logo {
  font-size: 14px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.wp4-offcanvas-close {
  background: none;
  border: none;
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.wp4-offcanvas-body {
  padding: 30px 24px;
}

.wp4-offcanvas-item {
  display: block;
  font-size: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 18px 0;
}

.wp4-offcanvas-sub {
  display: block;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 12px 0;
}

.wp4-offcanvas-divider {
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 24px 0;
}

/* ===== LANGUAGE DROPDOWN ===== */
.wp4-lang {
  position: relative;
  height: var(--wp4-nav-h);
  display: flex;
  align-items: center;
}

/* Hover trigger */
.wp4-lang-toggle {
  cursor: pointer;
}

/* Dropdown panel */
.wp4-lang-dropdown {
  position: absolute;
  top: var(--wp4-nav-h);       /* pontosan a navbar alól indul */
  right: 0;
  min-width: 200px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 2000;
}

/* Show on hover */
.wp4-lang:hover .wp4-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.wp4-lang-item {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: background .2s ease;
}

.wp4-lang-item:hover {
  background: #E3CA78;
}

/* ================================
   WP4 custom navbar breakpoint
   Desktop >= 1400px
   Mobile  < 1400px
   ================================ */

.wp4-desktop-only{
  display: flex;
}

.wp4-mobile-only{
  display: none;
}

@media (max-width: 1429.98px){
  .wp4-desktop-only{
    display: none !important;
  }

  .wp4-mobile-only{
    display: flex !important;
  }

  /* biztos középen maradjon a logo */
  .wp4-nav-center{
    left: 50%;
    transform: translateX(-50%);
  }
  
  .wp4-desktop-only-logo {
    display: none;
  }
}

/* ===== MAIN & HERO ===== */
main {
  min-height: 100vh;
}


/* anchor célpontoknál figyelembe vegyük a fix nav magasságát */
section {
  scroll-margin-top: calc(var(--navbar-height) + 16px);
}

.font-gold {
  color: #D4AF37;
}
.footer-logo {
  max-height: 120px;
}
.social-icon {
  width: 26px;              /* tetszés szerint */
  height: auto;
  filter: grayscale(100%);  /* monokróm */
  opacity: 0.6;             /* kicsit halványabb, opcionális */
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
  filter: grayscale(0%);    /* vissza a színek */
  opacity: 1;               /* teljes fényerő */
  transform: scale(1.05);   /* pici növekedés hoverre, opcionális */
}
.btn-gold {
  background-color: #D4AF37;
  border: 1px solid #D4AF37;
  color: white;
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.5s ease;
  border: 1px solid #D4AF37;
}
.btn-gold:hover {
  background-color: #E6D089;
  border: 1px solid #E6D089;
}
.btn-outline-gold {
  border: 1px solid #D4AF37;
  color: black;
}
.btn-outline-gold:hover {
  background-color: #D0BC8B;
}
.bg-gold {
  background-color: #D4AF37;
}
.btn-lg {
  padding: 10px 40px !important;
}
.btn-shine {
    position: relative;
    display: inline-block;
    color: #fff;
    border: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Fix háttérréteg → nem áttetsző */
.btn-shine::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #D4AF37;
    z-index: 1;
}

/* Hover scale + fehér glow */
.btn-shine:hover {
    color: white;
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(255, 255, 255, 0.4);
}

/* Shine csík */
.btn-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-shine:hover::after {
    left: 150%;
}

/* Szöveg a legfelső rétegen */
.btn-shine > span {
    position: relative;
    z-index: 3;
}

.carlogos {
  max-height: 100px;
}
a.brand-gold {
  color: #D4AF37;
  text-decoration: none;
}
a.brand-gold:hover {
  color: #D4AF37;
  text-decoration: underline;
}
a.footer-link {
  color: black;
  text-decoration: none;
}
a.footer-link:hover {
  text-decoration: underline;
}
.stock-info-box {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  padding-right: 160px !important;
  height: 100%;
  min-width: 240px;
}
.carousel-item {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.carousel-item-height {
  min-height: 400px !important;
}
.bg-black {
  background-color: #0B0B0B;
  color: white;
}
.bg-green {
  background-color: #38b000
}
.py-6 {
  padding: 100px 0px;
}
.page-padding-top {
  padding-top: 120px !important;
}

.admin-wrapper {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 240px;
}
.admin-content {
  flex: 1;
}
.avatar-preview {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #999;
}
.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dropzone {
  border: 2px dashed #6c757d;
  border-radius: .5rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s, border-color .2s;
}
.dropzone.dragover {
  background-color: #e9ecef;
  border-color: #0d6efd;
}
.avatar-crop-wrapper {
  width: 100%;
  height: 60vh;              /* kb. 60% a viewport magasságból */
  max-height: calc(100vh - 200px); /* hogy ne lógjon ki a modalból */
}

.avatar-crop-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;       /* kép arányait megtartja, kitölti a teret */
  display: block;
  margin: 0 auto;
}
.crop-container {
  width: 100%;
  height: 70vh;                         /* nagy kijelzőn is jó méret */
  max-height: calc(100vh - 200px);      /* modal safe area */
  position: relative;
  background: #f8f9fa;
}

.crop-container img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.vehicle-images-dropzone {
  border: 2px dashed #ced4da;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.vehicle-images-dropzone.dragover {
  background-color: #f1f3f5;
  border-color: #0d6efd;
}

.vehicle-images-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vehicle-image-item {
  width: 160px;
  cursor: move;
}

.vehicle-image-thumb {
  width: 100%;
  padding-top: 75%; /* 4:3 arány */
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

.vehicle-image-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-image-actions {
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.8rem;
}

.vehicle-image-item.dragging {
  opacity: 0.5;
}

.quill-editor {
  min-height: 260px;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: .375rem;
  padding: 0;
}
.ql-container {
  border: 1px solid #ced4da !important;
  height: 210px;
}
.ql-toolbar {
  border: 1px solid #ced4da !important;
  border-bottom: none !important;
  border-radius: .375rem;
  background: #f8f9fa;
}
.admin-active {
  background-color: #D4AF37;
  color: black;
}
.admin-active:hover {
  color: black;
}
.admin-passive {
  color: black;
}
.admin-passive:hover {
  background-color: #e1d5b7;
  color: black;
}
.admin-page {
  background-color: white;
}
.footer {
  min-height: 240px;
  background: #CAB37D;
  background: linear-gradient(180deg, rgba(202, 179, 125, 1) 0%, rgba(190, 163, 96, 1) 100%);
}

.wp4-brands{
  background:#000;
  color:#fff;
  padding: 60px 16px;
}

.wp4-brands-title{
  text-align:center;
  margin: 0 0 28px;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
}

.wp4-brands-slider{
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wp4-brands-viewport{
  overflow: hidden;
  width: 100%;
}

.wp4-brands-track{
  display: flex;
  gap: var(--wp4-gap, 28px);
  will-change: transform;
  transform: translateX(0);
  transition: transform 600ms ease;
}

/* 4 látszó elem desktopon */
.wp4-brand{
  flex: 0 0 calc((100% - (3 * var(--wp4-gap, 28px))) / 4);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s ease, transform .2s ease;
}

.wp4-brand:hover{
  opacity: 1;
  transform: translateY(-1px);
}

.wp4-brand img{
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .95;
}

/* Prev/Next gombok */
.wp4-brands-btn{
  color: #6c757d;
  width: 44px;
  height: 44px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 0px;
}

.wp4-brands-btn:hover{
  color:#fff;
}

/* Reszponzív: 3 / 2 / 1 látszó elem */
@media (max-width: 992px){
  .wp4-brand{
    flex-basis: calc((100% - (2 * var(--wp4-gap, 28px))) / 3);
  }
}
@media (max-width: 720px){
  .wp4-brand{
    flex-basis: calc((100% - (1 * var(--wp4-gap, 28px))) / 2);
    height: 150px;
  }
}
@media (max-width: 420px){
  .wp4-brand{
    flex-basis: 100%;
    height: 140px;
  }
}

/* Card container */
.wp4-vehicle-card{
  background: var(--wp4-card-bg);
  border: 1px solid var(--wp4-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
}

/* optional: subtle lift on hover (no layout shift) */
.wp4-vehicle-card{
  transition: transform .25s ease, box-shadow .25s ease;
}
.wp4-vehicle-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

/* Image area */
.wp4-vehicle-media{
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E9ECEF; /* fallback, ha lassan tölt */
}

.wp4-vehicle-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 600ms ease, filter 450ms ease;
  filter: grayscale(100%);
}

/* overlay for readability (very subtle on light cards) */
.wp4-vehicle-mediaOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.00), rgba(0,0,0,.12));
  pointer-events: none;
}

/* Zoom + colorize on hover */
.wp4-vehicle-card:hover .wp4-vehicle-media img{
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* promo badge */
.wp4-vehicle-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--wp4-gold);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; /* fontos: kontraszt */
}

/* Body */
.wp4-vehicle-body{
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1; /* CTA alul */
}

/* top part (content) */
.wp4-vehicle-top{
  flex: 1;
}

/* Brand line */
.wp4-vehicle-brand{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wp4-muted);  /* >>> fekete alapú muted */
  margin-bottom: 8px;
  transition: color .25s ease;
}

/* Brand turns gold when hovering the whole card */
.wp4-vehicle-card:hover .wp4-vehicle-brand {
  color: var(--wp4-gold);
}

/* Title */
.wp4-vehicle-title{
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--wp4-text);
}

.wp4-vehicle-title a{
  color: var(--wp4-text);
  text-decoration: none;
}

.wp4-vehicle-title a:hover{
  color: var(--wp4-gold);
}

/* Price row */
.wp4-vehicle-priceRow{
  gap: 10px;
  margin-bottom: 10px;
}

.wp4-vehicle-price{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--wp4-text);
}

.wp4-vehicle-priceOld{
  color: rgba(0,0,0,.45); /* >>> látható világos alapon */
  text-decoration: line-through;
  font-size: 14px;
  height: 20px;
}

/* Chips / pills */
.wp4-vehicle-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.wp4-chip{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(0,0,0,.78);           /* >>> látható */
  background: var(--wp4-chip-bg);   /* >>> nem fehér */
  border: 1px solid var(--wp4-chip-border);
  white-space: nowrap;
}

/* CTA pinned to bottom */
.wp4-vehicle-cta{
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

/* Button: gold, centered, NO shadow */
.wp4-vehicle-btn{
  background: var(--wp4-gold);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  border: none;
  box-shadow: none !important;  /* biztos ami biztos */
}

.wp4-vehicle-btn:hover{
  background: #E6D089;
  color: #111;
  box-shadow: none !important;  /* kérésed szerint */
}

.wp4-map{
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

/* Section */
.wp4-reviews{
  background: #F3F5F7;
  padding: 56px 0;
}

.wp4-reviews-title{
  text-align: center;
  margin: 0 0 26px;
  color: #111;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 32px);
}

/* Slider shell */
.wp4-reviews-slider{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wp4-reviews-viewport{
  overflow: hidden;
  width: 100%;
}

.wp4-reviews-track{
  display: flex;
  gap: 18px;
  will-change: transform;
  transform: translateX(0);
  transition: transform 550ms ease;
}

/* Card */
.wp4-review-card{
  flex: 0 0 calc((100% - (3 * 18px)) / 4); /* desktopon 4 látszik */
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wp4-review-img{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.wp4-review-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 600ms ease;
}

.wp4-review-card:hover .wp4-review-img img{
  transform: scale(1.06);
}

.wp4-review-body{
  padding: 16px 16px 18px;
}

.wp4-review-name{
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

/* Stars */
.wp4-stars{
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.wp4-star{
  font-size: 18px;
  color: #B9B9B9; /* inactive */
}

.wp4-star.is-on{
  color: var(--wp4-gold);
}

.wp4-review-text{
  margin: 0;
  color: rgba(0,0,0,.78);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

/* Prev/Next buttons */
.wp4-reviews-btn{
  background: transparent;
  border: 0px;
  color:#ADB5BD;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.wp4-reviews-btn:hover{
  color: black;
}

/* Responsive: 3 / 2 / 1 visible */
@media (max-width: 1200px){
  .wp4-review-card{ flex-basis: calc((100% - (2 * 18px)) / 3); }
}

@media (max-width: 900px){
  .wp4-review-card{ flex-basis: calc((100% - (1 * 18px)) / 2); }
}

@media (max-width: 576px){
  .wp4-review-card{ flex-basis: 100%; }
  .wp4-reviews-btn{ width: 40px; height: 40px; }
}

/* Top filter bar */
.vehicles-filters-top{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
}

/* Status badges */
.badge.wp4-badge-arriving{
  background: #EBEBEB !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 600;
}

.badge.wp4-badge-stock{
  background: #96e072 !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,.08);
  font-weight: 600;
}
.wp4-vehicle-card-show{
  background:#fff;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}