@charset "UTF-8";
@import 'vendor/swiper-bundle.min.css';
@import 'vendor/galerio.css';
:root {
  /* Layout tokens */
  --gutter: clamp(16px, 4vw, 32px);
  --container-max: 1200px;
  /* default max */
  --container-max-xl: 1280px;
  /* širi breakpoint */
  --container-max-xxl: 1440px;
  /* još širi breakpoint */
  /* Color tokens */
  --bg-primary: #2C2C2C;
  --bg-secondary: #EFEFEF;
  --text-prim: #e9e9e9;
  --text-sec: #c9c9c9;
  --brand-gold: #C69B3C;
  --surface: #111;
  /* Typography tokens */
  --font-sans: "Artegra Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --leading: 1.5;
  /* default line-height */
  /* Spacing scale (8pt-ish) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  /* Radius */
  --radius: 8px;
  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --card-ring: rgba(0, 0, 0, .14);
  --card-ring-hover: var(--brand-gold);
  --line: rgba(0, 0, 0, .12);
  --text: #222;
  --muted: rgba(0, 0, 0, .60);
}

@media (min-width: 1440px) {
  :root {
    --container-max: var(--container-max-xxl);
  }
}
@media (min-width: 1280px) and (max-width: 1439.98px) {
  :root {
    --container-max: var(--container-max-xl);
  }
}
/* ========================================================================
   Reset 2025+ (perf + a11y + CWV)
   - Zadržava sve iz starog reseta, uz moderne dopune
   - Fokus na: stabilan layout (CLS), čitljivost,11y, minimalna specifičnost
   ======================================================================== */
/* 0) UA color-scheme (form kontrole i scrollbars bolje renderuju svetlu temu) */
:root {
  color-scheme: light;
}

/* 1) Box-sizing border-box reset (zadržano iz starog) */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* 2) Osnovni “zero” margine/padding (zadržano + dopunjeno) */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* 3) Liste bez markera i uvlačenja (zadržano) */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 4) Telo dokumenta – tipografija & rendering (modernije od default-a)
   - NE forsiramo konkretan font ovde; prepusti tokens/typography modu
   - Ako hoćeš fallback: font-family: var(--font-sans, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif);
*/
html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  /* stable viewport visina sa mobilnim toolbarovima */
  font-size: 16px;
  /* zadržavamo iz starog (osnovna veličina) */
  line-height: 1.5;
  /* bolja čitljivost */
  background-color: #fff;
  color: #0f0f0f;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
  /* precizniji weight prikaz (važno za custom fontove) */
}

/* 5) Medija elementi – spreči overflow i CLS */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: middle;
  /* manje “skakanje” u inline kontekstu */
}

/* Za raster slike na malim dimenzijama (opciono, ako koristiš ikone PNG/JPG) */
/* img { image-rendering: -webkit-optimize-contrast; } */
/* 6) Linkovi – zadržano iz starog, ali sa boljim :focus-visible */
a {
  text-decoration: none;
  color: inherit;
}

:focus {
  outline: none;
}

/* ukloni outline uvek… */
:focus-visible {
  /* …ali zadrži ga kada je pristupno */
}

/* 7) Tipografski enhanceri – stabilniji wrap bez siročadi */
h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
blockquote {
  text-wrap: pretty;
}

/* 8) Form elementi – neutralizacija UA margina i nasleđivanje fonta */
button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  /* zadrži box-model bez vizuelnog efekta */
}

button,
input[type=button],
input[type=submit] {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* 9) Tabele – manje iznenađenja */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: start;
}

/* 10) Figure/figcaption – harmonizacija */
figure {
  display: block;
}

figcaption {
  font-size: 0.875em;
  color: #555;
}

/* 11) Navigacije/meniji – bez markera i default padding/margin */
.nav,
.menu,
[role=list] {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 12) Skriveno samo vizuelno (a11y helper za skip link i sl.) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* 13) Smanji pokrete kad korisnik traži (perf + pristupačnost) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* 14) Print poboljšanja (opciono, ali korisno) */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
  }
  img {
    max-inline-size: 100% !important;
  }
  a {
    text-decoration: underline;
  }
}
/* 15) Dodatno (opciono):
   - :root { scroll-behavior: smooth; }  // nemoj ako meriš INP strogo; smooth može da utiče na input latency
*/
/* === Artegra Sans (WOFF2) – normal styles === */
/* Thin 100 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
/* Regular 400 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Medium 500 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* SemiBold 600 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Bold 700 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ExtraBold 800 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Black 900 */
@font-face {
  font-family: "Artegra Sans";
  src: url("../fonts/ArtegraSans-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}

/* 32px */
h2 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

/* 24px */
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
}

/* 20px */
h4 {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

/* 16px */
h5 {
  font-size: 0.875rem;
  line-height: 1.35;
  font-weight: 600;
}

/* 14px */
h6 {
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* 12px */
p {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
}

/* Osnovni container */
.container,
.container-xxl {
  width: 100%;
  margin-inline: auto;
  max-width: 1440px;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .container,
  .container-xxl {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-xxl {
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-xxl {
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-xxl {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container,
  .container-xxl {
    max-width: 1440px;
  }
}

.container-med {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  /* Mobile first approach */
}
@media (min-width: 576px) {
  .container-med {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .container-med {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-med {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-med {
    max-width: 1100px;
  }
}

.site-header__bar {
  min-block-size: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--sp-6);
}

/* Burger */
.nav-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: var(--sp-2);
  display: none;
}

.nav-toggle__bar {
  display: block;
  inline-size: 24px;
  block-size: 2px;
  background: #fff;
  margin-block: 5px;
}

/* Primary nav */
.primary-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

/* CTA dugme */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--radius);
}

.btn--gold {
  background: var(--brand-gold);
  color: #1b1b1b;
  padding: 8px 12px;
  font-weight: 600;
}

/* Mobile nav */
@media (max-width: 992px) {
  .nav-toggle {
    display: inline-block;
  }
  .primary-nav {
    position: absolute;
    inset: 72px 0 auto 0;
    background: var(--bg-primary);
    opacity: 0;
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    pointer-events: none;
    -webkit-transition: opacity 0.2s var(--ease), -webkit-transform 0.2s var(--ease);
    transition: opacity 0.2s var(--ease), -webkit-transform 0.2s var(--ease);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), -webkit-transform 0.2s var(--ease);
  }
  .primary-nav.is-open {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    pointer-events: auto;
  }
  .primary-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: var(--gutter);
    gap: var(--sp-4);
  }
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link:focus-visible {
  position: fixed;
  inset-block-start: var(--sp-4);
  inset-inline-start: var(--sp-4);
  background: #000;
  color: #fff;
  padding: var(--sp-2) var(--sp-3);
  z-index: 1000;
}

:root {
  --nn-bg: #2b2b2b;
  --nn-text: #fff;
  --nn-muted: #cfcfcf;
  --nn-input-bg: #fff;
  --nn-input-text: #111;
  --nn-border: #e6e6e6;
  --nn-radius: 10px;
  --nn-gap: 12px;
  --nn-btn: #c9a85a;
  --nn-btn-text: #111;
}

.nn-booking {
  background: var(--nn-bg);
  color: var(--nn-text);
  border-radius: 14px;
  padding: clamp(10px, 2vw, 14px);
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nn-booking__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.1fr 1.1fr 1fr 1fr auto;
  grid-template-columns: 1.1fr 1.1fr 1fr 1fr auto;
  gap: var(--nn-gap);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.nn-field__label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
}

.nn-select {
  position: relative;
}

.nn-select select,
.nn-input {
  width: 100%;
  height: 40px;
  background: var(--nn-input-bg);
  color: var(--nn-input-text);
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  padding: 0 12px;
  font: inherit;
  line-height: 40px;
  outline: none;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.nn-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 36px;
}

.nn-select::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.nn-dt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.65fr;
  grid-template-columns: 1fr 0.65fr;
  /* datum | vreme */
  gap: var(--nn-gap);
}

.nn-input:focus,
.nn-select select:focus {
  border-color: #b89f57;
  -webkit-box-shadow: 0 0 0 3px rgba(201, 168, 90, 0.25);
          box-shadow: 0 0 0 3px rgba(201, 168, 90, 0.25);
}

.nn-actions {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

/* Responsivnost */
@media (max-width: 1100px) {
  .nn-booking__grid {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .nn-actions {
    grid-column: 1/-1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 700px) {
  .nn-booking__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .nn-dt {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .nn-actions {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
  .nn-btn {
    width: 100%;
  }
}
/* ============================
   Testimonials (Client Experiences)
   ============================ */
.client-experiences {
  background-color: var(--bg-secondary);
  padding: 50px 0;
  /* Heading */
}
.client-experiences h2 {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.client-experiences h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 3px;
}
.client-experiences {
  /* ============= Slider ============= */
}
.client-experiences .testimonial-slider {
  position: relative;
}
.client-experiences .testimonial-slider .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.client-experiences .testimonial-slider .swiper-slide {
  height: auto;
  /* sadržaj može da raste */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 23px;
  height: auto;
  width: 100%;
}
@media (max-width: 650px) {
  .client-experiences .testimonial-slider .swiper-slide .slide-content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 16px;
  }
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid var(--brand-gold);
  border-radius: 100%;
  width: 130px;
  min-width: 130px;
  height: 130px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  padding: 8px;
  z-index: 1;
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: auto;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 64px;
  /* prostor za paginaciju/strelice */
}
@media (max-width: 650px) {
  .client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text {
    padding: 0;
  }
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text .testimonial-name {
  font-size: 18px;
  font-weight: 700;
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text .testimonial-text {
  margin-top: 10px;
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 15px;
}
@media (max-width: 650px) {
  .client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text .stars {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.client-experiences .testimonial-slider .swiper-slide .slide-content-wrap .testimonial-slide-text .stars img {
  display: block;
  height: 18px;
  width: auto;
}
.client-experiences .testimonial-slider {
  /* ===== Pagination — kao na single (siva tačka + zlatni “pill”)
  Tap-target ≥32px preko ::before, ne utiče na merenje širine ===== */
}
.client-experiences .testimonial-slider .swiper-pagination {
  position: relative;
  margin-top: 40px;
  /* isto kao .more-vehicles na single-u */
  bottom: 0 !important;
  text-align: center;
  overflow: visible;
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 8px;
  /* vizuelni razmak kao single */
  background: transparent;
  border: 0;
  opacity: 1;
  cursor: pointer;
  /* veći klik target bez promene layout-a */
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  /* Lighthouse happy */
  border-radius: 999px;
  pointer-events: auto;
  background: transparent;
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet {
  /* vizuelni krug/pill */
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #d1d1d1;
  /* siva kao na single */
  border-radius: 999px;
  -webkit-transition: width 0.24s ease, background-color 0.24s ease, border-radius 0.24s ease;
  transition: width 0.24s ease, background-color 0.24s ease, border-radius 0.24s ease;
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-radius: 8px;
}
.client-experiences .testimonial-slider .swiper-pagination {
  /* aktivni = zlatni “pill” 24px */
}
.client-experiences .testimonial-slider .swiper-pagination .swiper-pagination-bullet-active::after {
  background: var(--brand-gold, #f1c40f);
  width: 24px;
  border-radius: 5px;
}
.client-experiences .testimonial-slider .swiper-pagination {
  /* dinamičke klase neutralne (isti vizuelni kao single) */
}
.client-experiences .testimonial-slider {
  /* ===== Strelice — isti stil kao na single (vidljive na desktopu) ===== */
}
.client-experiences .testimonial-slider .swiper-button-prev,
.client-experiences .testimonial-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.client-experiences .testimonial-slider .swiper-button-prev::after,
.client-experiences .testimonial-slider .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
}
.client-experiences .testimonial-slider .swiper-button-prev:hover,
.client-experiences .testimonial-slider .swiper-button-next:hover {
  background: var(--brand-gold, #f1c40f);
}
.client-experiences .testimonial-slider .swiper-button-prev:hover::after,
.client-experiences .testimonial-slider .swiper-button-next:hover::after {
  color: #1a1a1a;
}
.client-experiences .testimonial-slider .swiper-button-prev.swiper-button-disabled,
.client-experiences .testimonial-slider .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .client-experiences .testimonial-slider .swiper-button-prev,
  .client-experiences .testimonial-slider .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .client-experiences .testimonial-slider .swiper-button-prev::after,
  .client-experiences .testimonial-slider .swiper-button-next::after {
    font-size: 16px;
  }
}
.client-experiences .testimonial-slider .swiper-button-prev {
  left: 0;
}
.client-experiences .testimonial-slider .swiper-button-next {
  right: 0;
}
.client-experiences .testimonial-slider {
  /* na mobilu koristimo swipe + bullets (kao single) */
}
@media (max-width: 820px) {
  .client-experiences .testimonial-slider .swiper-button-prev,
  .client-experiences .testimonial-slider .swiper-button-next {
    display: none;
  }
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  background: var(--bg-primary);
  color: var(--text-prim);
  z-index: 20000;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
}
.site-header__bar .site-header__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__bar .site-header__brand img {
  display: block;
  height: auto;
  max-width: 100%;
}
@media (max-width: 600px) {
  .site-header__bar .site-header__brand img {
    max-width: 120px;
  }
}
.site-header .nav-socials,
.site-header .nav-socials .footer-socials {
  display: none;
}

.nav-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  margin-left: auto;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  width: 44px;
  height: 38px;
  position: relative;
  z-index: 20000;
}
.nav-toggle:focus, .nav-toggle:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: opacity 0.2s ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.2s ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, top 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle span:nth-child(1) {
  top: 10px;
}
.nav-toggle span:nth-child(2) {
  top: 18px;
}
.nav-toggle span:nth-child(3) {
  top: 26px;
}
.nav-toggle span:nth-child(4) {
  display: none;
}
.nav-toggle.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  .nav-toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.primary-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1400px) {
  .primary-nav__list {
    gap: 25px;
  }
}
.primary-nav__link {
  color: #d9d9d9;
  text-decoration: none;
  font-weight: 500;
  line-height: 1;
  display: block;
  padding-top: 5px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.primary-nav__link:hover, .primary-nav__link[aria-current=page] {
  color: var(--brand-gold);
}

@media (max-width: 1200px) {
  .site-header .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.28s ease, visibility 0.28s ease;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 19900;
  }
  .site-header .nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .primary-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: min(80vw, 420px);
    background: #2e2e2e;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);
            box-shadow: 18px 0 40px rgba(0, 0, 0, 0.35);
    z-index: 20000;
    -webkit-transform: translate3d(-104%, 0, 0);
            transform: translate3d(-104%, 0, 0);
    opacity: 0;
    visibility: hidden;
    will-change: transform;
    contain: layout paint;
    -webkit-transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease, visibility 0.22s ease;
    transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
    height: 100svh;
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
  }
  .primary-nav.is-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
  .primary-nav .primary-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 12px 20px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    min-height: 0;
    margin-top: auto;
    margin-bottom: calc(36px + env(safe-area-inset-bottom));
  }
  .primary-nav .primary-nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .primary-nav .primary-nav__item:last-child {
    border-bottom: 0;
  }
  .primary-nav .primary-nav__item {
    opacity: 0;
    -webkit-transform: translate3d(-14px, 0, 0);
            transform: translate3d(-14px, 0, 0);
    will-change: transform, opacity;
  }
  .primary-nav.is-open .primary-nav__item {
    -webkit-animation: navItemIn 0.34s both;
            animation: navItemIn 0.34s both;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(1) {
    -webkit-animation-delay: 0.05s;
            animation-delay: 0.05s;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(2) {
    -webkit-animation-delay: 0.09s;
            animation-delay: 0.09s;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(3) {
    -webkit-animation-delay: 0.13s;
            animation-delay: 0.13s;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(4) {
    -webkit-animation-delay: 0.17s;
            animation-delay: 0.17s;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(5) {
    -webkit-animation-delay: 0.21s;
            animation-delay: 0.21s;
  }
  .primary-nav.is-open .primary-nav__item:nth-child(6) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
  }
  .primary-nav .primary-nav__link {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    color: #d9d9d9;
  }
  .primary-nav .primary-nav__link:hover, .primary-nav .primary-nav__link[aria-current=page] {
    color: var(--brand-gold);
  }
  .primary-nav .primary-nav__link:active {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
  }
  .primary-nav .primary-nav__item--cta {
    border-bottom: 0;
    margin-top: 12px;
    padding-top: 4px;
  }
  .primary-nav .primary-nav__item--cta .btn--gold {
    width: 100%;
    text-align: center;
    padding: 14px 16px 12px;
  }
  .primary-nav .nav-socials {
    display: none;
  }
  .primary-nav.is-open .nav-socials {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .primary-nav.is-open .nav-socials .footer-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .primary-nav.is-open .nav-socials .footer-socials a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-transition: background 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
    transition: background 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease;
  }
  .primary-nav.is-open .nav-socials .footer-socials a svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
  }
  .primary-nav.is-open .nav-socials .footer-socials a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-gold);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  .primary-nav.is-open .nav-socials .footer-socials a:active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .site-header .container-xxl {
    position: relative;
    z-index: 19900;
  }
}
@-webkit-keyframes navItemIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-14px, 0, 0);
            transform: translate3d(-14px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes navItemIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-14px, 0, 0);
            transform: translate3d(-14px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .primary-nav,
  .nav-toggle,
  .site-header .nav-overlay {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .primary-nav .primary-nav__item {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.btn.btn--gold {
  background: var(--brand-gold);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px 8px;
  text-decoration: none;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  -webkit-transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
}
.btn.btn--gold:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.btn.btn--gold:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

/* Oboj "Vozni park" u meniju kad smo na arhivi/singlu vozila */
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozila/"],
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozni-park/"] {
  color: var(--brand-gold);
}

/* zadrži hover/focus boju istu (opciono) */
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozila/"]:hover,
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozni-park/"]:hover,
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozila/"]:focus-visible,
body.vozila-archive .primary-nav .primary-nav__link[href$="/vozni-park/"]:focus-visible {
  color: var(--brand-gold);
}

.page-template-template-homepage .hero {
  position: relative;
  background-image: url(../../dist/img/homepage/home-bg-nn.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 10%;
  width: 100%;
  height: calc(100vh - 125px);
}
@media (max-width: 730px) {
  .page-template-template-homepage .hero {
    background-image: url(../../dist/img/homepage/mobile-hero.avif);
    background-position: center center;
  }
}
.page-template-template-homepage .hero .hero-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-top: 150px;
}
@media (max-width: 1550px) {
  .page-template-template-homepage .hero .hero-text {
    padding-top: 100px;
  }
}
@media (max-width: 1320px) {
  .page-template-template-homepage .hero .hero-text {
    padding-top: 80px;
  }
}
@media (max-width: 1280px) {
  .page-template-template-homepage .hero .hero-text {
    padding-top: 60px;
  }
}
@media (max-width: 1200px) {
  .page-template-template-homepage .hero .hero-text {
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.5)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    padding-top: 100px;
  }
}
.page-template-template-homepage .hero .hero-text .text-wrapper {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper {
    max-width: 600px;
  }
}
.page-template-template-homepage .hero .hero-text .text-wrapper h1 {
  text-transform: uppercase;
  margin-bottom: 45px;
  position: relative;
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper h1 {
    font-size: 1.75rem;
    margin-bottom: 35px;
    color: #fff;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper h1 {
    margin-bottom: 30px;
  }
}
.page-template-template-homepage .hero .hero-text .text-wrapper h1::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 0;
}
@media (max-width: 768px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper h1::after {
    width: 80px;
    height: 4px;
    bottom: -8px;
  }
}
.page-template-template-homepage .hero .hero-text .text-wrapper p {
  font-size: 18px;
}
@media (max-width: 1600px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper p {
    max-width: 90%;
  }
}
@media (max-width: 1400px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper p {
    max-width: 80%;
  }
}
@media (max-width: 1200px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper p {
    max-width: 100%;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper p {
    font-size: 16px;
  }
}
@media (max-width: 468px) {
  .page-template-template-homepage .hero .hero-text .text-wrapper p {
    background: rgba(0, 0, 0, 0.05);
  }
}
.page-template-template-homepage .reserve {
  display: block;
  width: 100%;
}
.page-template-template-homepage .reserve .reserve-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-upper {
  background-color: var(--bg-primary);
  padding: 40px 0;
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-upper .nn-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower {
  background-color: var(--bg-secondary);
  padding: 38px 0 30px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower {
    padding: 25px 0 20px;
  }
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta:hover span:after, .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta:focus span:after {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta img {
  margin-bottom: 10px;
  width: 38px;
  height: 36px;
  -webkit-animation: tilt-shaking 0.5s infinite;
          animation: tilt-shaking 0.5s infinite;
}
@media (max-width: 480px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta img {
    width: 28px;
    height: 26px;
  }
}
@-webkit-keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(0eg);
            transform: rotate(0eg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes tilt-shaking {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(0eg);
            transform: rotate(0eg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta p {
  color: var(--bg-primary);
  font-weight: 700;
  margin: 0 15px 0 15px;
  font-size: 36px;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta p {
    font-size: 28px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta p {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta p {
    font-size: 18px;
    margin: 0 8px;
  }
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta span {
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta span {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta span {
    font-size: 18px;
  }
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.1em;
  background-color: var(--brand-gold);
  opacity: 1;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, -webkit-transform 300ms;
  transition: opacity 300ms, transform 300ms;
  transition: opacity 300ms, transform 300ms, -webkit-transform 300ms;
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta:hover {
  cursor: pointer;
}
.page-template-template-homepage .reserve .reserve-wrapper .reserve-lower .reserve-lower-cta:hover span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.page-template-template-homepage .vehicle-offer {
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .vehicle-offer {
    padding: 40px 0 60px;
  }
}
.page-template-template-homepage .vehicle-offer h2 {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-template-template-homepage .vehicle-offer h2 {
    margin-bottom: 35px;
  }
}
.page-template-template-homepage .vehicle-offer h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-template-template-homepage .vehicle-offer h2::after {
    width: 80px;
    height: 4px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .vehicle-offer p {
    font-size: 15px;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles {
  --card-radius: 14px;
  --card-border: #e7ebef;
  --title: #1a1a1a;
  --muted: #666;
  --accent: #c9a85a;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(36px, 2vw, 24px);
  padding: 0;
  list-style: none;
}
@media (max-width: 1100px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
    display: none;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle-card {
  display: contents;
}
@media (min-width: 780px) and (max-width: 1100px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle-card:nth-of-type(4) {
    display: none;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: 10px 10px 14px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
  grid-template-rows: auto 1fr;
  -webkit-transition: border-color 0.18s ease, -webkit-box-shadow 0.18s ease, -webkit-transform 0.18s ease;
  transition: border-color 0.18s ease, -webkit-box-shadow 0.18s ease, -webkit-transform 0.18s ease;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease, -webkit-box-shadow 0.18s ease, -webkit-transform 0.18s ease;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  border-color: #dfe5ea;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__image {
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__body {
  text-align: center;
  padding: 10px 6px 0;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__title {
  font-weight: 600;
  color: var(--title);
  font-size: 16px;
  margin: 10px 0 4px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__title {
    font-size: 15px;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__price {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--muted);
}
@media (max-width: 480px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__price {
    font-size: 14px;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__price-from {
  color: var(--muted);
  margin-right: 4px;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__price-amount {
  font-size: 18px;
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__price-per {
  color: var(--muted);
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__btn {
  height: 34px;
  padding: 1px 14px 0px;
  font-size: 14px;
  border-radius: 3px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicle__btn {
    font-size: 13px;
    height: 32px;
  }
}
.page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 0;
}
@media (max-width: 768px) {
  .page-template-template-homepage .vehicle-offer .vehicles-wrap .vehicles__btn {
    margin-top: 40px;
  }
}
.page-template-template-homepage .vehicle-offer .mobile-only {
  display: block;
  margin-top: 30px;
  overflow: visible;
  padding: 0 40px;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle {
  border: 0;
  padding: 0;
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__image {
  position: relative;
  overflow: hidden;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__placeholder, .page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__image .vehicle__placeholder {
  display: block;
  width: 100%;
  padding-top: 62.5%;
  background: linear-gradient(135deg, #f3f3f3 0%, #e8e8e8 100%);
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__body {
  padding: 16px 18px 20px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__title a:hover {
  color: var(--brand-gold, #f1c40f);
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price {
  font-size: 14px;
  color: #555;
  margin: 8px 0 16px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price-from {
  margin-right: 4px;
  color: #777;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price-amount {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-gold, #f1c40f);
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price-amount [itemprop=priceCurrency] {
  font-weight: 700;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price-amount [itemprop=price] {
  font-weight: 700;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__price-per {
  color: #777;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle__btn,
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-wrapper .swiper-slide .vehicle .nn-btn {
  margin-top: auto;
  height: 34px;
  padding: 1px 14px 0;
  font-size: 14px;
  border-radius: 3px;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-pagination {
  position: relative;
  margin-top: 20px;
  bottom: 0 !important;
  text-align: center;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 10px;
  margin: 0 2px;
  background: transparent;
  border: 0;
  opacity: 1;
  border-radius: 999px;
  cursor: pointer;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-pagination .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-radius: 8px;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #d1d1d1;
  border-radius: 999px;
  -webkit-transition: width 0.24s ease, background-color 0.24s ease, border-radius 0.24s ease;
  transition: width 0.24s ease, background-color 0.24s ease, border-radius 0.24s ease;
}
.page-template-template-homepage .vehicle-offer .mobile-only .swiper-pagination .swiper-pagination-bullet-active::after {
  background: var(--brand-gold, #f1c40f);
  width: 24px;
  border-radius: 5px;
}
.page-template-template-homepage .vehicle-offer .desktop-only {
  display: none;
}
@media (min-width: 520px) {
  .page-template-template-homepage .vehicle-offer .mobile-only {
    display: none;
  }
  .page-template-template-homepage .vehicle-offer .desktop-only {
    display: block;
  }
}
.page-template-template-homepage .why-choose-us {
  background-color: var(--bg-secondary);
  padding-top: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .page-template-template-homepage .why-choose-us {
    padding-top: 40px;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap {
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-content {
  width: 100%;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content {
    padding-bottom: 40px;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-content h2 {
  margin-bottom: 45px;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content h2 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content h2 {
    margin-bottom: 35px;
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content h2 {
    font-size: 1.2rem;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-content h2 span {
  position: relative;
}
@media (max-width: 768px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content p {
    font-size: 15px;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-content ul {
  padding-left: 15px;
  margin-top: 10px;
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-content ul li {
  font-weight: 600;
  list-style-type: disc;
}
@media (max-width: 768px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-content ul li {
    font-size: 15px;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap {
  position: relative;
  display: block;
}
@media (max-width: 780px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap {
    position: static;
  }
}
.page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-width: 690px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1550px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    min-width: 570px;
  }
}
@media (max-width: 1400px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    left: -40px;
  }
}
@media (max-width: 1300px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    left: -60px;
  }
}
@media (max-width: 1200px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    min-width: auto;
    width: 530px;
  }
}
@media (max-width: 780px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-transform: none;
            transform: none;
    margin-inline: auto;
  }
}
@media (max-width: 650px) {
  .page-template-template-homepage .why-choose-us .why-choose-wrap .why-choose-us-img-wrap .why-choose-us-img {
    width: calc(100% - 60px);
  }
}
.page-template-template-homepage .special-offer {
  background-color: var(--bg-primary);
  padding: 60px 0 70px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer {
    padding: 40px 0 50px;
  }
}
.page-template-template-homepage .special-offer h2 {
  margin-bottom: 45px;
  position: relative;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer h2 {
    margin-bottom: 35px;
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer h2 {
    font-size: 1.15rem;
  }
}
.page-template-template-homepage .special-offer h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer h2::after {
    width: 80px;
    height: 4px;
  }
}
.page-template-template-homepage .special-offer p {
  color: #fff;
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer p {
    font-size: 15px;
  }
}
.page-template-template-homepage .special-offer p:last-of-type {
  margin: 60px 0;
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer p:last-of-type {
    margin: 40px 0;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 30px 18px;
  border: 2px solid var(--brand-gold);
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper {
    margin: 30px auto 40px;
    padding: 20px 12px;
    border-radius: 12px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: minmax(280px, 40%) 1fr;
  grid-template-columns: minmax(280px, 40%) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car {
    height: 160px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car img {
    height: 100%;
    margin: 0 auto;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-img {
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 10px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-img {
    width: 36px;
    height: 36px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-naming-wrap {
    padding-top: 4px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-naming-wrap .brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding-top: 5px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-naming-wrap .brand-name {
    font-size: 18px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-naming-wrap .car-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding-left: 5px;
  padding-top: 5px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .brand-wrap .brand-naming-wrap .car-name {
    font-size: 16px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 16px;
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 450px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    max-width: 230px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media (max-width: 450px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-icon {
  height: 18px;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-icon {
    height: 16px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-quantity,
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-title {
  padding-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-quantity,
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .features-wrap .feature-wrap .feature-title {
    font-size: 14px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .car-price-mobile-wrap {
  display: none;
}
@media (max-width: 600px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .car-price-mobile-wrap {
    display: block;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .car-price-mobile-wrap .from-price {
  color: #fff;
  font-size: 16px;
  margin-top: 3px;
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .car-price-mobile-wrap .from-price strong {
  font-size: 21px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--brand-gold);
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table {
  --line: rgba(255, 255, 255, 0.75);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.88);
  width: 100%;
  max-width: 500px;
  color: var(--text);
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 16px;
}
@media (max-width: 991px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table {
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table {
    display: none;
    font-size: 14px;
  }
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table th:nth-child(6),
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table td:nth-child(6),
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table th:nth-child(7),
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table td:nth-child(7) {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table {
    font-size: 12px;
  }
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table th:nth-child(5),
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table td:nth-child(5) {
    display: none;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table th,
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table td {
  width: 30px;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table th,
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table td {
    padding: 8px 4px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table .col-label,
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table .row-label {
  text-align: center;
  font-weight: 400;
  color: var(--muted);
  width: 45px;
}
@media (max-width: 600px) {
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table .col-label,
  .page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table .row-label {
    width: 35px;
  }
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table .row-label {
  padding-top: 5px;
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table thead th {
  border-bottom: 1.5px solid var(--line);
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table thead th:not(:first-child) {
  border-left: 1.5px solid var(--line);
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table tbody td {
  padding-top: 5px;
}
.page-template-template-homepage .special-offer .special-offer-car-wrapper .special-offer-car-wrapper-inner .special-offer-car-info .car-price-table-wrap .price-table tbody td:not(:first-child) {
  border-left: 1.5px solid var(--line);
}
@media (max-width: 768px) {
  .page-template-template-homepage .special-offer .nn-btn {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-template-homepage .process {
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .process {
    padding: 40px 0 60px;
  }
}
.page-template-template-homepage .process h2 {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
@media (max-width: 768px) {
  .page-template-template-homepage .process h2 {
    margin-bottom: 35px;
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .process h2 {
    font-size: 1.2rem;
  }
}
.page-template-template-homepage .process h2::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .page-template-template-homepage .process h2::after {
    width: 80px;
    height: 4px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .process p {
    font-size: 15px;
  }
}
.page-template-template-homepage .process .process-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .process .process-wrapper {
    gap: 60px;
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  .page-template-template-homepage .process .process-wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .process .process-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 30px;
    margin-top: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .process .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.page-template-template-homepage .process .process-wrapper .process-step {
  width: 100%;
  max-width: 140px;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .process .process-wrapper .process-step {
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .process .process-wrapper .process-step {
    max-width: calc(50% - 15px);
    position: unset;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .process .process-wrapper .process-step {
    max-width: 140px;
  }
}
.page-template-template-homepage .process .process-wrapper .process-step:not(:last-of-type) {
  position: relative;
}
@media (max-width: 768px) {
  .page-template-template-homepage .process .process-wrapper .process-step:not(:last-of-type) {
    position: unset;
  }
}
@media (min-width: 768px) {
  .page-template-template-homepage .process .process-wrapper .process-step:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: 22%;
    right: -50%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 2px;
    height: 100%;
    background-color: var(--brand-gold);
    z-index: 0;
  }
}
@media (max-width: 768px) and (min-width: 481px) {
  .page-template-template-homepage .process .process-wrapper .process-step:not(:last-of-type):nth-child(2)::after {
    display: none;
  }
}
.page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid var(--brand-gold);
  border-radius: 100%;
  width: 130px;
  height: 130px;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap {
    width: 120px;
    height: 120px;
  }
}
.page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap .icon {
  display: block;
  width: 85px;
  height: auto;
  image-rendering: auto;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap .icon {
    width: 70px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-icon-wrap .icon {
    width: 75px;
  }
}
.page-template-template-homepage .process .process-wrapper .process-step .process-step-title {
  margin-top: 28px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-title {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .process .process-wrapper .process-step .process-step-title {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .process .nn-btn {
    width: 100%;
    max-width: 320px;
  }
}
.page-template-template-homepage .rental-conditions {
  padding: 60px 0 80px;
  background-color: var(--bg-primary);
  color: #fff;
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .nn-title {
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .rental-conditions .nn-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions p {
    font-size: 15px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions {
  margin-top: 30px;
}
.page-template-template-homepage .rental-conditions .main-conditions h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 21px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 30px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step {
  width: 100%;
  max-width: 140px;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step {
    max-width: 120px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step {
    max-width: calc(50% - 15px);
    position: unset;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step {
    max-width: 140px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step:not(:last-of-type) {
  position: relative;
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step:not(:last-of-type) {
    position: unset;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step:not(:last-of-type)::after {
    content: none;
    position: unset;
  }
}
@media (min-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step:not(:last-of-type)::after {
    content: "";
    position: absolute;
    bottom: 22%;
    right: -50%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 2px;
    height: 100%;
    background-color: var(--brand-gold);
    z-index: 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step:not(:last-of-type):nth-child(2)::after {
    display: none;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid var(--brand-gold);
  border-radius: 100%;
  width: 130px;
  height: 130px;
  background-color: var(--bg-primary);
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap {
    width: 120px;
    height: 120px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap .condition-number {
  font-size: 54px;
  font-weight: 700;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap .condition-number {
    font-size: 46px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-wrap .condition-number {
    font-size: 50px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-title {
  margin-top: 15px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-title {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-wrapper .condition-step .condition-step-title {
    font-size: 13px;
  }
}
.page-template-template-homepage .rental-conditions .main-conditions .conditions-info {
  margin: 30px 0 80px;
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .conditions-info {
    margin: 25px 0 50px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .rental-conditions .main-conditions .nn-btn {
    width: 100%;
    max-width: 320px;
  }
}
.page-template-template-homepage .discount {
  padding-top: 50px;
  background-color: #fff;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .discount {
    padding: 80px 0 40px;
  }
}
.page-template-template-homepage .discount .discount-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .discount .discount-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.page-template-template-homepage .discount .discount-wrap .discount-content {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content {
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 40px;
  }
}
.page-template-template-homepage .discount .discount-wrap .discount-content h2 {
  color: var(--brand-gold);
  font-weight: 900;
  font-size: 75px;
  line-height: 100%;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content h2 {
    font-size: 42px;
  }
}
.page-template-template-homepage .discount .discount-wrap .discount-content span {
  margin-top: -15px;
  color: var(--bg-primary);
  font-weight: 500;
  font-size: 46px;
}
@media (max-width: 1200px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content span {
    font-size: 38px;
    margin-top: -10px;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content span {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content span {
    font-size: 26px;
    margin-top: -8px;
  }
}
.page-template-template-homepage .discount .discount-wrap .discount-content .nn-btn {
  margin-top: 25px;
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content .nn-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .page-template-template-homepage .discount .discount-wrap .discount-content .nn-btn {
    width: 100%;
    max-width: 320px;
  }
}
.page-template-template-homepage .discount .discount-wrap .discount-img-wrap {
  height: 500px;
  width: 400px;
  background-image: url(../img/homepage/phone-mock.avif);
  background-position: center 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .page-template-template-homepage .discount .discount-wrap .discount-img-wrap {
    display: none;
  }
}

.page-template-template-about-us .breadcrumbs-wrap {
  margin: 50px auto 40px;
}
.page-template-template-about-us .about-hero-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .about-hero-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-template-template-about-us .about-hero-wrap .about-hero-text {
  display: block;
  width: 100%;
  max-width: 620px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .about-hero-wrap .about-hero-text {
    max-width: 100%;
    padding-bottom: 0;
  }
}
.page-template-template-about-us .about-hero-wrap .about-hero-text h1 {
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .about-hero-wrap .about-hero-text h1 {
    text-align: center;
  }
}
.page-template-template-about-us .about-hero-wrap .about-hero-text h1:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .about-hero-wrap .about-hero-text h1:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.page-template-template-about-us .about-hero-wrap .about-hero-img {
  display: block;
  padding-top: 30px;
}
.page-template-template-about-us .about-hero-wrap .about-hero-img img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .about-hero-wrap .about-hero-img img {
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .page-template-template-about-us .about-hero-wrap .about-hero-img img {
    max-width: 80%;
  }
}
.page-template-template-about-us .rental-mission {
  padding: 60px 0 80px;
  background-color: var(--bg-primary);
  color: #fff;
}
.page-template-template-about-us .rental-mission .main-mission {
  margin-top: 60px;
}
.page-template-template-about-us .rental-mission .main-mission h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 21px;
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper {
    gap: 20px;
  }
}
@media (max-width: 750px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step {
  width: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step {
    margin-inline: auto;
    width: 360px;
  }
}
@media (max-width: 420px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step {
    width: 100%;
  }
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step:not(:last-of-type) {
  position: relative;
}
@media (max-width: 750px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step:not(:last-of-type) {
    position: unset;
  }
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 25%;
  right: -5%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 2px;
  height: 100%;
  background-color: var(--brand-gold);
  z-index: 0;
}
@media (max-width: 750px) {
  .page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step:not(:last-of-type)::after {
    content: none;
    position: unset;
  }
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step .mission-step-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 2px solid var(--brand-gold);
  border-radius: 100%;
  width: 130px;
  height: 130px;
  background-color: var(--bg-primary);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step .mission-step-wrap .mission-img-wrap {
  font-size: 54px;
  font-weight: 700;
  padding-top: 10px;
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step .mission-step-title {
  margin-top: 15px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.page-template-template-about-us .rental-mission .main-mission .mission-wrapper .mission-step .mission-step-text {
  text-align: center;
}
.page-template-template-about-us .rental-mission .main-mission .mission-info {
  margin: 50px 0 50px;
}
.page-template-template-about-us .why-us {
  padding: 60px 0 100px;
}
.page-template-template-about-us .why-us p {
  margin-bottom: 30px;
}
.page-template-template-about-us .why-us p:last-of-type {
  margin-bottom: 0;
}
.page-template-template-about-us .why-us ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}
.page-template-template-about-us .why-us ul li:first-of-type {
  margin-top: 10px;
}
.page-template-template-about-us .why-us .why-us-img {
  display: block;
  height: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .why-us .why-us-img {
    height: 160px;
  }
}
@media (max-width: 750px) {
  .page-template-template-about-us .why-us .why-us-img {
    height: auto;
  }
}
.page-template-template-about-us .trip-planning {
  padding: 50px 0 80px;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning {
    padding-top: 80px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning .trip-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-text {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-text {
    margin-inline: auto;
    text-align: center;
    gap: 20px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-text h2 {
  color: var(--brand-gold);
  font-weight: 900;
  font-size: 70px;
  line-height: 100%;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-text h2 {
    font-size: 42px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-text span {
  margin-top: -15px;
  color: var(--bg-primary);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0%;
}
@media (max-width: 650px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-text span {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-text span {
    font-size: 21px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-text .nn-btn {
  margin-top: 25px;
  margin-right: auto;
  margin-left: 0;
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-text .nn-btn {
    margin-inline: auto;
    margin-top: 0;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-img {
  height: 500px;
  width: 530px;
  position: relative;
}
@media (max-width: 1400px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img {
    height: 450px;
    width: 430px;
  }
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img {
    margin-inline: auto;
  }
}
@media (max-width: 650px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img {
    width: 100%;
    height: 220px;
  }
}
@media (max-width: 340px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img {
    height: 200px;
  }
}
.page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 650px;
  height: 100%;
  background-image: url(../img/about/travel-kit.avif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1400px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
    left: -140px;
    width: 590px;
  }
}
@media (max-width: 1200px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
    left: -70px;
  }
}
@media (max-width: 650px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
    width: 100%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 300px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    aspect-ratio: 4/3;
  }
}
@media (max-width: 420px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
    height: 240px;
  }
}
@media (max-width: 340px) {
  .page-template-template-about-us .trip-planning .trip-wrap .trip-img::after {
    height: 200px;
  }
}

.post-type-archive-crbs_vehicle .breadcrumbs-wrap {
  margin: 50px auto 40px;
}
.post-type-archive-crbs_vehicle .cars {
  /* ===========================
  FLEET FILTERS (desktop chips + mobile selects)
  =========================== */
}
.post-type-archive-crbs_vehicle .cars .fleet-filters {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 32px auto 36px;
  /* DESKTOP: CHIPS */
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .chips .chip {
  display: inline-block;
  padding: 12px 12px 8px;
  background: var(--bg-primary);
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  -webkit-transition: background-color 220ms ease, color 220ms ease, -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
  transition: background-color 220ms ease, color 220ms ease, -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
  transition: transform 180ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease, -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .chips .chip:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .chips .chip.is-active {
  background: var(--brand-gold);
  color: #fff;
  border-color: #111;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters {
  /* SORTER */
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter {
  margin: 8px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  display: block;
  min-width: 145px;
  padding: 12px 14px 10px;
  border-radius: 12px;
  border: 1.5px solid var(--bg-primary);
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  -webkit-transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease, -webkit-box-shadow 200ms ease;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter select:focus {
  outline: none;
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
          box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter select,
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  -webkit-transition: border-color 120ms ease, -webkit-box-shadow 120ms ease;
  transition: border-color 120ms ease, -webkit-box-shadow 120ms ease;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  transition: border-color 120ms ease, box-shadow 120ms ease, -webkit-box-shadow 120ms ease;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter select:focus,
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile select:focus {
  outline: none;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .sorter select:focus-visible,
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile select:focus-visible {
  outline: none;
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
          box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
}
.post-type-archive-crbs_vehicle .cars .fleet-filters.is-busy {
  pointer-events: none;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .fleet-filters.is-busy .filters-mobile {
  position: relative;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .fleet-filters.is-busy .filters-mobile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: nn-shimmer 1.2s infinite;
          animation: nn-shimmer 1.2s infinite;
  border-radius: 12px;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters {
  /* MOBILE: SELECTS */
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile {
  display: none;
  width: min(720px, 92vw);
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile select {
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  display: block;
  width: 100%;
  padding: 12px 14px 10px;
  border-radius: 12px;
  border: 1.5px solid #D6D6D6;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
          box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03) inset;
  -webkit-transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease, -webkit-box-shadow 200ms ease;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile select:focus {
  outline: none;
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
          box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.2);
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile .freset {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 18px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px dashed #d9d9d9;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  -webkit-transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  transition: border-color 200ms ease, box-shadow 200ms ease, -webkit-box-shadow 200ms ease;
}
.post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile .freset:hover {
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
@media (min-width: 560px) and (max-width: 840px) {
  .post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile .freset {
    grid-column: 1/-1;
    width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 840px) {
  .post-type-archive-crbs_vehicle .cars .fleet-filters .chips {
    display: none;
  }
  .post-type-archive-crbs_vehicle .cars .fleet-filters .filters-mobile {
    display: -ms-grid;
    display: grid;
  }
  .post-type-archive-crbs_vehicle .cars .fleet-filters .sorter {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 25px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 25px;
  padding: 20px 16px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  -webkit-transform: translateY(0) translateZ(0);
          transform: translateY(0) translateZ(0);
  will-change: transform, box-shadow;
  -webkit-box-shadow: 0 0 0 1.5px var(--card-ring), 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 0 1.5px var(--card-ring), 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 360ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 360ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 360ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper:hover, .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper:focus-within {
  -webkit-transform: translateY(-4px) translateZ(0);
          transform: translateY(-4px) translateZ(0);
  -webkit-box-shadow: 0 0 0 1.5px var(--card-ring-hover), 0 16px 42px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 1.5px var(--card-ring-hover), 0 16px 42px rgba(0, 0, 0, 0.1);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper.is-light {
  --line: rgba(0, 0, 0, .12);
  --text: #222;
  --muted: rgba(0, 0, 0, .60);
  background: #fff;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper {
  cursor: pointer;
}
@media (max-width: 1000px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 0 0 0 1.5px var(--card-ring), 0 2px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 0 1.5px var(--card-ring), 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: minmax(280px, 40%) 1fr;
  grid-template-columns: minmax(280px, 40%) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 900px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car {
  overflow: hidden;
  border-radius: 12px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  gap: 12px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 1000px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  min-width: 165px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap .brand-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap .brand-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap .brand-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap .brand-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.2;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .brand-wrap .brand-model {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 4px;
  margin-right: auto;
}
@media (max-width: 480px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features {
    gap: 12px;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features .feature-wrap {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features .feature-wrap .feature-icon {
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features .feature-wrap .feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features .feature-wrap .feature-quantity,
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-info-top .car-info-features .feature-wrap .feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-top: 5px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .vehicle-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info {
  /* PRICE TABLE - sakrivena na mobilnom */
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap {
  margin-top: 6px;
}
@media (max-width: 768px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 900px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table {
    min-width: 520px;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table {
  width: 100%;
  color: var(--text);
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 14px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table th,
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table td {
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  width: 45px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table .col-label,
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table .row-label {
  text-align: center;
  font-weight: 600;
  color: var(--muted);
  width: 70px;
  background: transparent;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table thead th {
  border-bottom: 1.5px solid var(--line);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table thead th:not(:first-child),
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table tbody td:not(:first-child) {
  border-left: 1.5px solid var(--line);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table tbody th,
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-table tbody td {
  padding-top: 5px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .car-price-table-wrap .price-help {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 6px;
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 325px) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-inline: auto;
  }
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .btn-reserve {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 38px;
  padding: 3px 16px 0;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  background: var(--brand-gold);
  color: #fff;
  -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 180ms ease, -webkit-filter 200ms ease, -webkit-box-shadow 260ms ease;
  transition: -webkit-transform 180ms ease, -webkit-filter 200ms ease, -webkit-box-shadow 260ms ease;
  transition: transform 180ms ease, filter 200ms ease, box-shadow 260ms ease;
  transition: transform 180ms ease, filter 200ms ease, box-shadow 260ms ease, -webkit-transform 180ms ease, -webkit-filter 200ms ease, -webkit-box-shadow 260ms ease;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .btn-reserve:hover {
  -webkit-filter: brightness(1.06);
          filter: brightness(1.06);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .btn-reserve:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .btn-reserve:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .from-price {
  color: var(--text);
  font-size: 14px;
  margin-top: 3px;
}
.post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper .fleet-offer-car-wrapper-inner .fleet-offer-car-info .card-cta-row .from-price strong {
  font-size: 18px;
  font-weight: 900;
  margin-left: 4px;
  color: var(--brand-gold);
}
.post-type-archive-crbs_vehicle .vehicles-archive {
  /* poštovanje prefers-reduced-motion */
}
@media (prefers-reduced-motion: reduce) {
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper {
    -webkit-transition: none !important;
    transition: none !important;
  }
  .post-type-archive-crbs_vehicle .vehicles-archive .fleet-offer-car-wrapper * {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.post-type-archive-crbs_vehicle .fleet-rental-conditions {
  margin: 70px 0 100px;
}
.post-type-archive-crbs_vehicle .fleet-rental-conditions .nn-title {
  margin-bottom: 45px;
}
.post-type-archive-crbs_vehicle .fleet-rental-conditions p {
  margin-bottom: 40px;
}
.post-type-archive-crbs_vehicle {
  /* Accessibility utility */
}
.post-type-archive-crbs_vehicle .visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.post-type-archive-crbs_vehicle #fleet-list.is-loading {
  position: relative;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.post-type-archive-crbs_vehicle #fleet-list.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.35)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: nn-shimmer 1.2s infinite;
          animation: nn-shimmer 1.2s infinite;
  pointer-events: none;
}
.post-type-archive-crbs_vehicle #fleet-list[aria-busy=true] {
  opacity: 0.96;
  -webkit-transition: opacity 0.18s ease;
  transition: opacity 0.18s ease;
}
@-webkit-keyframes nn-shimmer {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes nn-shimmer {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.post-type-archive-crbs_vehicle {
  /* Wrapper */
}
.post-type-archive-crbs_vehicle .pagination {
  position: relative;
  width: 100%;
  padding: 10px 56px 0;
  text-align: center;
}
.post-type-archive-crbs_vehicle {
  /* Svi linkovi/brojevi */
}
.post-type-archive-crbs_vehicle .pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  margin: 0 4px;
  padding: 3px 10px 0;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  line-height: 1;
  color: #333;
  background: #fff;
}
.post-type-archive-crbs_vehicle .pagination .page-numbers:hover {
  border-color: #C69B3C;
}
.post-type-archive-crbs_vehicle {
  /* Trenutna strana */
}
.post-type-archive-crbs_vehicle .pagination .page-numbers.current {
  background: #C69B3C;
  border-color: #C69B3C;
  color: #fff;
  cursor: default;
}
.post-type-archive-crbs_vehicle {
  /* Prev & Next – fiksno na krajevima */
}
.post-type-archive-crbs_vehicle .pagination .prev.page-numbers,
.post-type-archive-crbs_vehicle .pagination .next.page-numbers {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  /* bez bočnog margina */
}
.post-type-archive-crbs_vehicle .pagination .prev.page-numbers {
  left: 0;
}
.post-type-archive-crbs_vehicle .pagination .next.page-numbers {
  right: 0;
}
.post-type-archive-crbs_vehicle {
  /* Mobilno: malo manje paddinga okvira */
}
@media (max-width: 520px) {
  .post-type-archive-crbs_vehicle .pagination {
    padding: 10px 44px 0;
  }
  .post-type-archive-crbs_vehicle .pagination .page-numbers {
    min-width: 32px;
    height: 32px;
    border-radius: 3px;
  }
}

/* SINGLE: CRBS Vehicle
   Pokriva aktuelni HTML iz single-crbs_vehicle.php  */
.single-crbs_vehicle {
  /* Page chrome */
}
.single-crbs_vehicle .breadcrumbs-wrap {
  margin: 50px auto 40px;
}
.single-crbs_vehicle {
  /* ============ Vehicle Page ============ */
}
.single-crbs_vehicle .vehicle-page {
  /* Sekcioni naslovi */
}
.single-crbs_vehicle .vehicle-page__section-subtitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  margin: 6px 0 10px;
}
.single-crbs_vehicle .vehicle-page {
  /* ---------- Brand header (logo + naslov + badge) ---------- */
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__logo {
    margin-top: 5px;
  }
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__logo img {
  display: block;
  width: 44px;
  height: auto;
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text {
  line-height: 1.1;
  padding-top: 8px;
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text .vehicle-brand__make_model {
  margin: 0;
  font-size: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 600px) {
  .single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text .vehicle-brand__make_model {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 68px;
  }
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text .vehicle-brand__make_model::after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 600px) {
  .single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text .vehicle-brand__make_model::after {
    bottom: 30px;
  }
}
.single-crbs_vehicle .vehicle-page .vehicle-brand__title_wrap .vehicle-brand__text .vehicle-brand__badge {
  margin-top: -2px;
  padding: 6px 8px 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  margin-right: auto;
}
.single-crbs_vehicle .vehicle-page {
  /* ---------- HERO: velika slika + desni stub ---------- */
}
.single-crbs_vehicle .vehicle-page .vehicle-hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  /* Leva – velika fotografija */
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__media .vehicle-figure {
  margin: 0;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__media .vehicle-figure__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery {
  margin-bottom: 20px;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio .gal-item {
  display: block;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio .gal-item:nth-of-type(n+5) {
  display: none;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio .gal-item .gal-thumb {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
  transition: -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
  transition: transform 180ms ease, box-shadow 220ms ease;
  transition: transform 180ms ease, box-shadow 220ms ease, -webkit-transform 180ms ease, -webkit-box-shadow 220ms ease;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio .gal-item:hover .gal-thumb {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1000px) {
  .single-crbs_vehicle .vehicle-page .vehicle-hero__gallery .galerio .gal-item:hover .gal-thumb {
    -webkit-transform: none;
            transform: none;
  }
}
.single-crbs_vehicle .vehicle-page .vehicle-hero__gallery-empty {
  font-size: 14px;
  color: #777;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero h2 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 10px;
}
.single-crbs_vehicle .vehicle-page .vehicle-hero h2::after {
  height: 3px;
  left: 0;
  bottom: -5px;
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 960px) {
  .single-crbs_vehicle .vehicle-page .vehicle-hero {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 15px;
  line-height: 1;
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline .vehicle-specs__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline .vehicle-specs__icon img {
  width: 18px;
  height: auto;
  display: block;
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline .vehicle-specs__label {
  margin-top: 5px;
  font-weight: 700;
}
.single-crbs_vehicle .vehicle-page .vehicle-specs__inline .vehicle-specs__value {
  margin-top: 5px;
  font-weight: 400;
}
.single-crbs_vehicle .vehicle-page .info-row.category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
}
.single-crbs_vehicle .vehicle-page .info-row.category .info-label {
  font-weight: 700;
  min-width: 92px;
}
.single-crbs_vehicle .vehicle-page .badge--category {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  background: #eef2f6;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.16s ease, -webkit-box-shadow 0.22s ease;
  transition: -webkit-transform 0.16s ease, -webkit-box-shadow 0.22s ease;
  transition: transform 0.16s ease, box-shadow 0.22s ease;
  transition: transform 0.16s ease, box-shadow 0.22s ease, -webkit-transform 0.16s ease, -webkit-box-shadow 0.22s ease;
  text-transform: capitalize;
}
.single-crbs_vehicle .vehicle-page .badge--category:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.single-crbs_vehicle .vehicle-page .btn {
  text-align: center;
  border-radius: 3px;
}
.single-crbs_vehicle .vehicle-page .btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.single-crbs_vehicle .vehicle-page__pricing {
  width: 600px;
  margin: 60px auto;
}
@media (max-width: 650px) {
  .single-crbs_vehicle .vehicle-page__pricing {
    width: 100%;
  }
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap {
  margin: 50px auto 30px;
}
@media (max-width: 480px) {
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap {
    overflow-x: scroll;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 485px) {
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 6px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    margin-bottom: 10px;
  }
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing {
  width: 100%;
  color: var(--text);
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 16px;
}
@media (max-width: 480px) {
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing {
    min-width: 530px;
    overflow-x: scroll;
  }
}
@media (max-width: 485px) {
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 560px;
  }
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing th,
  .single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing td {
    white-space: nowrap;
  }
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing th,
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing td {
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  width: 35px;
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing .col-label,
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing .row-label {
  text-align: center;
  font-weight: 600;
  color: #2C2C2C;
  width: 70px;
  background: transparent;
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing thead th {
  border-bottom: 1.5px solid #2C2C2C;
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing thead th:not(:first-child),
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing tbody td:not(:first-child) {
  border-left: 1.5px solid #2C2C2C;
}
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing tbody th,
.single-crbs_vehicle .vehicle-page__pricing .nn-pricing-wrap .nn-pricing tbody td {
  padding-top: 5px;
}
.single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container svg {
  height: 100%;
  width: auto;
  -webkit-filter: drop-shadow(0 10px 30px rgba(198, 155, 60, 0.3));
          filter: drop-shadow(0 10px 30px rgba(198, 155, 60, 0.3));
}
.single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container .center-part {
  -webkit-animation: fadeInOut 4s ease-in-out infinite;
          animation: fadeInOut 4s ease-in-out infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container .near-arrow {
  -webkit-animation: fadeInOut 4s ease-in-out infinite;
          animation: fadeInOut 4s ease-in-out infinite;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container .far-arrow {
  -webkit-animation: fadeInOut 4s ease-in-out infinite;
          animation: fadeInOut 4s ease-in-out infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (min-width: 486px) {
  .single-crbs_vehicle .vehicle-page__pricing .anim-mouse-container {
    display: none;
  }
}
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  85% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  15% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  85% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.single-crbs_vehicle .vehicle-page {
  /* ---------- Opis ---------- */
}
.single-crbs_vehicle .vehicle-page .vehicle-description {
  margin-top: 6px;
}
.single-crbs_vehicle .vehicle-page .vehicle-description h2 {
  text-align: center;
}
.single-crbs_vehicle .vehicle-page .vehicle-description__content {
  font-size: 16px;
  line-height: 1.7;
}
.single-crbs_vehicle .vehicle-page .vehicle-description__content p {
  margin: 0 0 12px;
}
.single-crbs_vehicle .vehicle-page .vehicle-description__content ul,
.single-crbs_vehicle .vehicle-page .vehicle-description__content ol {
  margin: 12px 0 12px 20px;
}
.single-crbs_vehicle {
  /* ============ JOŠ VOZILA SLIDER ============ */
}
.single-crbs_vehicle .more-vehicles {
  margin: 60px 0 80px;
  position: relative;
}
.single-crbs_vehicle .more-vehicles__swiper {
  position: relative;
  padding: 10px 50px;
}
@media (max-width: 768px) {
  .single-crbs_vehicle .more-vehicles__swiper {
    padding: 0 40px;
  }
}
.single-crbs_vehicle .more-vehicles__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.single-crbs_vehicle .more-vehicles__grid.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
@media (max-width: 1024px) {
  .single-crbs_vehicle .more-vehicles__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .single-crbs_vehicle .more-vehicles__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.single-crbs_vehicle .more-vehicles .mv-card {
  border-radius: 12px;
  background: #fff;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.single-crbs_vehicle .more-vehicles .mv-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .single-crbs_vehicle .more-vehicles .mv-card:hover {
    -webkit-transform: none;
            transform: none;
  }
}
.single-crbs_vehicle .more-vehicles .mv-card__media {
  position: relative;
  overflow: hidden;
}
.single-crbs_vehicle .more-vehicles .mv-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-crbs_vehicle .more-vehicles .mv-card__placeholder {
  padding-top: 62.5%;
  background: linear-gradient(135deg, #f3f3f3 0%, #e8e8e8 100%);
}
.single-crbs_vehicle .more-vehicles .mv-card__body {
  padding: 16px 18px 20px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-crbs_vehicle .more-vehicles .mv-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.single-crbs_vehicle .more-vehicles .mv-card__title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.single-crbs_vehicle .more-vehicles .mv-card__title a:hover {
  color: var(--brand-gold, #f1c40f);
}
.single-crbs_vehicle .more-vehicles .mv-card__price {
  font-size: 14px;
  color: #555;
  margin: 8px 0 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.single-crbs_vehicle .more-vehicles .mv-card__price-prefix {
  margin-right: 4px;
  color: #777;
}
.single-crbs_vehicle .more-vehicles .mv-card__price-value {
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-gold);
}
.single-crbs_vehicle .more-vehicles .mv-card__price-curr {
  font-weight: 700;
  color: var(--brand-gold);
}
.single-crbs_vehicle .more-vehicles .mv-card__price-suf {
  color: #777;
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev,
.single-crbs_vehicle .more-vehicles .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev::after,
.single-crbs_vehicle .more-vehicles .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev:hover,
.single-crbs_vehicle .more-vehicles .swiper-button-next:hover {
  background: var(--brand-gold, #f1c40f);
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev:hover::after,
.single-crbs_vehicle .more-vehicles .swiper-button-next:hover::after {
  color: #1a1a1a;
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev.swiper-button-disabled,
.single-crbs_vehicle .more-vehicles .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .single-crbs_vehicle .more-vehicles .swiper-button-prev,
  .single-crbs_vehicle .more-vehicles .swiper-button-next {
    width: 36px;
    height: 36px;
  }
  .single-crbs_vehicle .more-vehicles .swiper-button-prev::after,
  .single-crbs_vehicle .more-vehicles .swiper-button-next::after {
    font-size: 16px;
  }
}
.single-crbs_vehicle .more-vehicles .swiper-button-prev {
  left: 0;
}
.single-crbs_vehicle .more-vehicles .swiper-button-next {
  right: 0;
}
.single-crbs_vehicle .more-vehicles .swiper-pagination {
  position: relative;
  margin-top: 40px;
  bottom: 0 !important;
}
.single-crbs_vehicle .more-vehicles .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d1d1;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-crbs_vehicle .more-vehicles .swiper-pagination-bullet-active {
  background: var(--brand-gold, #f1c40f);
  width: 24px;
  border-radius: 5px;
}

/* ===========================
   Kontakt stranica (NN)
   =========================== */
.contact-page .breadcrumbs-wrap {
  margin: 50px auto 80px;
}
@media (max-width: 650px) {
  .contact-page .breadcrumbs-wrap {
    margin-bottom: 60px;
  }
}
.contact-page .contact-hero {
  text-align: center;
  margin-bottom: 32px;
}
.contact-page .contact-hero h1 {
  text-align: left;
  margin-bottom: 40px;
}
.contact-page .contact-hero h1::after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.contact-page .contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  /* ========== INFO TRAKA ========== */
}
.contact-page .contact-grid .contact-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .contact-page .contact-grid .contact-info {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }
}
@media (max-width: 650px) {
  .contact-page .contact-grid .contact-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
}
.contact-page .contact-grid .contact-info .ci-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 15px;
}
.contact-page .contact-grid .contact-info .ci-item .ci-ico {
  color: var(--brand-gold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.contact-page .contact-grid .contact-info .ci-item .ci-ico a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.contact-page .contact-grid .contact-info .ci-item .ci-ico a:hover {
  color: var(--brand-gold);
  text-decoration: underline;
}
.contact-page .contact-grid .contact-info .ci-item .ci-ico a .ico-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
}
.contact-page .contact-grid .contact-info .ci-item .ci-ico a .ico-wrap img {
  margin-top: -5px;
}
.contact-page .contact-grid {
  /* ========== FORMA (CF7) ========== */
}
.contact-page .contact-grid .contact-form {
  /* Ukloni CF7 spinner */
}
.contact-page .contact-grid .contact-form .wpcf7 .ajax-loader {
  display: none !important;
}
.contact-page .contact-grid .contact-form {
  /* Uklonimo CF7 <br> jer pravimo grid */
}
.contact-page .contact-grid .contact-form .wpcf7 br {
  display: none;
}
.contact-page .contact-grid .contact-form {
  /* Grid raspored forme */
}
.contact-page .contact-grid .contact-form .wpcf7 form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}
.contact-page .contact-grid .contact-form {
  /* CF7 često uvija polja u <p> – spljošti ih za grid */
}
.contact-page .contact-grid .contact-form .wpcf7 form > p {
  display: contents;
}
.contact-page .contact-grid .contact-form {
  /* Wrapper span sa position relative za error poruke */
}
.contact-page .contact-grid .contact-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-page .contact-grid .contact-form .wpcf7-form-control-wrap:nth-of-type(5) {
    grid-column: 1/-1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}
.contact-page .contact-grid .contact-form {
  /* Polja: bazni stil */
}
.contact-page .contact-grid .contact-form input[type=text],
.contact-page .contact-grid .contact-form input[type=tel],
.contact-page .contact-grid .contact-form input[type=email],
.contact-page .contact-grid .contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  background: var(--bg-darker);
  border: 1px solid #D9D9D9;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  outline: none;
}
.contact-page .contact-grid .contact-form textarea {
  min-height: 120px;
  max-height: 120px;
  resize: vertical;
}
.contact-page .contact-grid .contact-form input::-webkit-input-placeholder, .contact-page .contact-grid .contact-form textarea::-webkit-input-placeholder {
  color: #888;
}
.contact-page .contact-grid .contact-form input::-moz-placeholder, .contact-page .contact-grid .contact-form textarea::-moz-placeholder {
  color: #888;
}
.contact-page .contact-grid .contact-form input:-ms-input-placeholder, .contact-page .contact-grid .contact-form textarea:-ms-input-placeholder {
  color: #888;
}
.contact-page .contact-grid .contact-form input::-ms-input-placeholder, .contact-page .contact-grid .contact-form textarea::-ms-input-placeholder {
  color: #888;
}
.contact-page .contact-grid .contact-form input::placeholder,
.contact-page .contact-grid .contact-form textarea::placeholder {
  color: #888;
}
.contact-page .contact-grid .contact-form {
  /* Fokus */
}
.contact-page .contact-grid .contact-form input[type=text]:focus,
.contact-page .contact-grid .contact-form input[type=tel]:focus,
.contact-page .contact-grid .contact-form input[type=email]:focus,
.contact-page .contact-grid .contact-form textarea:focus,
.contact-page .contact-grid .contact-form input[type=text]:focus-visible,
.contact-page .contact-grid .contact-form input[type=tel]:focus-visible,
.contact-page .contact-grid .contact-form input[type=email]:focus-visible,
.contact-page .contact-grid .contact-form textarea:focus-visible {
  border-color: var(--brand-gold);
}
.contact-page .contact-grid .contact-form {
  /* Error state - crveni border */
}
.contact-page .contact-grid .contact-form .wpcf7-not-valid {
  border-color: #ff6b6b !important;
}
.contact-page .contact-grid .contact-form {
  /* Error poruka - pozicionirana apsolutno */
}
.contact-page .contact-grid .contact-form .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -18px;
  left: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #ff6b6b;
  margin: 0;
  padding: 0;
  z-index: 10;
}
.contact-page .contact-grid .contact-form {
  /* Dugme */
}
.contact-page .contact-grid .contact-form .wpcf7-submit,
.contact-page .contact-grid .contact-form button[type=submit] {
  max-width: 280px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 3px;
  border: 0;
  background: var(--brand-gold);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact-page .contact-grid .contact-form .wpcf7-submit:hover,
.contact-page .contact-grid .contact-form button[type=submit]:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.contact-page .contact-grid .contact-form .wpcf7-submit:disabled,
.contact-page .contact-grid .contact-form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.contact-page .contact-grid .contact-form {
  /* Raspored kroz ime atributa - CF7 struktura */
}
.contact-page .contact-grid .contact-form input[name=first-name] {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}
.contact-page .contact-grid .contact-form input[name=last-name] {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}
.contact-page .contact-grid .contact-form input[name=phone] {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}
.contact-page .contact-grid .contact-form input[name=your-email] {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}
.contact-page .contact-grid .contact-form textarea[name=your-message] {
  grid-column: 1/-1;
  -ms-grid-row: 3;
  grid-row: 3;
}
.contact-page .contact-grid .contact-form .wpcf7-submit {
  grid-column: 1/-1;
  -ms-grid-row: 4;
  grid-row: 4;
}
.contact-page .contact-grid .contact-form {
  /* Response poruke - lepo dizajnirane */
}
.contact-page .contact-grid .contact-form .wpcf7-response-output {
  grid-column: 1/-1;
  -ms-grid-row: 5;
  grid-row: 5;
  margin: 0;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
  border: 1px solid #ddd;
  background: #f8f8f8;
  color: var(--text);
}
.contact-page .contact-grid .contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #27ae60;
  background: #d4edda;
  color: #155724;
}
.contact-page .contact-grid .contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-page .contact-grid .contact-form .wpcf7 form.failed .wpcf7-response-output {
  border-color: #e74c3c;
  background: #f8d7da;
  color: #721c24;
}
.contact-page .contact-grid .contact-form {
  /* RESPONSIVE */
}
@media (max-width: 767px) {
  .contact-page .contact-grid .contact-form .wpcf7 form {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contact-page .contact-grid .contact-form input[name=first-name],
  .contact-page .contact-grid .contact-form input[name=last-name],
  .contact-page .contact-grid .contact-form input[name=phone],
  .contact-page .contact-grid .contact-form input[name=your-email],
  .contact-page .contact-grid .contact-form textarea[name=your-message],
  .contact-page .contact-grid .contact-form .wpcf7-submit,
  .contact-page .contact-grid .contact-form .wpcf7-response-output {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .contact-page .contact-grid .contact-form input[name=first-name] {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .contact-page .contact-grid .contact-form input[name=last-name] {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .contact-page .contact-grid .contact-form input[name=phone] {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .contact-page .contact-grid .contact-form input[name=your-email] {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  .contact-page .contact-grid .contact-form textarea[name=your-message] {
    -ms-grid-row: 5;
    grid-row: 5;
  }
  .contact-page .contact-grid .contact-form .wpcf7-submit {
    -ms-grid-row: 6;
    grid-row: 6;
    max-width: 100%;
  }
  .contact-page .contact-grid .contact-form .wpcf7-response-output {
    -ms-grid-row: 7;
    grid-row: 7;
  }
}
.contact-page {
  /* Mreža leve/desne kolone -> 1 kolona na tablet/mobilnom */
}
@media (max-width: 1024px) {
  .contact-page .contact-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact-page {
  /* ========== MAPE ========== */
}
.contact-page .contact-bottom {
  margin-top: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 650px) {
  .contact-page .contact-bottom {
    margin-top: 50px;
  }
}
.contact-page .maps-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #e5e3df;
}
.contact-page .maps-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .contact-page .maps-container {
    padding-bottom: 75%;
  }
}
@media (min-width: 1200px) {
  .contact-page .maps-container {
    padding-bottom: 550px;
    height: auto;
  }
}

/* =========================================
   FAQ / Support page (NN Rent a Car)
   ========================================= */
/* Colors – koristi projektne varijable; fallback vrednosti */
:root {
  --nn-bg: var(--color-bg, #fff);
  --nn-surface: var(--color-surface, #fff);
  --nn-ink: var(--color-ink, #111);
  --nn-border: var(--color-border, #e5e5e5);
  --nn-muted: var(--color-muted, #6b7280);
  --nn-primary: var(--color-primary, #111);
  --nn-soft-bg: var(--color-soft, #f9fafb);
  /* svetla pozadina panela */
  --nn-radius: 3px;
  --nn-gap: 16px;
  --nn-sticky-top: 96px;
  /* visina headera */
}

/* =========================
   Layout
   ========================= */
.support {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 260px 1fr;
  grid-template-columns: 260px 1fr;
  gap: clamp(16px, 2vw, 32px);
}
.support .breadcrumbs {
  margin: 40px auto;
}
.support {
  /* Sidebar: sticky ide na INNER, i staje iznad footera */
}
.support__nav {
  position: relative;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  height: 100%;
}
.support__nav .support__nav-inner {
  position: fixed;
  top: 225px;
  max-height: calc(100dvh - var(--nn-sticky-top) - 16px);
  overflow: auto;
  padding-block: 6px;
}
.support__nav .support__nav-inner.is-stopped {
  position: absolute;
  top: auto;
  bottom: 0;
  max-height: none;
  overflow: visible;
}
.support__nav #faq-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.support__nav #faq-nav li {
  padding: 0 10px;
}
.support__nav #faq-nav a {
  display: block;
  padding: 8px 10px;
  color: var(--nn-ink);
  text-decoration: none;
  border-radius: var(--nn-radius);
  -webkit-transition: background 0.15s ease, color 0.15s ease, outline-color 0.15s;
  transition: background 0.15s ease, color 0.15s ease, outline-color 0.15s;
}
.support__nav #faq-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.support__nav #faq-nav a.is-active {
  font-weight: 600;
  color: var(--nn-primary);
  background: rgba(0, 0, 0, 0.06);
  outline: 1px solid var(--brand-gold);
  outline-offset: 0;
}
.support__head {
  margin-bottom: 1.25rem;
}
.support__head h1 {
  margin-bottom: 35px;
  text-align: left;
}
.support__head h1:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
.support__head .lead {
  color: var(--nn-muted);
}
.support__head #faq-search {
  width: min(520px, 100%);
  padding: 10px 12px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  outline: none;
  background: var(--nn-surface);
}
.support__head #faq-search:focus {
  border-color: var(--brand-gold);
}
.support__head #faq-result-meta {
  margin-top: 6px;
  color: var(--nn-muted);
  font-size: 0.95rem;
}
.support__head input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  background-image: url("../../dist/img/icons/x-icon-brand-color.svg");
  background-size: cover;
  cursor: pointer;
}
.support__head {
  /* -------- Search results panel -------- */
}
.support__head .faq-results {
  margin-top: 10px;
  max-width: 760px;
  border: 1px solid var(--nn-border);
  background: var(--nn-surface);
}
.support__head .faq-results[hidden] {
  display: none;
}
.support__head .faq-results__head {
  padding: 8px 12px;
  border-bottom: 1px solid var(--nn-border);
  background: var(--nn-soft-bg);
}
.support__head .faq-results__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nn-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.support__head .faq-results__list {
  padding: 8px;
  max-height: 50vh;
  /* panel skroluje, ne “guta” stranu */
  overflow: auto;
}
.support__head .faq-result {
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  padding: 10px 12px;
  background: var(--nn-bg);
  cursor: pointer;
  -webkit-transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.support__head .faq-result + .faq-result {
  margin-top: 8px;
}
.support__head .faq-result.is-active, .support__head .faq-result:hover {
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.support__head .faq-result__q {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 2px 0 4px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
}
.support__head .faq-result__meta {
  display: block;
  margin-bottom: 4px;
  color: var(--nn-muted);
  font-size: 0.9rem;
}
.support__head .faq-result__snippet {
  font-size: 0.95rem;
  color: var(--nn-ink);
}
.support__head .faq-chip {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--nn-border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--nn-muted);
  background: #fff;
}

/* =========================
   FAQ grupe
   ========================= */
.faq-group {
  margin: 32px 0;
}
.faq-group__title {
  margin-bottom: 20px;
}

/* =========================
   Accordion (NO crop, NO gap)
   ========================= */
/* razmak ide na ceo blok, ne između head/body */
.ov-acc__head {
  margin: 12px 0 0;
}

.ov-acc__head + .ov-acc__body {
  margin: 0 0 12px;
}

/* Head */
.ov-acc__head {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--nn-surface);
  color: var(--nn-ink);
  padding: 14px 16px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  cursor: pointer;
  -webkit-transition: border-color 0.15s ease, background 0.15s ease;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.ov-acc__head:hover {
  border-color: var(--brand-gold);
}

.ov-acc__head.is-open {
  /* nema linije između head i body */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  background: var(--nn-soft-bg);
  border-top: 1px solid var(--brand-gold);
  border-left: 1px solid var(--brand-gold);
  border-right: 1px solid var(--brand-gold);
}

/* Body – bez animacije visine => nema sečenja sadržaja */
.ov-acc__body {
  display: none;
  /* zatvoren */
  background: var(--nn-soft-bg);
  border: 1px solid var(--nn-border);
  border-top: 0;
  /* spajanje sa head-om */
  border-bottom-left-radius: var(--nn-radius);
  border-bottom-right-radius: var(--nn-radius);
  padding: 12px 16px 14px;
}

.ov-acc__head.is-open + .ov-acc__body {
  display: block;
  border: 1px solid var(--brand-gold);
  border-top: 1px solid rgba(198, 155, 60, 0.1882352941);
}

/* otvoren */
/* unutrašnji ritam */
.ov-acc__body > * {
  margin: 10px 0;
}

.ov-acc__body > :first-child {
  margin-top: 4px;
}

.ov-acc__body > :last-child {
  margin-bottom: 4px;
}

/* highlight */
mark {
  background: transparent;
  -webkit-box-shadow: inset 0 -7px 0 rgba(255, 235, 0, 0.55);
          box-shadow: inset 0 -7px 0 rgba(255, 235, 0, 0.55);
}

/* =========================
   Sekcije – kartice na dnu
   ========================= */
.faq-sections {
  margin: 40px 0;
}
.faq-sections h2 {
  margin-bottom: 25px;
}

.faq-sections-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* 3 u redu (=> 2 reda po 3) */
  gap: 12px;
}

.faq-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--nn-ink);
  padding: 40px 14px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  background: var(--nn-bg);
  -webkit-transition: border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
  transition: border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
}

.faq-card:hover {
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.faq-card strong {
  font-weight: 600;
  font-size: 21px;
}

.faq-card span {
  color: var(--nn-muted);
  font-size: 0.95rem;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .support {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .support__nav {
    display: none;
    /* na mobilnom ne zaustavljamo jer nema sticky */
  }
  .support__nav .support__nav-inner {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .faq-sections-grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .faq-sections-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* a11y */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   FAQ – Single Section (child of /podrska/)
   Izgled & UX 1/1 kao parent, ali bez levog menija
   ========================================= */
:root {
  --nn-bg: var(--color-bg, #fff);
  --nn-surface: var(--color-surface, #fff);
  --nn-ink: var(--color-ink, #111);
  --nn-border: var(--color-border, #e5e5e5);
  --nn-muted: var(--color-muted, #6b7280);
  --nn-primary: var(--color-primary, #111);
  --nn-soft-bg: var(--color-soft, #f9fafb);
  --nn-radius: 3px;
}

/* ===== Layout (gasi grid iz parent .support) ===== */
.support.support--single {
  display: block;
  /* ključ: nema 2 kolone */
  -ms-grid-columns: unset;
  grid-template-columns: unset;
  max-width: 1120px;
  margin-inline: auto;
}

/* ===== Zaglavlje (isti vizuel kao parent head) ===== */
.support.support--single .support__head {
  margin: 0 0 18px;
}

.support.support--single .support__back {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--nn-muted);
  text-decoration: none;
}

.support.support--single .support__back:hover {
  color: var(--nn-ink);
}

.support.support--single .support__head .lead {
  color: var(--nn-muted);
}

.support.support--single .support__head #faq-search {
  width: min(520px, 100%);
  padding: 10px 12px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  background: var(--nn-surface);
  outline: none;
}

.support.support--single .support__head #faq-search:focus {
  border-color: var(--nn-primary);
}

.support.support--single .support__head #faq-result-meta {
  margin-top: 6px;
  color: var(--nn-muted);
  font-size: 0.95rem;
}

/* ===== (opciono) panel sa rezultatima – isti kao parent ===== */
.support.support--single .faq-results {
  margin-top: 10px;
  max-width: 760px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  background: var(--nn-surface);
}

.support.support--single .faq-results[hidden] {
  display: none;
}

.support.support--single .faq-results__head {
  padding: 8px 12px;
  border-bottom: 1px solid var(--nn-border);
  background: var(--nn-soft-bg);
}

.support.support--single .faq-results__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nn-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.support.support--single .faq-results__list {
  padding: 8px;
  max-height: 50vh;
  overflow: auto;
}

.support.support--single .faq-result {
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  padding: 10px 12px;
  background: var(--nn-bg);
  cursor: pointer;
  -webkit-transition: border-color 0.15s, -webkit-box-shadow 0.15s;
  transition: border-color 0.15s, -webkit-box-shadow 0.15s;
  transition: border-color 0.15s, box-shadow 0.15s;
  transition: border-color 0.15s, box-shadow 0.15s, -webkit-box-shadow 0.15s;
}

.support.support--single .faq-result + .faq-result {
  margin-top: 8px;
}

.support.support--single .faq-result:hover,
.support.support--single .faq-result.is-active {
  border-color: var(--nn-primary);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.support.support--single .faq-result__q {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 0;
  margin: 2px 0 4px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
}

.support.support--single .faq-result__meta {
  display: block;
  margin-bottom: 4px;
  color: var(--nn-muted);
  font-size: 0.9rem;
}

.support.support--single .faq-chip {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid var(--nn-border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--nn-muted);
  background: #fff;
}

.support.support--single .faq-result__snippet {
  font-size: 0.95rem;
  color: var(--nn-ink);
}

.support.support--single .faq-result mark {
  background: transparent;
  -webkit-box-shadow: inset 0 -6px 0 rgba(255, 235, 0, 0.55);
          box-shadow: inset 0 -6px 0 rgba(255, 235, 0, 0.55);
}

/* ===== FAQ grupa ===== */
.support.support--single .faq-group {
  margin: 16px 0 32px;
}

/* ===== Accordion (isti UI kao na parentu, bez crop-a) ===== */
.support.support--single .ov-acc__head {
  margin: 12px 0 0;
}

.support.support--single .ov-acc__head + .ov-acc__body {
  margin: 0 0 12px;
}

.support.support--single .ov-acc__head {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--nn-surface);
  color: var(--nn-ink);
  padding: 14px 16px;
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  cursor: pointer;
  -webkit-transition: border-color 0.15s ease, background 0.15s ease;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.support.support--single .ov-acc__head:hover {
  border-color: var(--brand-gold);
}

.support.support--single .ov-acc__head.is-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  background: var(--nn-soft-bg);
  border-top: 1px solid var(--brand-gold);
  border-left: 1px solid var(--brand-gold);
  border-right: 1px solid var(--brand-gold);
}

.support.support--single .ov-acc__body {
  display: none;
  /* nema max-height → nema “sečenja” */
  background: var(--nn-soft-bg);
  border: 1px solid var(--nn-border);
  border-top: 0;
  border-bottom-left-radius: var(--nn-radius);
  border-bottom-right-radius: var(--nn-radius);
  padding: 12px 16px 14px;
}

.support.support--single .ov-acc__head.is-open + .ov-acc__body {
  display: block;
  border: 1px solid var(--brand-gold);
  border-top: 1px solid rgba(198, 155, 60, 0.1882352941);
}

.support.support--single .ov-acc__body > * {
  margin: 10px 0;
}

.support.support--single .ov-acc__body > :first-child {
  margin-top: 4px;
}

.support.support--single .ov-acc__body > :last-child {
  margin-bottom: 4px;
}

.support.support--single mark {
  background: transparent;
  -webkit-box-shadow: inset 0 -7px 0 rgba(255, 235, 0, 0.55);
          box-shadow: inset 0 -7px 0 rgba(255, 235, 0, 0.55);
}

/* ===== Kartice “FAQ sekcije” (dno strane) ===== */
.support.support--single .faq-sections {
  margin: 40px 0;
}

.support.support--single .faq-sections-grid {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support.support--single .faq-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 104px;
  text-align: center;
  text-decoration: none;
  color: var(--nn-ink);
  border: 1px solid var(--nn-border);
  border-radius: var(--nn-radius);
  background: var(--nn-bg);
  -webkit-transition: border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
  transition: border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s, -webkit-box-shadow 0.15s ease, -webkit-transform 0.15s ease;
}

.support.support--single .faq-card:hover {
  border-color: var(--brand-gold);
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.support.support--single .faq-card strong {
  font-weight: 600;
}

@media (max-width: 960px) {
  .support.support--single .faq-sections-grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .support.support--single .faq-sections-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
/* a11y util */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   Policy – HUB (lista child stranica, vertikalni raspored)
   ===================================================== */
.policy-hub {
  /* centralna kolona – bez text-align:center, samo max-width */
  --policy-max: 900px;
  --policy-narrow: 860px;
  --brand-gold: #C69B3C;
  --soft-gray: #F4F5F7;
  --soft-gray-2: #EEEFF2;
  --text: #0E0E0F;
  --text-muted: #9AA0A6;
  --border: rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  padding: 24px 0 56px;
}
.policy-hub .breadcrumbs-wrap,
.policy-hub .breadcrumbs {
  margin: 14px auto 8px;
  max-width: var(--policy-max);
  width: 100%;
  padding: 0 16px;
}
.policy-hub .breadcrumbs {
  margin: 40px auto;
}
@media (max-width: 500px) {
  .policy-hub .breadcrumbs {
    margin-top: 0px;
  }
}
@media (max-width: 500px) {
  .policy-hub .breadcrumbs .crumbs-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .policy-hub .breadcrumbs .crumbs-wrap .separator {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 0;
  }
}
.policy-hub .breadcrumbs .crumbs-wrap a,
.policy-hub .breadcrumbs .crumbs-wrap span {
  font-size: 16px;
}
@media (max-width: 500px) {
  .policy-hub .breadcrumbs .crumbs-wrap a,
  .policy-hub .breadcrumbs .crumbs-wrap span {
    font-size: 14px;
  }
}
.policy-hub > header {
  max-width: var(--policy-max);
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 16px;
}
.policy-hub > header .nn-title {
  margin: 8px 0 55px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--text);
}
.policy-hub > header p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
}
.policy-hub {
  /* ===== vertikalna lista “kartica” – jedna ispod druge ===== */
}
.policy-hub .policy-grid {
  max-width: var(--policy-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.policy-hub .policy-grid .policy-card {
  background: var(--soft-gray);
  border: 1px solid var(--border);
  border-radius: 3px;
  -webkit-transition: background-color 160ms ease, border-color 160ms ease, -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
  transition: background-color 160ms ease, border-color 160ms ease, -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, -webkit-transform 160ms ease, -webkit-box-shadow 160ms ease;
}
.policy-hub .policy-grid .policy-card > h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.policy-hub .policy-grid .policy-card > h2 a {
  display: block;
  padding: 16px 18px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  /* mala strelica desno */
}
.policy-hub .policy-grid .policy-card > h2 a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  opacity: 0.5;
  -webkit-transition: border-color 160ms ease, opacity 160ms ease;
  transition: border-color 160ms ease, opacity 160ms ease;
}
.policy-hub .policy-grid .policy-card {
  /* hover: zlatna + vrlo blag “lift” */
}
.policy-hub .policy-grid .policy-card:hover {
  background: var(--brand-gold);
  border-color: transparent;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
.policy-hub .policy-grid .policy-card:hover > h2 a {
  color: #fff;
}
.policy-hub .policy-grid .policy-card:hover > h2 a::after {
  border-color: #101010;
  opacity: 0.8;
}
.policy-hub .policy-grid .policy-card {
  /* fokus (pristupačnost) */
}
.policy-hub .policy-grid .policy-card:has(a:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.28), 0 10px 22px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 3px rgba(198, 155, 60, 0.28), 0 10px 22px rgba(0, 0, 0, 0.1);
}
.policy-hub .wp-block-heading {
  margin: 0 0 15px 0;
}
.policy-hub .wp-block-list li {
  margin-bottom: 5px;
}
.policy-hub .wp-block-separator {
  margin: 20px 0;
}

/* blago zbijeniji razmaci na većim ekranima */
@media (min-width: 768px) {
  .policy-hub {
    padding: 28px 0 64px;
    --policy-max: 980px;
  }
  .policy-hub .policy-grid {
    gap: 14px;
  }
  .policy-hub .policy-grid .policy-card > h2 a {
    padding: 18px 20px;
  }
  .policy-hub > header .nn-title {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .policy-hub {
    --policy-max: 1040px;
  }
  .policy-hub > header .nn-title {
    font-size: 40px;
  }
}
@media (prefers-color-scheme: light) {
  .policy-hub .policy-grid .policy-card {
    background: var(--soft-gray);
    border-color: var(--border);
  }
}
/* =====================================================
   Policy – SINGLE (čitljivost teksta)
   Možeš dodati class .policy-single na body ili wrapper.
   Ako ne, sledeći selektori su bezbedno “meko” scoped.
   ===================================================== */
/* naslov + breadcrumb deo na single */
.policy-single .breadcrumbs-wrap,
.policy-single .breadcrumbs {
  max-width: 900px;
  margin: 16px auto 8px;
  padding: 0 16px;
}

.policy-single > header,
.policy-single .page-header,
.policy-single .title-wrap {
  max-width: 900px;
  margin: 0 auto 12px;
  padding: 0 16px;
}
.policy-single > header .nn-title,
.policy-single .page-header .nn-title,
.policy-single .title-wrap .nn-title {
  margin: 10px 0 8px;
  line-height: 1.16;
  font-weight: 800;
}
.policy-single > header,
.policy-single .page-header,
.policy-single .title-wrap {
  /* brand underline */
}
.policy-single > header .nn-title + .nn-title-underline,
.policy-single > header .nn-title + .title-underline,
.policy-single > header .nn-title + .title-accent,
.policy-single .page-header .nn-title + .nn-title-underline,
.policy-single .page-header .nn-title + .title-underline,
.policy-single .page-header .nn-title + .title-accent,
.policy-single .title-wrap .nn-title + .nn-title-underline,
.policy-single .title-wrap .nn-title + .title-underline,
.policy-single .title-wrap .nn-title + .title-accent {
  display: block;
  width: 86px;
  height: 6px;
  background: var(--brand-gold, #C69B3C);
  border-radius: 3px;
  margin: 8px 0 0;
}

/* glavni tekst (fallback selektori da pokriju standardne WP markup-e) */
.policy-single .entry-content,
.policy-single .page-content,
.policy-content,
.page .entry-content.policy-content {
  --brand-gold: #C69B3C;
  --text: #0E0E0F;
  --text-muted: #8C9299;
  --rule: #DADCE0;
  max-width: 900px;
  margin: 10px auto 60px;
  padding: 0 16px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}
.policy-single .entry-content p,
.policy-single .page-content p,
.policy-content p,
.page .entry-content.policy-content p {
  margin: 0 0 12px;
}
.policy-single .entry-content h2,
.policy-single .entry-content h3,
.policy-single .page-content h2,
.policy-single .page-content h3,
.policy-content h2,
.policy-content h3,
.page .entry-content.policy-content h2,
.page .entry-content.policy-content h3 {
  line-height: 1.25;
  margin: 28px 0 10px;
  font-weight: 800;
  color: var(--text);
}
.policy-single .entry-content h2,
.policy-single .page-content h2,
.policy-content h2,
.page .entry-content.policy-content h2 {
  font-size: 26px;
}
.policy-single .entry-content h3,
.policy-single .page-content h3,
.policy-content h3,
.page .entry-content.policy-content h3 {
  font-size: 20px;
}
.policy-single .entry-content,
.policy-single .page-content,
.policy-content,
.page .entry-content.policy-content {
  /* tanka linija ispod većih sekcija */
}
.policy-single .entry-content h2 + p,
.policy-single .entry-content h2 + ul,
.policy-single .entry-content h2 + ol,
.policy-single .entry-content h2 + .lead,
.policy-single .page-content h2 + p,
.policy-single .page-content h2 + ul,
.policy-single .page-content h2 + ol,
.policy-single .page-content h2 + .lead,
.policy-content h2 + p,
.policy-content h2 + ul,
.policy-content h2 + ol,
.policy-content h2 + .lead,
.page .entry-content.policy-content h2 + p,
.page .entry-content.policy-content h2 + ul,
.page .entry-content.policy-content h2 + ol,
.page .entry-content.policy-content h2 + .lead {
  position: relative;
}
.policy-single .entry-content h2,
.policy-single .page-content h2,
.policy-content h2,
.page .entry-content.policy-content h2 {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
}
.policy-single .entry-content .lead,
.policy-single .page-content .lead,
.policy-content .lead,
.page .entry-content.policy-content .lead {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 8px;
}
.policy-single .entry-content ul,
.policy-single .entry-content ol,
.policy-single .page-content ul,
.policy-single .page-content ol,
.policy-content ul,
.policy-content ol,
.page .entry-content.policy-content ul,
.page .entry-content.policy-content ol {
  margin: 8px 0 14px 0;
  padding-left: 22px;
}
.policy-single .entry-content ul li,
.policy-single .entry-content ol li,
.policy-single .page-content ul li,
.policy-single .page-content ol li,
.policy-content ul li,
.policy-content ol li,
.page .entry-content.policy-content ul li,
.page .entry-content.policy-content ol li {
  margin: 6px 0;
  padding-left: 0;
}
.policy-single .entry-content,
.policy-single .page-content,
.policy-content,
.page .entry-content.policy-content {
  /* inline naglasci */
}
.policy-single .entry-content strong,
.policy-single .page-content strong,
.policy-content strong,
.page .entry-content.policy-content strong {
  font-weight: 800;
}
.policy-single .entry-content em,
.policy-single .page-content em,
.policy-content em,
.page .entry-content.policy-content em {
  font-style: italic;
}
.policy-single .entry-content a,
.policy-single .page-content a,
.policy-content a,
.page .entry-content.policy-content a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: opacity 120ms ease;
  transition: opacity 120ms ease;
}
.policy-single .entry-content a:hover,
.policy-single .page-content a:hover,
.policy-content a:hover,
.page .entry-content.policy-content a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.policy-single .entry-content hr,
.policy-single .page-content hr,
.policy-content hr,
.page .entry-content.policy-content hr {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: 24px 0;
}
.policy-single .entry-content,
.policy-single .page-content,
.policy-content,
.page .entry-content.policy-content {
  /* tabele (ako ih bude) */
}
.policy-single .entry-content table,
.policy-single .page-content table,
.policy-content table,
.page .entry-content.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 16px;
}
.policy-single .entry-content table th,
.policy-single .entry-content table td,
.policy-single .page-content table th,
.policy-single .page-content table td,
.policy-content table th,
.policy-content table td,
.page .entry-content.policy-content table th,
.page .entry-content.policy-content table td {
  border: 1px solid #E5E7EB;
  padding: 10px 12px;
  vertical-align: top;
}
.policy-single .entry-content table th,
.policy-single .page-content table th,
.policy-content table th,
.page .entry-content.policy-content table th {
  background: #F8F9FB;
  font-weight: 700;
}
.policy-single .entry-content table tr:nth-child(even) td,
.policy-single .page-content table tr:nth-child(even) td,
.policy-content table tr:nth-child(even) td,
.page .entry-content.policy-content table tr:nth-child(even) td {
  background: #FBFBFD;
}
.policy-single .entry-content,
.policy-single .page-content,
.policy-content,
.page .entry-content.policy-content {
  /* napomena/box */
}
.policy-single .entry-content .note,
.policy-single .entry-content blockquote,
.policy-single .page-content .note,
.policy-single .page-content blockquote,
.policy-content .note,
.policy-content blockquote,
.page .entry-content.policy-content .note,
.page .entry-content.policy-content blockquote {
  margin: 14px 0;
  padding: 12px 14px;
  background: #FAF6EE;
  border-left: 3px solid var(--brand-gold);
  border-radius: 8px;
  color: #3b3b3b;
}

/* malo zbijenija tipografija na mobilnom da zadrži prohodnost */
@media (max-width: 480px) {
  .policy-single .entry-content,
  .policy-single .page-content,
  .policy-content,
  .page .entry-content.policy-content {
    font-size: 16px;
    line-height: 1.68;
  }
  .policy-single .entry-content h2,
  .policy-single .page-content h2,
  .policy-content h2,
  .page .entry-content.policy-content h2 {
    font-size: 24px;
  }
  .policy-single .entry-content h3,
  .policy-single .page-content h3,
  .policy-content h3,
  .page .entry-content.policy-content h3 {
    font-size: 18px;
  }
}
/* print-friendly (opciono, ne smeta) */
@media print {
  .policy-hub .policy-grid .policy-card,
  .policy-hub .policy-grid .policy-card > h2 a::after {
    display: none !important;
  }
  .policy-single .entry-content,
  .policy-single .page-content,
  .policy-content {
    color: #000;
  }
}
.page-template-template_rezervacija * {
  font-family: "Artegra Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.page-template-template_rezervacija .crbs-button {
  border-radius: 3px;
}
.page-template-template_rezervacija .breadcrumbs {
  margin: 50px auto 80px;
}
.page-template-template_rezervacija .reservations-main {
  margin-bottom: 80px;
}
.page-template-template_rezervacija {
  /* Pagination: prev levo, next desno, brojevi centrirani */
}
.page-template-template_rezervacija .pagination {
  position: relative;
  width: 100%;
  padding-top: 10px;
  /* traženi razmak gore */
  min-height: 36px;
  /* da ne “propadne” kad nema mnogo linkova */
  text-align: center;
  /* centriraj sve brojeve */
}
.page-template-template_rezervacija .pagination .page-numbers {
  display: inline-block;
  /* da se lepo ređaju u centru */
  margin: 0 6px;
  line-height: 1;
}
.page-template-template_rezervacija {
  /* Prev i Next fiksiramo na krajeve, ne utiču na centar */
}
.page-template-template_rezervacija .pagination .prev {
  position: absolute;
  left: 0;
}
.page-template-template_rezervacija .pagination .next {
  position: absolute;
  right: 0;
}
.page-template-template_rezervacija {
  /* malo stila (opciono) */
}
.page-template-template_rezervacija .pagination .page-numbers.current {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.06);
  padding: 6px 10px;
  border-radius: 8px;
}
.page-template-template_rezervacija .pagination .page-numbers:not(.prev):not(.next):hover {
  text-decoration: underline;
}
.page-template-template_rezervacija {
  /* Responsivno: smanji margine na uskim ekranima */
}
@media (max-width: 520px) {
  .page-template-template_rezervacija .pagination .page-numbers {
    margin: 0 4px;
  }
}

.site-footer {
  padding: 75px 0 0 0;
  background-color: var(--bg-primary);
}
.site-footer .footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .site-footer .footer-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 40px;
  }
}
.site-footer .footer-wrap .footer-left {
  width: 300px;
}
@media (max-width: 1000px) {
  .site-footer .footer-wrap .footer-left {
    margin-right: 0;
    margin: 0 auto;
    text-align: center;
    grid-column: 1/-1;
  }
}
@media (max-width: 1000px) {
  .site-footer .footer-wrap .footer-left .footer-logo {
    margin: 0 auto;
  }
}
.site-footer .footer-wrap .footer-left .footer-description {
  color: #fff;
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.2;
}
.site-footer .footer-wrap .footer-left .footer-reservation {
  display: block;
  margin-top: 20px;
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-wrap .footer-left .footer-reservation:hover {
  color: var(--brand-gold);
}
.site-footer .footer-wrap .footer-contact-mob {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-column: 1/-1;
  margin: 50px auto 60px;
}
@media (min-width: 1001px) {
  .site-footer .footer-wrap .footer-contact-mob {
    display: none;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-wrap .footer-contact-mob {
    margin: 50px auto 0;
  }
}
.site-footer .footer-wrap .footer-contact-mob .action-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .site-footer .footer-wrap .footer-contact-mob .action-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 10px;
  }
}
@media (max-width: 650px) {
  .site-footer .footer-wrap .footer-contact-mob .action-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .site-footer .footer-wrap .footer-contact-mob .action-wrap .footer-contact-action a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer .footer-wrap .footer-contact-mob .action-wrap .footer-contact-action a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-wrap .footer-contact-mob .action-wrap .footer-contact-action a:hover {
  color: var(--brand-gold);
}
.site-footer .footer-wrap .footer-contact-mob .company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  gap: 30px;
}
.site-footer .footer-wrap .footer-contact-mob .company-wrap span {
  color: #fff;
}
.site-footer .footer-wrap .footer-contact-mob .bank-info {
  display: none;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .site-footer .footer-wrap .footer-contact-mob .bank-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
  }
}
.site-footer .footer-wrap .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media (max-width: 1000px) {
  .site-footer .footer-wrap .footer-socials {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
}
.site-footer .footer-wrap .footer-socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
}
.site-footer .footer-wrap .footer-socials {
  /* zajednički */
}
.site-footer .footer-wrap .footer-socials svg {
  height: 18px;
  width: auto;
  display: block;
}
.site-footer .footer-wrap .footer-socials svg * {
  -webkit-transition: stroke 0.25s ease, fill 0.25s ease;
  transition: stroke 0.25s ease, fill 0.25s ease;
}
.site-footer .footer-wrap .footer-socials {
  /* FB: malo spusti zbog optičke visine */
}
.site-footer .footer-wrap .footer-socials .fb-icon svg {
  -webkit-transform: translateY(0.5px);
          transform: translateY(0.5px);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-wrap .footer-socials .fb-icon:hover {
  color: #1877F2;
}
.site-footer .footer-wrap .footer-socials .ig-icon {
  padding-top: 3px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-wrap .footer-socials {
  /* IG: deblji outline za istu optičku težinu */
}
.site-footer .footer-wrap .footer-socials .ig-icon svg rect,
.site-footer .footer-wrap .footer-socials .ig-icon svg circle {
  stroke-width: 2.2;
}
.site-footer .footer-wrap .footer-socials {
  /* bilo 2 */
}
.site-footer .footer-wrap .footer-socials .ig-icon svg circle:last-of-type {
  /* tačka */
}
.site-footer .footer-wrap .footer-socials {
  /* IG hover -> gradient na stroke + tački */
}
.site-footer .footer-wrap .footer-socials .ig-icon:hover svg rect,
.site-footer .footer-wrap .footer-socials .ig-icon:hover svg circle {
  stroke: url(#igGradient-1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-wrap .footer-socials .ig-icon:hover svg circle:last-of-type {
  fill: url(#igGradient-1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width: 768px) {
  .site-footer .footer-wrap .footer-nav,
  .site-footer .footer-wrap .footer-faq,
  .site-footer .footer-wrap .footer-tos {
    display: none;
  }
}
.site-footer .footer-wrap .footer-nav ul li,
.site-footer .footer-wrap .footer-faq ul li,
.site-footer .footer-wrap .footer-tos ul li {
  margin-bottom: 10px;
}
.site-footer .footer-wrap .footer-nav ul li a,
.site-footer .footer-wrap .footer-faq ul li a,
.site-footer .footer-wrap .footer-tos ul li a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  line-height: 1;
  color: #fff;
  display: block;
}
@media (max-width: 1000px) {
  .site-footer .footer-wrap .footer-nav ul li a,
  .site-footer .footer-wrap .footer-faq ul li a,
  .site-footer .footer-wrap .footer-tos ul li a {
    margin-left: 55px;
  }
}
.site-footer .footer-wrap .footer-nav ul li:hover a,
.site-footer .footer-wrap .footer-faq ul li:hover a,
.site-footer .footer-wrap .footer-tos ul li:hover a {
  color: var(--brand-gold);
}
.site-footer .footer-contact-desktop {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto 40px;
}
@media (max-width: 1000px) {
  .site-footer .footer-contact-desktop {
    display: none;
  }
}
.site-footer .footer-contact-desktop .action-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 1200px) {
  .site-footer .footer-contact-desktop .action-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.site-footer .footer-contact-desktop .action-wrap .footer-contact-action a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  color: #fff;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .footer-contact-desktop .action-wrap .footer-contact-action a:hover {
  color: var(--brand-gold);
}
.site-footer .footer-contact-desktop .company-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  gap: 30px;
}
.site-footer .footer-contact-desktop .company-wrap span {
  color: #fff;
}
.site-footer .site-info {
  background-color: var(--brand-gold);
  padding: 16px 0;
}
@media (max-width: 365px) {
  .site-footer .site-info {
    padding-bottom: 10px;
  }
}
.site-footer .site-info .site-info-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-footer .site-info .site-info-wrap .copyright {
  color: var(--bg-primary);
  margin: 0;
  font-size: 14px;
  padding-top: 3px;
}
@media (max-width: 768px) {
  .site-footer .site-info .site-info-wrap .copyright {
    margin: 0 auto;
  }
}
.site-footer .site-info .site-info-wrap .copyright a {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.site-footer .site-info .site-info-wrap .copyright a:hover {
  color: #000;
}
.site-footer .site-info .site-info-wrap .copyright span a {
  color: #000;
  font-weight: 500;
}
@media (max-width: 380px) {
  .site-footer .site-info .site-info-wrap .copyright span {
    font-size: 12px;
    display: block;
    text-align: center;
  }
  .site-footer .site-info .site-info-wrap .copyright span a {
    font-size: 14px;
  }
}
.site-footer .site-info .site-info-wrap .site-bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .site-footer .site-info .site-info-wrap .site-bank {
    display: none;
  }
}
.site-footer .site-info .site-info-wrap .site-bank img {
  width: 34px;
  height: 24px;
}

/* SCSS kod za plutajuće dugme */
.fab-call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #C69B3C;
  color: white;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  text-decoration: none;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
  -webkit-animation: pulse-ring 2s infinite ease-in-out;
          animation: pulse-ring 2s infinite ease-in-out;
}
.fab-call-btn:hover {
  background-color: #C69B3C;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.fab-call-btn svg {
  margin-top: -2px;
  -webkit-animation: ring-shake 2s infinite 0.5s;
          animation: ring-shake 2s infinite 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 600px) {
  .fab-call-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }
}

/* ISPRAVLJENA ANIMACIJA (IDE SAMO KA SPOLJA I FEJDUJE) */
@-webkit-keyframes pulse-ring {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(198, 155, 60, 0.7);
            box-shadow: 0 0 0 0 rgba(198, 155, 60, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(198, 155, 60, 0);
            box-shadow: 0 0 0 20px rgba(198, 155, 60, 0);
  }
}
@keyframes pulse-ring {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(198, 155, 60, 0.7);
            box-shadow: 0 0 0 0 rgba(198, 155, 60, 0.7);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(198, 155, 60, 0);
            box-shadow: 0 0 0 20px rgba(198, 155, 60, 0);
  }
}
/* Animacija za tresenje slušalice (ikone) */
@-webkit-keyframes ring-shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  1% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  3% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  5% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  7% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  9% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes ring-shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  1% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  3% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  5% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  7% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  9% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  20% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: #C69B3C transparent;
}

body,
html {
  height: 100%;
}
body:focus-within, body:focus-visible, body:active, body:focus, body:target,
html:focus-within,
html:focus-visible,
html:active,
html:focus,
html:target {
  outline: none;
}
@media (max-width: 600px) {
  body,
  html {
    min-height: 100dvh;
  }
}

::-webkit-scrollbar-track {
  background: transparent;
}

body {
  scrollbar-gutter: stable both-edges;
  font-family: "Artegra Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.highlighted {
  color: var(--brand-gold);
  font-weight: 700;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.28s ease;
  transition: background-size 0.28s ease;
}
.highlighted:hover {
  background-size: 100% 2px;
  cursor: pointer;
}

.nn-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 28px 10px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-filter 0.15s ease;
  line-height: 1;
  background: var(--brand-gold);
  color: #fff;
  margin: 0 auto;
}
.nn-btn:hover {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.nn-title {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.nn-title::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 5px;
  background-color: var(--brand-gold);
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.breadcrumbs .crumbs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.breadcrumbs .crumbs-wrap a,
.breadcrumbs .crumbs-wrap span {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin: 0 5px;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 640px) {
  .breadcrumbs .crumbs-wrap a,
  .breadcrumbs .crumbs-wrap span {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .breadcrumbs .crumbs-wrap a,
  .breadcrumbs .crumbs-wrap span {
    font-size: 14px;
  }
}
.breadcrumbs .crumbs-wrap a:hover {
  color: var(--brand-gold);
}

.site-main {
  overflow: auto;
  overflow-x: hidden;
}
/*# sourceMappingURL=main.css.map */
