@charset "UTF-8";
/* =========================================
   Opel Paušál – style.scss (kompletní)
   ========================================= */
/* Volitelné: font-face */
/*
@font-face{
  font-family: "OpelNextW05-Bold";
  src: url("/assets/fonts/OpelNextW05-Bold.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "OpelNextW05-Bold";
  src: url("/assets/fonts/OpelNextW05-Bold-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*/
@font-face {
  font-family: "OpelNextW05-Regular";
  src: url("/fonts/OpelNextW05-Regular.woff2") format("woff2"), url("../fonts/OpelNextW05-Regular.woff") format("woff");
}
@font-face {
  font-family: "OpelNextW05-Light";
  src: url("/fonts/OpelNextW05-Light.woff2") format("woff2"), url("../fonts/OpelNextW05-Light.woff") format("woff");
}
@font-face {
  font-family: "OpelNextW05-Bold";
  src: url("/fonts/OpelNextW05-Bold.woff2") format("woff2"), url("../fonts/OpelNextW05-Bold.woff") format("woff");
}
:root {
  --bg: #fff;
  --text: #101114;
  --muted: #5b5f6a;
  --line: rgba(16, 17, 20, 0.12);
  --yellow: #f7ff14;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --gap: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1120px;
}

/* ====== Base ====== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: #f5f5f5 !important;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "OpelNextW05-Regular", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height: 1.45;
}
body.menu-open .menu-panel {
  display: block;
}
body.menu-open .hamburger span {
  background: transparent;
}
body.menu-open .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
body.menu-open .hamburger span::after {
  top: 0;
  transform: rotate(-45deg);
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.bg_white {
  background-color: #ffffff;
}

/* Layout container */
.container {
  padding: 0 !important;
  margin: 0 auto;
  background-color: #ffffff;
}

/* Typography sections */
.section {
  padding: 26px 0;
}
.section .section-title {
  margin: 0 0 10px;
  font-size: 24px;
  text-align: center;
}
.section .section-sub {
  margin: 0 auto 18px;
  max-width: 820px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ====== Buttons ====== */
.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700 !important;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.2s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
}
.btn.btn--primary {
  background: #f7ff14;
  border-color: #000000;
  border-radius: 150px;
  padding: 0.5rem 4rem;
}
.btn.btn-full {
  width: 100%;
}
.btn.btn--small {
  width: 100%;
  padding: 9px 12px;
  font-size: 12px;
  box-shadow: none;
}

/* =========================================
   Header: logo/brand + menu + hamburger
   ========================================= */
.site-header {
  /*position: sticky;
  top: 0;
  z-index: 50;*/
  padding: 0 2rem;
}
.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}
.site-header {
  /* Logo / brand */
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}
.site-header .brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), #fff6a6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.site-header .brand .brand-title strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.site-header .brand .brand-title span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.site-header {
  /* Desktop nav */
}
.site-header .nav {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.site-header .nav div {
  display: flex;
  flex-direction: row;
}
.site-header .nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.site-header .nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}
.site-header .header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-header {
  /* Hamburger */
}
.site-header .hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-header .hamburger span {
  width: 18px;
  height: 2px;
  background: #111;
  position: relative;
  display: block;
}
.site-header .hamburger span::before, .site-header .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #111;
  transition: transform 0.25s var(--ease), top 0.25s var(--ease);
}
.site-header .hamburger span::before {
  top: -6px;
}
.site-header .hamburger span::after {
  top: 6px;
}
.site-header {
  /* Mobile menu panel */
}
.site-header .menu-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 0 16px;
}
.site-header .menu-panel a {
  display: block;
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
}
.site-header .menu-panel a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}
@media (max-width: 920px) {
  .site-header .nav {
    display: none;
  }
  .site-header .hamburger {
    display: flex;
  }
  .site-header .brand {
    min-width: auto;
  }
}

/* =========================================
   Hero
   ========================================= */
.hero {
  padding: 14px 2rem;
}
.hero .hero-image {
  overflow: hidden;
}
.hero .hero-image img {
  width: 100%;
  display: block;
}

/* =========================================
   Intro (žluté pozadí)
   ========================================= */
.intro {
  padding: 26px 0;
}
.intro.intro--yellow {
  background: #f7ff14;
}
.intro .intro-grid {
  display: flex;
  gap: var(--gap);
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.intro .intro-copy {
  width: 100%;
  text-align: center;
  padding: 0 6rem;
}
.intro .intro-copy h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  text-align: center;
  font-weight: 700;
}
.intro .intro-copy p {
  font-size: 16px;
}
.intro .intro-copy .intro-cta {
  text-align: center;
}
.intro .intro-bullets {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 60px;
}
.intro .intro-bullets .intro-bullet {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
}
.intro .intro-bullets .intro-bullet strong {
  display: block;
  font-size: 16px;
}
.intro .intro-bullets .intro-bullet span {
  display: block;
  font-size: 16px;
  margin-top: 4px;
}
.intro ol,
.intro ul {
  display: inline-block;
  text-align: left;
}
.intro .left {
  text-align: left;
}
@media (max-width: 980px) {
  .intro .intro-copy h1 {
    font-size: 24px;
  }
}

/* =========================================
   Models grid (3 sloupce -> detail 1 karta)
   ========================================= */
.models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  align-items: stretch;
}
.models-grid .model-card {
  flex: 1 1 calc(33.333% - var(--gap));
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.models-grid .model-card .model-media {
  background: radial-gradient(480px 160px at 35% 35%, rgba(0, 0, 0, 0.08), transparent 60%);
  padding: 16px 16px 0;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.models-grid .model-card .model-media img {
  width: 100%;
  max-height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
.models-grid .model-card .model-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.models-grid .model-card .model-body .model-title strong {
  display: block;
  font-size: 16px;
}
.models-grid .model-card .model-body .model-title span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.models-grid .model-card .model-body .model-price {
  color: var(--muted);
  font-size: 13px;
}
.models-grid .model-card .model-body .model-price b {
  color: var(--text);
  font-size: 18px;
}
.models-grid .model-card .model-body .model-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.models-grid .model-card .model-body .model-cta.model-cta--detail {
  display: none;
}
.models-grid .model-card .model-body .model-cta .btn--primary {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Detail režim: bez návratu */
.page.is-detail .model-card:not(.is-selected) {
  display: none; /* dle zadání: ostatní pryč */
}
.page.is-detail .model-card.is-selected {
  flex: 1 1 100%;
  max-width: 100%;
  min-height: unset;
}
.page.is-detail .model-card.is-selected .model-title,
.page.is-detail .model-card.is-selected .model-price,
.page.is-detail .model-card.is-selected .model-cta--intro {
  display: none;
}
.page.is-detail .model-card.is-selected .model-cta--detail {
  display: flex !important;
}
.page.is-detail .model-card.is-selected {
  /* „Obrázek přes celou šířku“ – karta je full width, zvětšíme hero část */
}
.page.is-detail .model-card.is-selected .model-media {
  min-height: 320px;
  padding: 18px;
}
.page.is-detail .model-card.is-selected .model-media img {
  max-height: 420px;
  border-radius: calc(var(--radius) + 8px);
}

/* =========================================
   Finance screen
   ========================================= */
.finance-screen {
  margin-top: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  background: #fff;
  overflow: hidden;
}
.finance-screen .finance-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(242, 229, 0, 0.35);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
.finance-screen .finance-head .finance-head-left strong {
  display: block;
  font-size: 14px;
}
.finance-screen .finance-head .finance-head-left span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.finance-screen .pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.finance-screen .pills .pill {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.finance-screen .pills .pill:hover {
  transform: translateY(-1px);
}
.finance-screen .pills .pill.is-active {
  background: var(--yellow);
}
.finance-screen .filter-row {
  display: flex;
  gap: var(--gap);
  padding: 14px 16px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.finance-screen .filter-row .filter-label {
  flex: 0 0 280px;
  font-weight: 800;
  font-size: 13px;
  padding-top: 6px;
}
.finance-screen .filter-row .filter-control {
  flex: 1 1 520px;
  min-width: 280px;
}
.finance-screen .slider-wrap {
  position: relative;
  padding-top: 8px;
}
.finance-screen .slider-wrap .slider-hit {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 44px;
  z-index: 1;
  background: transparent;
}
.finance-screen .slider-wrap input[type=range] {
  position: relative;
  z-index: 2;
}
.finance-screen .slider-wrap .slider-bubble {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
  z-index: 3;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  touch-action: none;
}
.finance-screen .slider-wrap .slider-bubble:active {
  cursor: grabbing;
}
.finance-screen .slider-wrap .slider-bubble::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: -10px;
  bottom: -10px;
  background: transparent;
}
.finance-screen .slider-wrap .slider-marks {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}
.finance-screen .slider-wrap .slider-mark {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: auto;
  cursor: pointer;
}
.finance-screen .slider-wrap .slider-mark::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  background: transparent;
}
.finance-screen .slider-wrap .slider-label {
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
  font-size: 12px;
  line-height: 1;
  opacity: 0.75;
  pointer-events: auto;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.finance-screen .slider-wrap .slider-label::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -8px;
  bottom: -8px;
  background: transparent;
}
.finance-screen .slider-wrap .slider-trackline {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.finance-screen .slider-wrap input[type=range] {
  width: 100%;
  margin: 10px 0 0;
  accent-color: #111;
}
.finance-screen .slider-wrap .slider-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  margin-top: 6px;
}
.finance-screen .cards-row {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  align-items: stretch;
}
.finance-screen .cards-row .pay-card {
  flex: 1 1 170px;
  max-width: 190px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.finance-screen .cards-row .pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.finance-screen .cards-row .pay-card .pay-badge {
  width: 100%;
  border-radius: 999px;
  background: var(--yellow);
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-align: center;
  font-weight: 950;
  padding: 8px 10px;
}
.finance-screen .cards-row .pay-card .pay-meta {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.finance-screen .cards-row .pay-card .pay-meta b {
  color: var(--text);
}
.finance-screen .cards-row .pay-card .pay-cta {
  width: 100%;
}

/* =========================================
   Form placeholder
   ========================================= */
.form-shell {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  padding: 16px;
  background: #fff;
  min-height: 220px;
}
.form-shell .form-hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background-color: #f5f5f5 !important;
}
.site-footer .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 2rem 1rem 2rem 1rem;
}
.site-footer .footer-left strong {
  display: block;
  font-size: 14px;
}
.site-footer .footer-left span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.site-footer .footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer .footer-nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.site-footer .footer-nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 989px) {
  .intro .intro-copy {
    padding: 0;
  }
  .models-grid .model-card {
    flex: 1 1 calc(50% - var(--gap));
  }
  .finance-screen .filter-row .filter-label {
    flex: 1 1 100%;
    padding-top: 0;
  }
  .finance-screen .filter-row .filter-control {
    flex: 1 1 100%;
  }
}
@media (max-width: 770px) {
  .site-header .header-row {
    flex-direction: row-reverse;
  }
  .btn.btn--primary {
    padding: 0.5rem 1rem;
  }
  .intro .intro-copy {
    padding: 0;
  }
  .models-grid .model-card {
    flex: 1 1 100%;
    flex-direction: row;
    align-items: start;
    min-height: initial;
  }
  .models-grid .model-card .model-media {
    min-height: initial;
  }
  .models-grid .model-card .model-body {
    min-height: initial;
  }
  .finance-screen .cards-row {
    justify-content: center;
  }
  .finance-screen .cards-row .pay-card {
    max-width: unset;
  }
}
@media (max-width: 350px) {
  .intr .intro-copy {
    padding: 0;
  }
  .intr .intro-copy .intro-bullets {
    flex-direction: column;
  }
  .models-grid .model-card {
    flex: 1 1 100%;
    flex-direction: column;
    min-height: initial;
  }
  .models-grid .model-card .model-media {
    min-height: initial;
  }
  .models-grid .model-card .model-body {
    min-height: initial;
  }
  .finance-screen .cards-row {
    justify-content: center;
  }
  .finance-screen .cards-row .pay-card {
    max-width: unset;
  }
}
.form-container form fieldset .form-section-flex .formEl {
  width: 48%;
}

.form-container form fieldset .form-section-flex .formEl .multiselect-placeholder {
  display: inherit !important;
}

#field-source {
  display: none !important;
}

#field-service_code {
  display: none !important;
}

#source {
  display: none !important;
}

#service_code {
  display: none !important;
}

#dealerSelect {
  max-width: initial !important;
}

#field-agreement {
  max-width: initial !important;
}

.form-control {
  border-radius: 5px !important;
}/*# sourceMappingURL=style.css.map */