/* RESET / BASE */

:root {
  /* colors */
  --color-red: #dc2626;
  --color-white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #f9fafb;
  color: #111111;
}

app-root {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

ul li {
}

h2.main {
  font-size: 35px;
  font-weight: 700;
  margin: 0px;
  margin-bottom: 5px;
}

h3.main {
  margin: 0px;
  text-align: center;
  font-weight: normal;
  margin-bottom: 35px;
  font-size: 20px;
}

/* WRAPPER */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header .header-logo {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.header .header-logo img {
  width: 200px;
}

.header .header-nav {
  flex: 1;
}

.header .header-nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

.header .header-nav-list li a {
  padding: 4px 0;
  font-size: 15px;
  color: #0a0a0a;
}

.header .header-nav-list li a:hover {
  color: #d41623;
}

.header .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .header-actions .header-profile {
  display: flex;
  align-items: center;
  padding: 0;
  background: none;
}

.header .header-actions .header-profile:hover {
  opacity: 0.7;
}

.header-login {
  font-size: 14px;
  background-color: var(--color-red);
  color: var(--color-white);
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 700;
}

.header-login:hover {
  opacity: 0.8;
}

.header .header-change-language {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  background: none;
  font-size: 14px;
}

.header .header-primary-btn {
  background-color: #d41623;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

/* HERO */
.hero {
  position: relative;
  padding: 40px 0 60px 0;
  background-color: #111111;
  color: #ffffff;
  height: 540px;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero .hero-inner {
  position: relative;
  width: 1300px;
  margin: 0 auto;
  padding: 24px 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 100%;
}

.hero .hero-title {
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  margin-top: 75px;
}

.hero .hero-title span {
  color: var(--color-red);
}

.hero .hero-subtitle {
  font-size: 24px;
  text-align: center;
}

/* HERO SEARCH */
.hero-search {
  margin-top: 18px;
  background-color: #ffffff;
  color: #111111;
  border-radius: 12px;
  padding: 16px 16px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  width: 1300px;
  margin: 0 auto;
  max-width: 100%;
  margin-top: -100px;
  z-index: 1;
  position: relative;
}

.hero-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-search-row .single-row {
  width: 100%;
  display: flex;
  gap: 15px;
}

.hero-search-row .hero-field-group {
  flex: 1;
  display: flex;
  gap: 15px;
}

.hero-search .hero-field {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.hero-search .hero-field label {
}

.hero-search .hero-field select,
.hero-search .hero-field input {
  border-radius: 8px;
  border: 1px solid #dddddd;
  padding: 6px 8px;
  font-size: 13px;
}

.hero-search .hero-search-buttons {
  /* display: flex; */
  gap: 10px;
  padding-top: 10px;
  margin-top: 10px;
  width: 100%;
  justify-content: space-between;
}

.hero-search .hero-search-buttons button {
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-right: 15px;
  color: #111111;
}

.hero-search .hero-search-buttons .hero-btn-primary {
  background-color: #d41623;
  color: #ffffff;
  border-radius: 999px;
  padding: 0 20px;
  font-size: 16px;
  margin-right: 0;
  height: 40px;
  border-radius: 8px;
  font-weight: 700;
}

.hero-search .hero-search-buttons .categories-box {
  display: flex;
  /* overflow: scroll; */
  flex-wrap: wrap;
  gap: 7px;
  border-bottom: 1px solid #d3d7df;
  padding-bottom: 15px;
  margin-bottom: 10px;
  flex-direction: row;
}

.hero-search .hero-search-buttons .categories-box.categories-box_hr button {
  padding: 0 19px;
}

.hero-search .last-100 {
  background: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 15px;
  border: 1px solid #d41623;
  color: #d41623;
  border-radius: 999px;
  padding: 0 20px;
  margin-right: 10px;
  height: 40px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-search .last-100:hover {
  opacity: 0.8;
}

.hero-search .last-100 img {
  width: 20px;
}

.hero-search .last-100:hover img {
}

.hero-search .hero-search-buttons .categories-box .categories-box-inner {
}

.hero-search .hero-search-buttons .categories-box button {
  height: 36px;
  background-color: #f3f4f6;
  padding: 0 23px;
  border-radius: 8px;
  display: flex;
  font-size: 12px;
  margin: 0;
  border: 1px solid #d3d7df;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  color: #111111;
  width: max-content;
  font-weight: 700;
}

.hero-search .hero-search-buttons .categories-box button img {
  width: 22px;
  height: auto;
  /* height: 16px; */
}

.hero-search .hero-search-buttons .categories-box button.active-nav-btn {
  background-color: #fbe9e9;
  font-weight: 700;
  border: 1px solid #d41623;
  color: #d41623;
}

.hero-search .hero-search-buttons .categories-box button.active-nav-btn img {
  filter: invert(25%) sepia(80%) saturate(6385%) hue-rotate(347deg) brightness(83%) contrast(100%);
}

.hero-search .hero-search-buttons .categories-box button:hover {
  opacity: 0.7;
}

.hero-search .hero-search-buttons .buttons-box {
  flex: auto;
  display: flex;
  justify-content: flex-end;
}

.hero-search .hero-search-buttons .buttons-box a.hero-btn-more {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 15px;
}

/* GENERIC SECTION WRAPPER */
.site-main > section {
  padding: 40px 0;
}

/* VEHICLE (PREJ ADS) */
.vehicle {
  padding-top: 70px;
}
.vehicle .vehicle-inner {
}

.vehicle .vehicle-title {
  text-align: center;
}

.vehicle .vehicle-subtitle {
  font-size: 13px;
  color: #666666;
}

.vehicle .vehicle-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
  height: 36px;
  background-color: #ececf0;
  border-radius: 14px;
  padding: 0 7px;
  margin-bottom: 30px;
}

.vehicle .vehicle-tab {
  padding: 6px 14px;
  border-radius: 14px;
  font-size: 16px;
  color: #333333;
}

.vehicle .vehicle-tab.active {
  background-color: #111111;
  color: #ffffff;
}

.vehicle-grid {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* kartice so 3 v vrsti na desktopu, 2 na tablet, 1 na mobitelu */
.vehicle-card {
  background-color: #ffffff;
  border-radius: 14px;
  max-width: 312px;
  /* samo placeholder */
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  flex: 1;
  width: 100%;
  flex: 1;
  max-width: 100%;
  padding: 15px;
  /* flex: 0 0 33%; */
}

.vehicle-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin: 0px;
  margin-left: 20px;
}

.vehicle-card .vehicle-card-inner {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
}

.vehicle-card .img-box {
  height: 210px;
  overflow: hidden;
}

.vehicle-card .img-box .new-tag {
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  background-color: #ffc900;
  width: max-content;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-card .img-box .priority-tag {
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  background-color: #db2627;
  width: max-content;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.vehicle-card .img-box .sold-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  background-color: #dc2627;
  width: max-content;
  padding: 5px 17px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.vehicle-card .img-box .sold-tag:before {
  content: '';
  display: block;
}

.vehicle-card .img-box img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  height: 90%;
  width: 90%;
  border-radius: 14px;
}

.vehicle-card .content {
  padding: 0px 20px;
  padding-right: 0;
}

.vehicle-card .content h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0px;
}

.vehicle-card .content .specs {
  margin-top: 18px;
  font-size: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
}

.vehicle-card .content .specs .spec {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 8px;
  flex: 1;
}

.vehicle-card .content .specs .spec img {
  width: 18px;
}

/*.vehicle-card .content .specs .spec .label{
    color: #4A5565;
}*/

.vehicle-card .content .specs .spec .value {
  float: right;
  text-align: right;
  position: absolute;
  right: 0;
  font-weight: 700;
}

.vehicle-card .content .price {
  font-weight: 700;
  font-size: 22px;
  color: var(--color-red);
}

.vehicle-card.sold-card .img-box img {
  opacity: 0.3;
}

.vehicle-card .img-box .sold-tag {
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: 1;
  background-color: #dc2627;
  color: #ffffff;
  width: max-content;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vehicle-card.vehicle-card-company {
  padding: 0px;
}

.vehicle-card.vehicle-card-company .content {
  padding: 20px;
}

.vehicle-card.vehicle-card-company .img-box {
  height: 160px;
}

.vehicle-card.vehicle-card-company .img-box img {
  border-radius: 0px;
  width: 100%;
  height: 100%;
}

.vehicle-card.vehicle-card-company .content .price {
  border-top: 1px solid #e5e7eb;
  margin-top: 15px;
  padding-top: 15px;
}

.vehicle .vehicle-more {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.vehicle .vehicle-more-btn {
  padding: 0px 17px;
  border-radius: 8px;
  font-size: 14px;
  background-color: #ffffff;
  height: 40px;
  border: 1px solid #e5e7eb;
  margin-top: 20px;
}

/* BRANDS */
.brands {
  margin-top: 100px;
  background-color: #020304;
  padding-top: 50px;
  padding-bottom: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.brands .brands-inner {
  display: flex;
  flex-direction: column;
}

.brands .brands-inner h3 {
  color: #ffffff;
}

.brands .brands-title {
  text-align: center;
  color: #ffffff;
}

.brands .brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.brands .brands-item {
  min-height: 60px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
}

.brands .brands-item .img-box {
  border-radius: 50%;
  border: 1px solid #e6e7eb;
  background-color: #ffffff;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.brands .brands-item img {
  max-height: 80%;
  max-width: 80%;
}

.brands .brands-item h4 {
  font-size: 18px;
  font-weight: 700;
}

.brands .brands-item .number {
  margin-top: 5px;
  color: #6a7282;
  font-size: 14px;
}

.brands .brands-more {
  margin-top: 8px;
  font-size: 13px;
  color: #d41623;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin: 0 auto;
  margin-top: 20px;
}

/* SHAPES */

.shapes {
  margin-top: 100px;
}
.shapes .shapes-inner {
  display: flex;
  flex-direction: column;
}

.shapes .shapes-title {
  text-align: center;
}

.shapes .shapes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shapes .shapes-item {
  min-height: 60px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 0px;
  margin-top: 70px;
}

.shapes .shapes-item img {
  /* width: 120px; */
  max-height: 180px;
  max-width: 100%;
  margin-top: -65px;
}

.shapes .shapes-item h4 {
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: 700;
}

.shapes .shapes-item .number {
  margin-top: 5px;
  color: #6a7282;
  font-size: 14px;
}

.shapes .shapes-more {
  margin-top: 8px;
  font-size: 13px;
  color: #d41623;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin: 0 auto;
  margin-top: 20px;
}

/* ABOUT */
.about {
  background-color: var(--color-white);
  padding: 130px 0px;
}
.about .about-inner {
  display: flex;
  gap: 32px;
  align-items: center;
}

.about .about-gallery {
  display: flex;
  gap: 12px;
  flex: 0 0 40%;
  flex-wrap: wrap;
}

.about .about-img {
  background-color: #dddddd;
  border-radius: 12px;
  width: 228px;
  height: 228px;
  flex: 0 0 48%;
}

.about .about-content {
  /* flex: 0 0 60%; */
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.about .about-title {
  margin-bottom: 20px;
  max-width: 80%;
  margin: 0 auto;
}

.about .about-text {
  font-size: 16px;
  color: #4a5565;
  margin-bottom: 30px;
  line-height: 22px;
}

.about .about-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px;
}

.about .about-stat {
  min-height: 60px;
  border-radius: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  text-align: left;
}

.about .about-stat .img-box {
  background-color: #fce9e9;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.about .about-stat .img-box img {
}

.about .about-stat .content {
  color: #4a5565;
  font-size: 14px;
  line-height: 22px;
}

.about .about-stat .content .number {
  font-size: 24px;
  color: #111111;
  font-weight: 700;
}

.about .about-stat .content .value {
}

/* LATEST VEHICLES */
.latest {
  padding-top: 80px;
  padding-bottom: 80px;
}
.latest .latest-inner {
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 18px; */
}

.latest .latest-title {
  text-align: center;
}

.latest .latest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.latest .latest-card {
  flex: 1 1 260px;
  max-width: 32%;
  min-height: 220px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* TEAM */
.team {
  padding-top: 80px;
  padding-bottom: 80px;
}
.team .team-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team .team-title {
  text-align: center;
}

.team .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  justify-content: center;
}

.team .team-member {
  flex: 0 0 25%;
  min-height: 200px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 30px;
}

.team .team-member .img-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.team .team-member .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.team .team-member .content {
}

.team .team-member .content h4 {
  font-size: 20px;
  margin-top: 20px;
}

.team .team-member .content h5 {
  font-size: 16px;
  color: var(--color-red);
  font-weight: normal;
  margin-bottom: 20px;
}

.team .team-member .content .extra {
  color: #4a5565;
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
  line-height: 22px;
}

.team .team-member .content .social {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.team .team-member .content .social a {
  width: 38px;
  height: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .content .social a img {
}

/* NEWSLETTER */
.newsletter {
  background-color: #9f0712;
  color: #ffffff;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.newsletter .newsletter-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter .newsletter-inner .img-box {
  background-color: #b44646;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter .newsletter-inner .img-box img {
}

.newsletter .newsletter-title {
}

.newsletter .newsletter-subtitle {
  font-size: 20px;
  width: 60%;
  margin-bottom: 15px;
}

.newsletter .newsletter-form {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.newsletter .newsletter-form input[type='email'] {
  padding: 0 20px;
  border-radius: 8px;
  border: none;
  width: 440px;
  font-size: 14px;
  height: 48px;
  max-width: 100%;
}

.newsletter .newsletter-form button {
  border-radius: 8px;
  color: var(--color-white);
  font-size: 14px;
  height: 48px;
  padding: 0 35px;
  background-color: #101828;
}

.newsletter-inner .extra {
  font-size: 12px;
  color: #d2cccc;
}

.newsletter-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* FOOTER */
.footer {
  background-color: #050706;
  color: #ffffff;
  padding-top: 70px;
}

.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 50px;
}

.footer .footer-col {
  flex: 1;
  min-height: 80px;
  font-size: 13px;
}

.footer .footer-col .footer-col-inside {
  display: flex;
  gap: 40px;
}

.footer .footer-col .footer-col-inside .footer-col-inside-col {
  flex: 1;
}

.footer .footer-bottom {
  border-top: 1px solid #333333;
  font-size: 12px;
  color: #aaaaaa;
  padding: 10px 10px;
  text-align: center;
}

.footer .footer-col label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.footer .footer-col ul li {
  margin-bottom: 8px;
}

.footer .footer-col ul li a {
  color: #d1d5dc;
  transition: 0.3s;
}

.footer .footer-col ul li a:hover {
  color: var(--color-red);
}

.footer ul.social {
  display: flex;
  gap: 10px;
}

.footer ul.social a {
}

.footer ul.social a img {
  width: 20px;
}

.footer .company-data {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.footer .company-data li {
}

.footer .company-data li:first-of-type {
  font-weight: 700;
}

.footer-info {
  margin-top: 50px;
  display: flex;
  gap: 80px;
}

.footer-info-single {
  /* flex: 1; */
}

.footer-info-single label {
}

.container {
  width: 1300px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0px;
}

.requiredInput input,
.requiredInput select,
.requiredInput textarea {
  border: 1px solid red !important;
}

.products-page {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
}

.products-page .hero-search-box {
  flex: 0 0 28%;
  width: 28%;
}

.products-page .hero-search {
  margin: 0px;
  box-shadow: none;
  border: 1px solid #e5e7eb;
  height: fit-content;
  margin-bottom: 15px;
  z-index: unset;
}

.products-page .products-box {
  flex: auto;
  width: 80%;
}

.products-page .vehicle-card {
  flex: auto;
  width: 100%;
}

.products-page .vehicle-grid {
  justify-content: left;
}

/* CUSTOM CHECKBOX */

.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 10px;
  font-size: 14px;
}

.container-checkbox a {
  color: #dc2627;
}

.profile .cards-box .card-inner form label {
  font-size: 14px;
}

.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container-checkbox .checkmark-checkbox {
  position: absolute;
  top: -5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #f3f3f5;
  border-radius: 6px;
  border: 1px solid #d3d7df;
}

.checkmark-checkbox:after {
  content: '';
  position: absolute;
  display: none;
}

.container-checkbox input:checked ~ .checkmark-checkbox:after {
  display: block;
}

.container-checkbox .checkmark-checkbox:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 14px;
  border: solid #0a0a0a;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

form input {
  position: relative;
  display: flex;
  align-items: center;
  background: #f3f3f5;
  border-radius: 8px;
  height: 40px;
  border: none;
  padding: 0 15px;
  width: 100%;
  font-size: 14px;
}

.steps-input {
  height: 40px;
}

.footer .logo-brand img {
  max-width: 200px;
  margin: 0 auto;
}

.single-page {
}

.single-page h1 {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

.single-page .container {
  width: 1000px;
  max-width: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 40px;
}

.single-page .body {
  font-size: 16px;
}

.footer .footer-inner.footer-inner-second {
  margin-top: -100px;
}

.footer .footer-inner.footer-inner-second li {
  margin-bottom: 0px;
}

.footer .footer-inner.footer-inner-second li a {
  font-size: 16px;
  color: #ffffff;
}

/* news */

.news-page .main_content {
  padding-top: 50px;
  padding-bottom: 70px;
}

.news-page h1 {
  font-size: 35px;
  font-weight: 700;
}

.news-page .header h2 {
  font-size: 20px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 65%;
  font-weight: normal;
}

.news-page .header {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 60px;
  background-color: #ffffffd1;
  position: relative;
  z-index: unset;
}

.breadcrumb {
  background: none;
  padding: 0px;
  margin: 0;
  margin-bottom: 40px;
  font-size: 12px;
  margin-top: 14px;
  text-transform: uppercase;
}

.breadcrumb img {
  width: 12px;
  margin: 0 4px;
  margin-top: -2px;
}

.breadcrumb li {
}

.breadcrumb li a {
  display: flex;
}

.news_card {
  border-radius: 5px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 33px #7891a93b;
  margin-bottom: 25px;
  display: block;
}

.news_card .bg {
  height: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.news_card .content {
  padding: 20px;
}

.news_card .content h3 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.news_card .content .short {
  font-size: 14px;
}

.news_card .content .more {
  text-align: right;
  text-decoration: underline;
  margin-top: 12px;
  font-size: 12px;
}

.news_card .date {
  background-color: #dc2627;
  width: max-content;
  position: absolute;
  font-size: 12px;
  padding: 2px 10px;
  bottom: 4px;
  right: 4px;
  font-weight: 700;
  color: #ffffff;
}

.news-single-page .main-img {
  width: 100%;
  height: auto;
}

.news-single-page .external-source {
  font-size: 12px;
  margin-top: 5px;
}

.news-container .text {
  margin-top: 30px;
}

.news-single-page .container {
  width: 1100px;
  max-width: 100%;
}

.news-page.news-single-page .header {
  padding: 0;
  min-height: unset;
  height: unset;
  padding-top: 80px;
  border: none;
  padding-bottom: 15px;
}

.news-page.news-single-page h1 {
  margin-bottom: 15px;
  font-size: 40px;
}

.news-page.news-single-page .date-single {
  color: #717182;
  font-size: 14px;
}

.others-news {
  margin-top: 100px;
  background: white;
  padding-top: 50px;
  padding-bottom: 100px;
}
.others-news h2 {
  text-align: center;
}

.others-news h3 {
}

.news-page.news-single-page .header .breadcrumb {
  margin: 0;
}

/* update width */

.hero-search,
.header .header-inner,
.container,
.news-single-page .container {
  width: 1100px;
  max-width: 100%;
}

.products-box .vehicle-card.priority {
  background-color: #f2d3d3;
}

.products-page .vehicle-grid {
  flex-direction: column;
}

.products-box .vehicle-card .img-box {
  width: 37%;
  flex: 0 0 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-box .vehicle-card .img-box img {
  height: 100%;
  width: 100%;
  border-radius: 14px;
}

.products-box .vehicle-card .img-box .new-tag {
  top: 15px;
  left: 15px;
}

.products-box .vehicle-card .content {
  flex: auto;
}

.products-box .vehicle-card .content .vehicle-equipment {
  font-size: 12px;
  margin-top: 10px;
}

.products-page .products-box h1 {
  font-size: 20px;
  font-weight: 700;
}

.products-page .products-box .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-page .products-box .top-header .ordery-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 14px;
}

.products-page .products-box .top-header .title {
}

.products-page .products-box .top-header .title span {
  font-weight: 400;
  font-size: 16px;
}

.products-page .products-box .top-header .ordery-by span {
  min-width: max-content;
}

.products-page .products-box .top-header .ordery-by .hero-field {
}

.products-page .products-box .top-header .ordery-by .select-display {
  background-color: #ffffff;
}

.products-page .products-box .no-results {
  background-color: #ffffff;
  text-align: center;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #e6e7eb;
  border-radius: 12px;
}

/* The container */
.container-radiobox {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container-radiobox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.container-radiobox .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid #e6e7eb;
}

/* On mouse-over, add a grey background color */
.container-radiobox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container-radiobox input:checked ~ .checkmark {
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.container-radiobox .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radiobox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radiobox .checkmark:after {
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111111;
}

.radio-box {
  margin-bottom: 20px;
}

.radio-box .label-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  /* color: #555555; */
}

.wish-list h2 {
  text-align: center;
}

.wish-list .vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wish-list .vehicle-grid .vehicle-card {
  max-width: none;
  width: 100%;
  padding: 0px;
}

.wish-list .vehicle-card .content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}

.wish-list .vehicle-card .specs {
  margin-bottom: 0;
  display: block;
}

.wish-list .vehicle-card .content .bottom-box {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e6e8ee;
}

.wish-list .vehicle-card .vehicle-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.wish-list .vehicle-card .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.products-box .vehicle-card .content .bottom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  margin-top: 18px;
  padding-top: 8px;
}

.products-box .vehicle-card .content .bottom-box .price {
  flex: 0 0 35%;
  border: none;
  margin: 0;
  padding: 0;
}

.products-box .vehicle-card .content .bottom-box .price .old {
  text-decoration: line-through;
  color: #9aa0a6;
  font-weight: 400;
  font-size: 16px;
  margin-right: 5px;
}

.products-box .vehicle-card .content .bottom-box .user-data {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.products-box .vehicle-card .content .bottom-box .user-data .user-img-box {
  width: 50px;
  height: 50px;
  /* background-color: #f9fafc; */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7ea;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 45px;
}

.products-box .vehicle-card .content .bottom-box .user-data .user-img-box img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}

.products-box .vehicle-card .content .bottom-box .user-data p {
  margin: 0px;
  font-size: 12px;
}

.products-box .vehicle-card .content .bottom-box .user-data p .company-location {
  display: block;
  font-size: 12px;
}

.select-row {
  display: flex;
  gap: 10px;
}

.select-row .select-column {
  flex: 1;
}

.brands.shapes {
  margin-bottom: 100px;
}

.js-tab-pane.is-active {
  display: block;
}
.vehicle-tab.active {
  /* tvoj obstojeÃ„Âi stil active */
}

.lang-switch {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  overflow: hidden;
  z-index: 50;
}

.lang-dropdown.is-open {
  display: block;
}

.lang-dropdown a {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration: none;
  color: #111;
  transition: background 0.2s;
}

.lang-dropdown a:hover {
  background: #f5f5f5;
}

.lang-dropdown a.is-active {
  font-weight: 600;
  background: #f0f0f0;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-item {
  position: relative;
}

.header-nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: inherit;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.header-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-nav-link:active {
  transform: translateY(1px);
}

.dd-caret {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  /*  transition:transform .18s ease;*/
  margin-top: -2px;
}

/* DROPDOWN */
.dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: white;
  padding: 15px 20px;
  z-index: 9999;

  /* animacija */
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 22px 20px 3px rgba(0, 0, 0, 0.35);
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition:
    background 0.12s ease,
    transform 0.12s ease;
}

.dd-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(2px);
}

/* OPEN STATE */
.header-nav-item.is-open .dd-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-nav-item.is-open .dd-caret {
  transform: rotate(225deg);
  margin-top: 5px;
}

/* optional: malo Ã¢â‚¬Å“hitboxÃ¢â‚¬Â prostora */
.header-nav-item.has-dd {
  padding-bottom: 6px;
}

.header-nav-item.has-dd.is-open {
  color: #dc2627;
}

.dd-menu .select {
  color: #6a7282;
  font-size: 12px;
  margin-bottom: 10px;
}

.forum-card {
  background-color: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  border: 1px solid #e5e7eb;
  margin-bottom: 15px;
}

.forum-card .img-box {
  height: 158px;
  width: 85%;
  border-radius: 8px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 25px;
}

.forum-card .img-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.forum-card h3 {
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
}

.select-box {
  width: 100%;
}

.select-box label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f2933;
}

.select-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-size: 12px;
  color: #333;
  border-radius: 10px;
  border: 1px solid #d3d7df;
  background-color: #f5f6f8;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%23999' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
  cursor: pointer;
}

.select-box select:focus {
  outline: none;
  border-color: #cfcfcf;
  background-color: #fff;
}

.select-box select:hover {
  border-color: #d5d5d5;
}

.select-box select:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.hero-search-single {
  display: none;
}
.hero-search-single.is-active {
  display: block;
}

.products-page label.label-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #1f2933;
  width: 100%;
}

.vehicle-card .img-box .vp-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
}

.vehicle-card .vp-icon-btn.is-active img {
  filter: saturate(2);
  width: 16px;
  object-fit: unset;
}

.vehicle-card .img-box .vp-icon-btn img {
  width: 16px !important;
  object-fit: unset;
}

.vehicle-card .img-box {
  position: relative;
}

/* SHAPES CAROUSEL */
/* SHAPES CAROUSEL */
.shapes {
  overflow: hidden;
}

.shapes-carousel {
  position: relative;
  width: 100%;
}

.shapes-carousel .carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.shapes-carousel .carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.shapes-carousel .carousel-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-sizing: border-box;
}

.shapes-carousel .carousel-page[data-per-view='1'] {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.shapes-carousel .carousel-page[data-per-view='2'] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shapes-carousel .carousel-page[data-per-view='4'] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shapes-carousel .shapes-item {
  display: block;
  min-width: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.shapes-carousel .shapes-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* arrows */
.shapes-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e8ee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.shapes-carousel .carousel-arrow.prev {
  left: -18px;
}

.shapes-carousel .carousel-arrow.next {
  right: -18px;
}

.shapes-carousel .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.shapes-carousel .carousel-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* dots */
.shapes-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.shapes-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cfd4df;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.shapes-carousel .carousel-dot.is-active {
  width: 28px;
  background: #e31b23;
}

@media (max-width: 1024px) {
  .shapes-carousel .carousel-arrow.prev {
    left: 6px;
  }

  .shapes-carousel .carousel-arrow.next {
    right: 6px;
  }
}

/* BRANDS carousel wrapper */
.brands-carousel {
  position: relative;
  width: 100%;
  margin-top: 24px;
}

/* viewport */
.brands-carousel .carousel-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK: force flex + reset Ã¢â‚¬Å“Ã„ÂudneÃ¢â‚¬Â stile ki povzroÃ„Âijo rezanje */
.brands-carousel .brands-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch;
  gap: 18px;

  margin: 0 !important;
  padding: 0 !important;

  will-change: transform;
  transform: translateX(0);
  transition: transform 280ms ease;
}

/* items: 1/2/4 kot shapes */
.brands-carousel .brands-item {
  flex: 0 0 calc((100% - (var(--gap, 18px) * (var(--perView, 4) - 1))) / var(--perView, 4));
  max-width: calc((100% - (var(--gap, 18px) * (var(--perView, 4) - 1))) / var(--perView, 4));
}

/* Arrows (enako kot shapes) */
.brands-carousel .carousel-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e8ee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.brands-carousel .carousel-arrow.prev {
  left: -18px;
}
.brands-carousel .carousel-arrow.next {
  right: -18px;
}

.brands-carousel .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.brands-carousel .carousel-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Dots */
.brands-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.brands-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cfd4df;
  cursor: pointer;
  padding: 0;
}

.brands-carousel .carousel-dot.is-active {
  width: 28px;
  background: #e31b23;
}

.brands-carousel .carousel-dots {
  display: flex !important;
}

.gsr-wrap {
  /* padding: 0 16px; */
  margin-top: 80px;
}

.gsr-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  isolation: isolate;

  /* viÃ…Â¡ina sliderja */
  min-height: 430px; /* desktop */
}

.gsr-track {
  position: relative;
  width: 100%;
  min-height: inherit;
}

.gsr-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition:
    opacity 0.55s ease,
    transform 0.8s ease;
  min-height: inherit;
}

.gsr-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Klikabilen link preko cele povrÃ…Â¡ine */
.gsr-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  text-decoration: none;
  color: inherit;
}

/* Slika */
.gsr-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s ease;
}

.gsr-slide.is-active .gsr-link img {
  transform: scale(1);
}

/* Lep Ã¢â‚¬Å“shineÃ¢â‚¬Â overlay + hover micro-zoom */
.gsr-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gsr-slider:hover .gsr-slide.is-active .gsr-link img {
  transform: scale(1.02);
}

.gsr-slider:hover .gsr-link::after {
  opacity: 0.75;
}

/* TRANSITION: clip */
[data-transition='clip'] .gsr-slide .gsr-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  clip-path: inset(0 0 0 100% round 0);
  transition: clip-path 0.85s cubic-bezier(0.2, 0.7, 0, 1);
  mix-blend-mode: overlay;
  pointer-events: none;
}
[data-transition='clip'] .gsr-slide.is-active .gsr-link::before {
  clip-path: inset(0 0 0 0 round 0);
}

/* TRANSITION: fade (Ã„Âe Ã…Â¾eliÃ…Â¡) */
[data-transition='fade'] .gsr-slide {
  transform: none;
}

/* Arrows */
.gsr-arrow {
  position: absolute;
  right: 16px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.95;
  border-radius: 50%;
}

.gsr-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.gsr-arrow--prev {
  top: calc(50% - 52px);
}
.gsr-arrow--next {
  top: calc(50% + 8px);
}

/* Dots */
.gsr-dots {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.gsr-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.gsr-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* Progress */
.gsr-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 6;
}

.gsr-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-red);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .gsr-slide,
  .gsr-link img {
    transition: none !important;
  }
  [data-transition='clip'] .gsr-slide .gsr-link::before {
    display: none;
  }
}

.dealer-cars-carousel {
}

.dealer-cars-carousel .dealer-cars-carousel-inner {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company {
  background: white;
  flex: 0 0 25%;
  border-radius: 14px;
  text-align: center;
  /* height: max-content; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 372px;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company h2 {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company .location {
  display: flex;
  font-size: 12px;
  gap: 5px;
  text-align: left;
  justify-content: center;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company .total {
  display: flex;
  font-size: 14px;
  gap: 5px;
  justify-content: center;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company .img-box {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 20px;
  height: 120px;
  width: 120px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  margin-top: 50px;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company .content {
  padding: 20px;
  padding-top: 0;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company a {
  font-size: 14px;
  min-width: 100px;
  background-color: #ffffff;
  font-size: 14px;
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid var(--color-red);
  gap: 5px;
  width: max-content;
  margin: 0 auto;
  margin-top: 15px;
  transition: 0.3s;
  font-weight: 700;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company a img {
  transform: rotate(180deg);
}

.dealer-cars-carousel .dealer-cars-carousel-inner .deal-cards-company a:hover {
  opacity: 0.8;
}

/* .vehicle-carousel wrapper gets inserted by JS â€” give it the flex space */
.dealer-cars-carousel .dealer-cars-carousel-inner app-vehicle-carousel,
.dealer-cars-carousel .dealer-cars-carousel-inner .vehicle-carousel {
  flex: auto;
  min-width: 0;
  margin-top: 0;
}

.dealer-cars-carousel .dealer-cars-carousel-inner app-vehicle-carousel {
  display: block;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .vehicle-grid {
  flex: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}

.dealer-cars-carousel .dealer-cars-carousel-inner .vehicle-grid .vehicle-card {
  width: auto;
  max-width: none;
  flex: initial;
}

/* inside the carousel the track is a nowrap flex row, so the cards keep the per-view width
   the carousel measures its steps by instead of the picture's own width */
.dealer-cars-carousel .dealer-cars-carousel-inner .vehicle-carousel .vehicle-grid .vehicle-card {
  flex: 0 0 calc((100% - (var(--gap, 18px) * (var(--perView, 3) - 1))) / var(--perView, 3));
  max-width: calc((100% - (var(--gap, 18px) * (var(--perView, 3) - 1))) / var(--perView, 3));
}

.dealer-cars-carousel .dealer-cars-carousel-inner .vehicle-grid .vehicle-card .vehicle-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.dealer-cars-carousel .vehicle-card .content .specs {
  margin-bottom: 0;
  display: block;
}

.dealer-cars-carousel .vehicle-card .content .specs .spec {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-bottom: 8px;
}

.vehicle_last {
  padding-bottom: 100px;
}

/* LAST VEHICLES carousel wrapper */
.vehicle-carousel {
  position: relative;
  width: 100%;
  margin-top: 24px;
}

/* viewport */
.vehicle-carousel .carousel-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.vehicle-carousel .vehicle-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch;
  gap: 18px;

  margin: 0 !important;
  padding: 0 !important;

  will-change: transform;
  transform: translateX(0);
  transition: transform 280ms ease;
}

/* items: 1/2/3 */
.vehicle-carousel .vehicle-card {
  flex: 0 0 calc((100% - (var(--gap, 18px) * (var(--perView, 3) - 1))) / var(--perView, 3));
  max-width: calc((100% - (var(--gap, 18px) * (var(--perView, 3) - 1))) / var(--perView, 3));
}

/* Arrows */
.vehicle-carousel .carousel-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e8ee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-carousel .carousel-arrow.prev {
  left: -18px;
}
.vehicle-carousel .carousel-arrow.next {
  right: -18px;
}

.vehicle-carousel .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.vehicle-carousel .carousel-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Dots */
.vehicle-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.vehicle-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cfd4df;
  cursor: pointer;
  padding: 0;
}

.vehicle-carousel .carousel-dot.is-active {
  width: 28px;
  background: #e31b23;
}

.ambassadors-cards {
}

.ambassadors-cards .ambassadors-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
}

.ambassadors-cards .ambassadors-card .img-box {
  flex: 0 0 50%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambassadors-cards .ambassadors-card .img-box img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  /* padding: 50px; */
  height: 300px;
  border-radius: 12px;
}

.ambassadors-cards .ambassadors-card .ambassadors-content {
  flex: 0 0 50%;
  padding: 20px;
}

.ambassadors-cards .ambassadors-card .ambassadors-content h3 {
  font-weight: 700;
  margin: 0px;
}

.ambassadors-cards .ambassadors-card .ambassadors-content h4 {
  color: #4a5565;
  font-size: 16px;
  margin: 0px;
  margin-bottom: 20px;
}

.ambassadors-cards .ambassadors-card .ambassadors-content .text {
  font-size: 12px;
}
.ambassadors-cards .ambassadors-card .ambassadors-content .social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

/* .ambassadors-cards .ambassadors-card .ambassadors-content a.website{
font-weight: 700;
    color: #db2627;
}

.ambassadors-cards .ambassadors-card .ambassadors-content a.website:hover{
    opacity: 0.7;
} */

.ambassadors-cards .ambassadors-card .ambassadors-content .social a {
}

.ambassadors-cards .ambassadors-card .ambassadors-content .social a img {
  width: 30px;
  height: 30px;
}

.ambassadors-cards .ambassadors-card.is-alt {
  order: 1;
}

.ambassadors-cards .ambassadors-card.is-alt .img-box {
  order: 2;
}

.ambassadors-cards .ambassadors-card.is-alt .ambassadors-content {
}

.dealers-cards .dealers-card {
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  border-radius: 14px;
  display: block;
  margin-bottom: 25px;
  position: relative;
}

.dealers-cards .dealers-card .img-box {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.dealers-cards .dealers-card .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.dealers-cards .dealers-card .content {
  padding: 20px;
}

.dealers-cards .dealers-card .content h3 {
  font-size: 18px;
  font-weight: 700;
}

.dealers-cards .dealers-card .content .location {
  display: flex;
  font-size: 14px;
  gap: 7px;
  text-align: center;
}

.dealers-cards .dealers-card .authorized-dealer {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}

.dealers-cards .dealers-card .content .total {
  display: flex;
  font-size: 14px;
  gap: 7px;
}

.dealers-cards .dealers-card .cta {
  font-size: 14px;
  border: 1px solid var(--color-red);
  height: 40px;
  padding: 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 13px;
  width: max-content;
  gap: 5px;
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  transition: 0.3s;
}

.dealers-cards .dealers-card .cta:hover {
  background-color: var(--color-red);
  color: #ffffff;
}

.dealers-cards .dealers-card .cta img {
  transform: rotate(180deg);
}

.dealers-page {
}

.dealers-page .header {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 0;
}

.dealers-page .header .data-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dealers-page .header .basic-data {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.dealers-page .header .extra-data {
  flex: 0 0 30%;
}

.dealers-page .header .extra-data ul {
}

.dealers-page .header .extra-data ul li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}

.dealers-page .header .extra-data ul li img {
  width: 20px;
  flex-shrink: 0;
  filter: brightness(0);
}

.dealers-page .header .extra-data ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow-wrap: anywhere;
  color: #111111;
}

.dealers-page .header .basic-data .logo-box {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.dealers-page .header .basic-data .logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealers-page .header .basic-data .title-box {
}

.dealers-page .header .basic-data .title-box h1 {
  font-size: 30px;
  font-weight: 700;
}

.dealers-page .header .basic-data .title-box .total {
  display: flex;
  gap: 10px;
}

.dealers-page .dealers-main {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 100px;
}

.dealers-page .dealers-main-center {
  flex: 1;
  min-width: 0;
}

.dealers-page .right-side {
  flex: 0 0 28%;
  margin-top: 30px;
  width: 28%;
}

.dealers-page .right-side .right-side-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 15px;
}

.dealers-page .right-side .right-side-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.authorized-dealer {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0px;
}

.authorized-dealer img {
  width: 40px;
  height: 40px;
}

.dealers-page .right-side ul {
}
.dealers-page .right-side ul li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}

.wh-table {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.wh-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wh-row:first-child {
  border-top: none;
}

.wh-row.is-today {
  background: #fbe9e9;
}

.wh-day {
  font-size: 14px;
  color: #111;
}

.wh-time {
  font-size: 14px;
  font-weight: 600;
}

.wh-time.is-open {
}

.wh-time.is-closed {
  font-weight: 500;
}

.wh-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.65);
}

.wh-ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
}

.vp-contacts .vp-contact {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

.vp-contacts .vp-contact .img-box {
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.vp-contacts .vp-contact .img-box img {
  width: 22px;
}

.vp-contacts .vp-contact .contact-info {
  font-size: 14px;
  text-align: center;
}

.vp-btn {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  gap: 10px;
  background: #d41623;
  color: #ffffff;
  margin-top: 10px;
}

.vp-btn img {
  filter: invert(1);
}

.vp-btn:hover {
  opacity: 0.92;
}

.dealers-main-center h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.dealers-main-center .vehicle-grid {
  /* po Å¾elji */
  display: block;
  width: 100%;
}

.dealers-main-center .vehicle-grid .vehicle-card {
  flex-direction: row;
  max-width: 100%;
  margin-bottom: 15px;
}

.dealers-main-center .vehicle-grid .vehicle-card .img-box {
  width: 37%;
  flex: 0 0 37%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dealers-main-center .vehicle-grid .vehicle-card .content {
  flex: auto;
}

/*.vehicle-card .content .price{
    padding: 0px;
}*/

.vehicle-card .content .price .old {
  text-decoration: line-through;
  color: #9aa0a6;
  font-weight: 400;
  font-size: 16px;
  margin-right: 5px;
}

.dealer-cars-carousel .vehicle-card .img-box {
  height: 160px;
}

.dealer-cars-carousel .vehicle-card .content h4 {
  font-size: 16px;
}

.single-page .body iframe {
  width: 100%;
  height: 800px;
}

.mc-compare-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #0b1220;
  color: #fff;
  transform: translateY(120%);
  transition: transform 0.25s ease;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.35);
  padding: 12px 14px;
  font-family: inherit;
}

.mc-compare-bar.is-visible {
  transform: translateY(0);
}

.mc-compare-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.mc-compare-left {
  min-width: auto;
  max-width: 354px;
}

.mc-compare-title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-compare-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 8px;
  border-radius: 50%;
  background: #dc2627;
  font-size: 12px;
  font-weight: 700;
}

.mc-compare-sub {
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.85;
}

.mc-compare-cards {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.mc-compare-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px;
  min-width: 260px;
  max-width: 340px;
}

.mc-compare-card img {
  width: 54px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.mc-compare-card .mc-compare-card-title {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  max-height: 2.4em;
  overflow: hidden;
}

.mc-compare-card .mc-compare-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mc-compare-slot {
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  height: 62px;
  min-width: 260px;
  opacity: 0.5;
}

.mc-compare-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-compare-link {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

.mc-compare-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2627;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  white-space: nowrap;
  height: 40px;
  font-size: 14px;
}

.mc-compare-primary.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.mc-compare-collapse {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

/* collapsed state */
.mc-compare-bar.is-collapsed .mc-compare-sub,
.mc-compare-bar.is-collapsed .mc-compare-cards,
.mc-compare-bar.is-collapsed #mcCompareClear {
  display: none;
}

.categories-list {
  font-size: 14px;
  border-bottom: 1px solid #e6e7eb;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

.categories-list li a.active-nav {
  /* color: #dc2627; */
  text-decoration: underline;
  font-weight: 700;
}

.author-single {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #717182;
  font-size: 14px;
  margin-bottom: 12px;
}

.author-single .img-box {
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.author-single .img-box img {
  width: 20px;
  height: 20px;
}

.news-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.vehicle.vehicle_last .vehicle-card {
  padding: 0px;
}

.vehicle.vehicle_last .vehicle-card .img-box {
}

.vehicle.vehicle_last .vehicle-card .img-box img {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.vehicle.vehicle_last .vehicle-card .vehicle-card-inner {
  flex-direction: column;
}

.vehicle.vehicle_last .vehicle-card .content .bottom-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  margin-top: 18px;
  padding-top: 13px;
}

.vehicle.vehicle_last .vehicle-card .content {
  padding: 20px 15px;
}

.news-page .header.header_bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: color;
}

.page-text .body ul {
  list-style: disc;
  padding: 0 20px;
}

.page-text .body ul li {
}

/* alineje v telesu novice (povozi globalni ul{list-style:none}) */
.news-container .text ul {
  list-style: disc;
  padding: 0 20px;
}

.news-container .text ol {
  list-style: decimal;
  padding: 0 20px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
}

.cookie-table thead {
  background: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
}

.cookie-table td {
  border-bottom: 1px solid #eee;
}

.cookie-table tbody tr:hover {
  background: #fafafa;
}

/* column widths */

.cookie-table th:nth-child(1),
.cookie-table td:nth-child(1) {
  width: 140px;
  font-weight: 600;
}

.cookie-table th:nth-child(2),
.cookie-table td:nth-child(2) {
  width: 180px;
}

.cookie-table th:nth-child(3),
.cookie-table td:nth-child(3) {
  width: 120px;
}

.cookie-table th:nth-child(5),
.cookie-table td:nth-child(5) {
  width: 120px;
  white-space: nowrap;
}

/* responsive */

@media (max-width: 768px) {
  .cookie-table {
    font-size: 13px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 10px;
  }
}

/* LAST VEHICLES carousel wrapper */
.vehicle-carousel {
  position: relative;
  width: 100%;
  margin-top: 24px;
  --gap: 18px;
  --perView: 3;
}

/* viewport */
.vehicle-carousel .carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.vehicle-carousel .carousel-viewport::-webkit-scrollbar {
  display: none;
}

/* TRACK */
.vehicle-carousel .vehicle-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch;
  gap: var(--gap);

  margin: 0 !important;
  padding: 0 !important;

  will-change: transform;
}

/* items */
.vehicle-carousel .vehicle-card {
  flex: 0 0 calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
  max-width: calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
  min-width: calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
  scroll-snap-align: start;
}

/* optional: da je snap lepÅ¡i na mobile */
.vehicle-carousel .carousel-viewport {
  scroll-snap-type: x mandatory;
}

/* Arrows */
.vehicle-carousel .carousel-arrow {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #e6e8ee;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-carousel .carousel-arrow.prev {
  left: -18px;
}

.vehicle-carousel .carousel-arrow.next {
  right: -18px;
}

.vehicle-carousel .carousel-arrow svg {
  width: 22px;
  height: 22px;
}

.vehicle-carousel .carousel-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Dots */
.vehicle.vehicle_last .vehicle-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.vehicle.vehicle_last .vehicle-carousel .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #cfd4df;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.vehicle.vehicle_last .vehicle-carousel .carousel-dot.is-active {
  width: 28px;
  background: #e31b23;
}

.vehicle.vehicle_last .vehicle-carousel .vehicle-card {
  display: flex;
}

.vehicle.vehicle_last .vehicle-card .vehicle-card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.vehicle.vehicle_last .vehicle-card .content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px;
}

.vehicle.vehicle_last .vehicle-card .title {
  margin-bottom: 18px;
}

.vehicle.vehicle_last .vehicle-card .specs {
  margin-bottom: 0;
  display: block;
}

.vehicle.vehicle_last .vehicle-card .content .bottom-box {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e6e8ee;
}

/* update form */

.single-row .input-box {
  display: flex;
}

.single-row .input-box input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 1px solid #d3d7df;
}

.single-row .input-box .input-unit {
  position: relative;
  display: flex;
  align-items: center;
  background: #dadadd;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: none;
  width: 100%;
  font-size: 12px;
  width: 70px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
}

.steps-colors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.steps-color {
  display: flex;
  align-items: center;
  gap: 10px;
  /* padding: 10px 12px; */
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.06s ease,
    border-color 0.12s ease,
    box-shadow 0.12s ease;
}

.steps-color-dot {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex: 0 0 22px;
  border-radius: 50%;
}

.vehicle-results-wrap {
  position: relative;
  min-height: 220px;
}

.vehicle-results-loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  border-radius: 18px;
}

.vehicle-results-loader-inner {
  min-width: 180px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.1);
  text-align: center;
}

.loader-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px auto;
  border: 3px solid #e7eaf0;
  border-top: 3px solid #111111;
  border-radius: 50%;
  animation: vehicleSpin 0.8s linear infinite;
}

.loader-text {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.app-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  width: 100%;
}

@keyframes vehicleSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  /* margin: 0 0 18px 0; */
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e6e7eb;
  background: #ffffff;
  color: #111111;
  border-radius: 8px;
  padding: 0px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.active-filter-chip:hover {
  border-color: #111111;
}

.chip-x {
  font-size: 16px;
  line-height: 1;
}

.active-filter-clear-all {
  display: inline-flex;
  align-items: center;
  border: none;
  background: transparent;
  color: #d12f2f;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0px;
}

.mobile-only-filter-action {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-filter-action {
    display: block;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  justify-content: center;
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 12px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 14px;
}

.pagination-link:hover {
  border-color: #111111;
}

.pagination-link.is-active {
  background: #dc2627;
  color: #ffffff;
  border-color: #dc2627;
}

.pagination-dots {
  padding: 0 4px;
  color: #6b7280;
}

/* ================================================
   ADVANCED FILTER PAGE
   ================================================ */

.advanced-filter-page-wrap {
  padding: 32px 0 60px;
}

.advanced-filter-page-wrap h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.advanced-filter-page-wrap h2 {
  font-size: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.advanced-filter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advanced-filter-dynamic-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- Section card ---- */
.advanced-filter-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 26px 24px;
}

/* Section heading (direct child label) */
.advanced-filter-section > label.label-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaecf0;
  letter-spacing: 0.01em;
}

/* Category-select section: compact, no bottom border */
.advanced-filter-section.is-category-select {
  border-radius: 14px;
}

.advanced-filter-section.is-category-select .advanced-filter-grid {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.advanced-filter-section.is-category-select .advanced-filter-grid select {
  width: 100%;
}

/* ---- Grid rows ---- */
.advanced-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-bottom: 14px;
  align-items: start;
}

.advanced-filter-grid:last-child {
  margin-bottom: 0;
}

.advanced-filter-grid > label.label-title {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.advanced-filter-grid:has(> .advanced-filter-col:only-child) > .advanced-filter-col {
  grid-column: 1 / -1;
}

/* ---- Column ---- */
.advanced-filter-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Inner section label (not direct child) ---- */
.advanced-filter-section .label-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- Checkbox groups ---- */
.advanced-filter-section .checkbox-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.advanced-filter-section .checkbox-box > .label-title {
  margin-bottom: 6px;
}

/* Condition/shape checkboxes â€” horizontal pill row */
.advanced-filter-section .checkbox-box-inline {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
}

.advanced-filter-section .checkbox-box-inline .label-title {
  width: 100%;
  margin-bottom: 4px;
}

/* ---- fromâ€“to input pairs ---- */
.advanced-filter-section .input-box {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.advanced-filter-section .input-box input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 10px;
  font-size: 12px;
  color: #333;
  border-radius: 10px 0 0 10px;
  border: 1px solid #d3d7df;
  border-right: none;
  background-color: #f5f6f8;
  outline: none;
  font-family: inherit;
}

.advanced-filter-section .input-box input:focus {
  background-color: #fff;
  border-color: #b0b4c0;
}

.advanced-filter-section .input-box .input-unit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
  background: #eaecf0;
  border-radius: 0 10px 10px 0;
  border: 1px solid #d3d7df;
  border-left: none;
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 38px;
}

/* ---- Unify select-box labels inside filter sections ---- */
.advanced-filter-section .select-box label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

/* ---- Color picker ---- */
.advanced-filter-section .colors-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ---- Submit row ---- */
.single-row-submit {
  padding: 4px 0 0;
}

.btn-filter-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.18s ease;
  border: none;
  background-color: #d41623;
  color: #ffffff;
  height: 40px;
  width: max-content;
  padding: 0 25px;
  margin: 0 auto;
}

.btn-filter-apply:hover {
  background-color: #b0121a;
}

.btn-filter-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: filterSpin 0.6s linear infinite;
  margin-left: 6px;
  vertical-align: middle;
}
@keyframes filterSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================================
   EQUIPMENT GROUPS
   ================================================ */

.equipment-groups-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 24px;
  align-items: start;
}

.equipment-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.equipment-group-title {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f1f5;
}

.equipment-items-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment-items-list li {
  list-style: none;
}

.equipment-items-list .container-checkbox {
  font-size: 12px;
  min-height: 24px;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1200px) {
  .equipment-groups-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .advanced-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equipment-groups-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .equipment-groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .advanced-filter-page-wrap {
    padding: 20px 0 40px;
  }

  .advanced-filter-section {
    padding: 16px 14px 18px;
    border-radius: 12px;
  }

  .advanced-filter-grid {
    grid-template-columns: 1fr;
  }

  .equipment-groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advanced-filter-section.is-category-select .advanced-filter-grid {
    grid-template-columns: 1fr;
  }
}
