@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-primary: #292c4d;
  --color-gray: #979797;
  --color-gray-light: #f3f3f3;
}

.montserrat-thin {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.montserrat-extralight {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

.montserrat-light {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.montserrat-extrabold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.montserrat-black {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

h1 {
  font-size: 3.052rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.441rem;
  line-height: 1.2;
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
}

h1,
h2,
h3 {
  margin-bottom: 1rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.55;
}
p.bigger {
  font-size: 1.563rem;
}

small {
  font-size: 0.8rem;
  line-height: 1.4;
  font-style: italic;
  display: inline-block;
}

a {
  text-decoration: none;
}

body {
  color: var(--color-primary);
}

@media screen and (max-width: 992px) {
  .desktop {
    display: none !important;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 992px) {
  .mobile {
    display: block !important;
  }
}

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-centers {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-05 {
  gap: 0.5rem;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.m-reset {
  margin: 0 0 !important;
}

.line-height-reset {
  line-height: 1 !important;
}

.page-hero-top-shadow {
  box-shadow: inset 0 10px 35px -10px rgba(0, 0, 0, 0.2);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 99%;
}

.bg-primary {
  background-color: var(--color-primary);
}

.text-primary {
  color: var(--color-primary);
}

.bg-gray {
  background-color: var(--color-gray);
}

.text-gray {
  color: var(--color-gray);
}

.text-black {
  color: #000;
}

.text-white {
  color: #fff;
}

strong {
  font-weight: 700;
}

.container {
  max-width: 1399px;
  margin: auto;
  padding: 0 1.5rem;
}
.container .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .container .row {
    display: flex;
    flex-direction: column;
  }
}

.grid-tpl-1 {
  display: flex !important;
  flex-direction: column !important;
}

section {
  padding: 2rem 0;
}

img {
  max-width: 100%;
}

.c-btn {
  display: inline-block;
  text-transform: uppercase;
  color: #fff;
  border: solid 2px #67a9dd;
  background-color: #67a9dd;
  border-radius: 3rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.c-btn:hover {
  border: solid 2px #4496d5;
  background-color: #4496d5;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
  }
}
.c-btn.outline {
  color: var(--color-primary);
  background-color: transparent;
}
.c-btn.outline:hover {
  border: solid 2px var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none;
  width: 100%;
  padding: 0.5rem 0.5rem;
  border: 1px solid #292c4d;
  border-radius: 12px;
  background: white;
  color: #292c4d;
}

/* Freccia personalizzata */
.select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #292c4d;
}

#secondary {
  background-color: #fff;
  position: fixed;
  width: 300px;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 99999;
  box-sizing: border-box;
  transition: left 0.25s ease-out;
}
@media screen and (min-width: 992px) {
  #secondary {
    display: none;
  }
}
#secondary .menu-label {
  padding: 1rem;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 0.9rem;
}
#secondary #menu-primary-menu-2 {
  flex-direction: column;
  align-items: start;
  gap: 0;
}
#secondary #menu-primary-menu-2 li {
  width: 100%;
  border-bottom: solid 1px #d9d9d9;
}
#secondary #menu-primary-menu-2 li a {
  padding: 1rem;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
#secondary #menu-primary-menu-2 li .sub-menu {
  padding-left: 1rem;
}
#secondary #menu-primary-menu-2 li .sub-menu li {
  border-bottom: transparent;
}
#secondary #menu-primary-menu-2 li .sub-menu li a {
  color: var(--color-primary);
}
#secondary.sidebar-hide {
  left: -300px;
}
#secondary.sidebar-hide #sidebar_close {
  display: none;
}
#secondary #sidebar_close {
  background-color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 9px;
  right: -25px;
  font-size: 1rem;
  cursor: pointer;
}

#sidebar_backdrop {
  content: "";
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.5;
  z-index: 999;
}
@media screen and (min-width: 992px) {
  #sidebar_backdrop {
    display: none;
  }
}
#sidebar_backdrop.sidebar-hide {
  display: none;
}

header .logo-wrapper {
  width: 140px;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  header .logo-wrapper {
    width: 150px;
  }
}
header .burger-ico-wrapper {
  width: 40px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
header .desktop #menu-primary-menu {
  gap: 1.5rem;
}
header .desktop #menu-primary-menu li {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .desktop #menu-primary-menu li a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: solid 2px transparent;
  color: var(--color-primary);
  box-sizing: border-box;
}
header .desktop #menu-primary-menu li:hover a, header .desktop #menu-primary-menu li.current-menu-item a, header .desktop #menu-primary-menu li.current-menu-ancestor a, header .desktop #menu-primary-menu li.current-menu-parent a {
  border-color: var(--color-primary);
}
header .desktop #menu-primary-menu li.menu-item-has-children {
  position: relative;
}
header .desktop #menu-primary-menu li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  z-index: 9;
  background-color: #fff;
  min-width: 200px;
  top: 110px;
}
header .desktop #menu-primary-menu li.menu-item-has-children .sub-menu li a {
  border-bottom: transparent;
  display: block;
  padding: 1rem;
}
header .desktop #menu-primary-menu li.menu-item-has-children .sub-menu li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
header .desktop #menu-primary-menu li.menu-item-has-children:hover .sub-menu {
  display: block;
}
header .menu-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  background-color: #fff;
  z-index: 9;
  display: none !important;
}
header .menu-sidebar ul {
  flex-direction: column;
  gap: 0;
  align-items: start;
  margin-top: 2rem;
}
header .menu-sidebar ul li {
  width: 100%;
  border-bottom: solid 1px #e1e1e1;
}
header .menu-sidebar ul li a {
  display: block;
  padding: 1rem 1rem;
}
header .menu-sidebar .time-ico-wrapper {
  position: absolute;
  top: 9px;
  right: 8px;
}
header:after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 8;
  display: none;
}
.hero .container .hero-content {
  position: relative;
}
.hero .container .hero-content h1 {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 4vw, 3rem);
}
.hero .container .hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 0;
}
.hero .container .hero-content .hero-image-wrapper {
  margin-top: 2rem;
}
@media screen and (max-width: 992px) {
  .hero .container .hero-content .hero-image-wrapper {
    margin-top: 1rem;
  }
}
.hero.hp {
  padding-top: 3rem;
}
.hero.internal {
  background-color: #edf6fe;
}
.hero.internal .hero-content {
  min-height: auto;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .hero.internal .hero-content .hero-internal-content-wrapper h1,
  .hero.internal .hero-content .hero-internal-content-wrapper p {
    padding: 0 1rem;
  }
}
.hero.internal .hero-content .hero-internal-content-wrapper h1 {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .hero.internal .hero-content .hero-internal-content-wrapper h1 {
    padding: 0 1rem;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .hero.internal .hero-content .hero-internal-content-wrapper p {
    padding-bottom: 1rem;
  }
}

.company-values-main {
  background-color: #fafafa;
}
.company-values-main .company-values-wrapper {
  padding: 2rem 0;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .company-values-main .company-values-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
.company-values-main .company-values-wrapper .company-value-wrapper {
  padding: 0 1.5rem;
  flex: 1;
}
@media screen and (max-width: 992px) {
  .company-values-main .company-values-wrapper .company-value-wrapper {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .company-values-main .company-values-wrapper .company-value-wrapper {
    flex-direction: row;
  }
}
.company-values-main .company-values-wrapper .company-value-wrapper .company-value-ico {
  flex: none;
}
.company-values-main .company-values-wrapper .company-value-wrapper .company-value-title {
  margin-bottom: 0.25rem;
}
.company-values-main .company-values-wrapper .company-value-wrapper .company-value-subtitle {
  font-size: 0.85rem;
  line-height: 1.2rem;
}

.tags-wrapper {
  gap: 0.3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tags-wrapper .tag {
  font-size: 0.65rem;
  padding: 7px 20px;
  padding-top: 8px;
  border-radius: 2rem;
  background-color: #67a9dd;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tags-wrapper .tag.green {
  background-color: #4eeb78;
}
.promo-section h2 {
  font-size: clamp(1.4rem, 5vw, 2.5rem);
}
.promo-section p:not(.bigger) {
  font-size: clamp(1rem, 3vw, 1.15rem);
}
.promo-section .promos-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 1199px) {
  .promo-section .promos-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .promo-section .promos-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.promo-section .promos-wrapper .promo-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35%, #f3f3f3 100%);
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .promo-section .promos-wrapper .promo-card {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 15%, #f3f3f3 100%);
    padding: 1.25rem 1rem;
  }
}
.promo-section .promos-wrapper .promo-card .promo-picture {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .promo-section .promos-wrapper .promo-card .promo-picture {
    max-width: 250px;
  }
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-brand {
  color: #979797;
  font-size: 1.4rem;
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-model {
  margin-top: 0.3rem;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 2.5rem);
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-icos {
  justify-content: center;
  gap: 1rem;
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-icos .promo-ico .promo-ico-label {
  text-transform: uppercase;
  font-size: 0.6rem;
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-price {
  font-size: clamp(2.5rem, 4vw, 3rem);
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-price sub {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-detail {
    font-size: 0.8rem;
  }
}
.promo-section .promos-wrapper .promo-card .promo-infos-wrapper .c-btn {
  flex: none;
}

.banner-section .banner-content-wrapper {
  position: relative;
}
.banner-section .banner-content-wrapper .banner-content-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .banner-section .banner-content-wrapper .banner-content-text {
    align-items: flex-start;
    margin-top: 10%;
  }
}
.banner-section .banner-content-wrapper .banner-content-text > div {
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  width: 56%;
}
@media screen and (max-width: 767px) {
  .banner-section .banner-content-wrapper .banner-content-text > div {
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
  }
}
.banner-section .banner-content-wrapper .banner-content-text > div h3 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 5vw, 2rem);
}

.magazine-section .section-subtitle {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .magazine-section .section-subtitle {
    text-align: center;
  }
}
.magazine-section .magazines-wrapper {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .magazine-section .magazines-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.magazine-section .magazines-wrapper .magazine-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.magazine-section .magazines-wrapper .magazine-content-wrapper .magazine-title {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--color-primary);
}
.magazine-section .magazines-wrapper .magazine-content-wrapper:hover .scopri-btn {
  text-decoration: underline;
}

footer {
  background-color: #f3f3f3;
  padding: 2rem 0;
  font-size: 0.85rem;
  line-height: 1.3rem;
  color: var(--color-gray);
}
footer a {
  color: var(--color-gray);
}
footer .logo-wrapper {
  width: 140px;
}
footer .footer-content-wrapper-top,
footer .footer-content-wrapper-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  footer .footer-content-wrapper-top,
  footer .footer-content-wrapper-bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
footer .footer-content-wrapper-top > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
footer .footer-content-wrapper-bottom {
  margin-top: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px #707070;
}

.list-section .row {
  grid-template-columns: 1fr 5fr;
}
@media screen and (max-width: 992px) {
  .list-section .row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.list-section .row .section-title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .list-section .row .section-title-group {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.list-section .row .section-title-group .section-title {
  font-size: clamp(1.5rem, 4vw, 2.441rem);
}
@media screen and (max-width: 992px) {
  .list-section .row .filters-wrapper {
    border-radius: 25px;
    border: solid 2px var(--color-primary);
    padding: 0.8rem 1.3rem;
    margin-top: 1rem;
  }
}
.list-section .row .filters-wrapper .accordion-trigger {
  display: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--color-primary);
}
@media screen and (max-width: 992px) {
  .list-section .row .filters-wrapper .accordion-trigger {
    display: flex;
  }
}
.list-section .row .filters-wrapper .accordion-trigger h3 {
  font-size: 1.5rem;
  margin: 0;
}
.list-section .row .filters-wrapper .accordion-trigger .accordion-trigger-ico {
  transition: 0.3s ease, padding 0.3s ease;
}
.list-section .row .filters-wrapper .accordion-trigger.open .accordion-trigger-ico {
  transform: rotate(180deg);
}
.list-section .row .filters-wrapper .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.list-section .row .filters-wrapper .accordion-content.open {
  margin-top: 0.85rem;
  max-height: none;
}
.list-section .row .filters-wrapper .accordion-content .filter-wrapper {
  margin-bottom: 1.5rem;
}
.list-section .row .filters-wrapper .accordion-content .filter-wrapper .filter-title {
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.list-section .row .filters-wrapper .accordion-content .filter-wrapper .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.list-section .row .filters-wrapper .accordion-content .filter-wrapper .filter-checkbox label {
  text-transform: uppercase;
  font-size: 0.85rem;
}
.list-section .row .filters-wrapper .accordion-content .filter-wrapper .filter-checkbox input {
  margin: 0;
}
@media screen and (min-width: 993px) {
  .list-section .row .filters-wrapper .accordion-content {
    max-height: none !important;
  }
}
.list-section .row .promo-section .promos-wrapper {
  gap: 2rem;
}
@media screen and (max-width: 1199px) {
  .list-section .row .promo-section .promos-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .list-section .row .promo-section .promos-wrapper {
    display: flex;
    flex-direction: column;
  }
}
.list-section .row .promo-section .promos-wrapper .promo-card .promo-picture {
  width: 250px;
}
.list-section .row .promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-price {
  font-size: clamp(2.5rem, 4vw, 3rem);
}
.list-section .row .promo-section .promos-wrapper .promo-card .promo-infos-wrapper .promo-detail {
  font-size: 0.9rem;
}
.list-section .row .promo-section .promos-wrapper .promo-card .promo-infos-wrapper .c-btn {
  font-size: 1rem;
}

.detail-page h3 {
  font-size: 1.6rem;
}
.detail-page .detail-info-section {
  position: relative;
}
.detail-page .detail-info-section .container .row > div.col:last-child {
  padding-left: 2rem;
}
.detail-page .detail-info-section:after {
  content: "";
  width: 100%;
  height: 140px;
  background-color: #edf6fe;
  position: absolute;
  top: 0;
  left: 0;
}
.detail-page .detail-info-section .col {
  position: relative;
  z-index: 1;
}
.detail-page .detail-info-section .car-picture {
  width: 85%;
  margin: auto;
}
.detail-page .detail-info-section .car-brand {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
}
.detail-page .detail-info-section .car-model {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-top: 0.5rem;
}
.detail-page .detail-info-section .car-model_v {
  font-size: clamp(1.7rem, 1vw, 2.5rem);
  margin-top: clamp(0.7rem, 1vw, 1.85rem);
}
.detail-page .detail-info-section .car-tags {
  justify-content: start;
  margin-top: 1.85rem;
}
.detail-page .detail-info-section .car-tags .car-tag {
  padding: 0.6rem 2rem;
}
@media screen and (max-width: 992px) {
  .detail-page .detail-options-section {
    padding: 0;
  }
}
.detail-page .detail-options-section .row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 992px) {
  .detail-page .detail-options-section .row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.detail-page .detail-options-section .row h3 {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
}
@media screen and (max-width: 992px) {
  .detail-page .detail-options-section .row h3 {
    margin-bottom: 0.5rem;
  }
}
.detail-page .detail-options-section .row .opts {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}
.detail-page .detail-options-section .row .opts .opt {
  background-color: #f3f3f3;
  color: #000;
  font-size: 1rem;
  padding: 0.7rem 0.5rem;
  width: 80px;
  border-radius: 9999px;
  text-align: center;
  cursor: pointer;
}
.detail-page .detail-options-section .row .opts .opt:hover, .detail-page .detail-options-section .row .opts .opt.selected {
  background-color: #67a9dd;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .detail-page .detail-options-section .row .opts .opt {
    width: 80px;
  }
}
.detail-page .detail-form-section .row {
  grid-template-columns: 1.4fr 1fr;
}
@media screen and (max-width: 992px) {
  .detail-page .detail-form-section .row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 992px) {
  .detail-page .detail-form-section h3 {
    margin-bottom: 0;
  }
}
.detail-page .detail-form-section .car-price {
  font-size: clamp(4rem, 8vw, 6rem);
  margin: 2rem 0;
}
.detail-page .detail-form-section .car-price.reset-font {
  font-size: 1rem;
}
@media screen and (max-width: 992px) {
  .detail-page .detail-form-section .car-price {
    margin: 1rem 0;
  }
}
.detail-page .detail-form-section .car-price sub {
  font-size: 1.5rem;
  margin-left: 0.85rem;
}
.detail-page .detail-form-section .car-price .offerta-personalizzata {
  font-size: 2rem;
}
.detail-page .detail-form-section .car-price .offerta-personalizzata.hide {
  display: none;
}
.detail-page .detail-form-section .car-opts-wrapper {
  padding-left: 2rem;
  list-style: disc;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 1vw, 1rem);
  margin-top: 2rem;
}
.detail-page .detail-form-section .disclaimer {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2rem;
}

.contatti-page hr {
  border: none;
  height: 1px;
  background-color: #c7c7c7;
}

input:not([type=checkbox]):not([type=submit]):not([type=range]),
select,
textarea {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  font-size: 1.2rem;
  padding: 1rem 1rem;
  box-sizing: border-box;
  color: #979797;
}
input:not([type=checkbox]):not([type=submit]):not([type=range])::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #979797;
}
input:not([type=checkbox]):not([type=submit]):not([type=range])::placeholder,
select::placeholder,
textarea::placeholder {
  color: #979797;
}

.privacy-checkbox-wrapper p {
  line-height: 1;
}
.privacy-checkbox-wrapper .wpcf7-list-item {
  margin: 0;
}
.privacy-checkbox-wrapper .wpcf7-list-item label {
  font-size: 0.75rem;
}

#detail-page-form {
  border: solid 1px #c7c7c7;
  border-radius: 1rem;
  padding: clamp(1rem, 1vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#detail-page-form br {
  display: none;
}
#detail-page-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
#detail-page-form .wpcf7-response-output {
  border: solid 1px #dc3232;
  padding: 1rem;
}
#detail-page-form h3 {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
}

.faq-wrapper {
  margin-top: 2rem;
}
.faq-wrapper .AD-accordion {
  margin-bottom: 1rem;
}
.faq-wrapper .AD-accordion .accordion-header {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}
.faq-wrapper .AD-accordion .accordion-header .plus {
  display: inline;
}
.faq-wrapper .AD-accordion .accordion-header .minus {
  display: none;
}
.faq-wrapper .AD-accordion .accordion-body {
  padding: 0.5rem 1rem;
  line-height: 1.25rem;
  display: none;
}
.faq-wrapper .AD-accordion.open .accordion-header .plus {
  display: none;
}
.faq-wrapper .AD-accordion.open .accordion-header .minus {
  display: inline;
}

.wp-block-spacer {
  margin: 0 !important;
}

.whatsapp-wrapper {
  position: fixed;
  right: 3%;
  bottom: 3%;
}
.whatsapp-wrapper a {
  display: block;
  width: 60px;
}

.scopri-btn {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.7rem);
  justify-content: end;
  color: var(--color-primary);
}
.scopri-btn a {
  font-size: clamp(0.5rem, 4vw, 1.2rem);
  color: var(--color-primary);
}
.scopri-btn img {
  height: clamp(1.2rem, 4vw, 1.5rem);
}

.toggle-container {
  display: flex;
  position: relative;
  height: 60px;
  border-radius: 50px;
  background-color: #f0f0f0;
  overflow: hidden;
}
.toggle-container.hide {
  display: none;
}

.toggle-container input[type=radio] {
  display: none;
}

.toggle-label {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 0 6px;
  transition: color 0.3s ease;
  color: #292c4d;
}

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 50px;
  z-index: 1;
  transition: transform 0.3s ease;
}

#business-toggle:checked ~ .toggle-slider {
  transform: translateX(0%);
  background-color: #292c4d;
}

#privati-toggle:checked ~ .toggle-slider {
  transform: translateX(100%);
  background-color: #292c4d;
}

#rent-toggle:checked ~ .toggle-slider {
  transform: translateX(200%);
  background-color: #292c4d;
}

#scuola-toggle:checked ~ .toggle-slider {
  transform: translateX(300%);
  background-color: #292c4d;
}

#business-toggle:checked ~ .business-label,
#privati-toggle:checked ~ .privati-label,
#rent-toggle:checked ~ .rent-label,
#scuola-toggle:checked ~ .scuola-label {
  color: white;
}

@media screen and (max-width: 767px) {
  .toggle-container-col {
    display: flex;
    justify-content: center;
  }
  .toggle-container {
    width: 100%;
    max-width: 420px;
    height: 40px;
  }
  .toggle-label {
    font-size: 12px;
  }
}
/* Style base per il contenitore del slider */
.slider-container {
  width: 65%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.slider-labels {
  margin: 0 auto;
  width: 68%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: bold;
  color: #292c4d; /* Blu scuro */
  font-size: 25px;
}

.slider-title {
  margin-bottom: 3.5rem;
}

.custom-slider {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 25px;
  background: transparent;
  margin: 0;
  background-image: linear-gradient(to right, #292c4d var(--value, 0%), #f0f0f0 var(--value, 0%));
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.custom-slider:focus {
  outline: none;
}

/* Chrome, Safari, Opera, Edge */
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
  z-index: 10;
  position: relative;
}

/* Firefox */
.custom-slider::-moz-range-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
}

.tooltip {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  background: #292c4d;
  color: #fff;
  padding: 4px 0;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  display: block;
  width: 40px;
  box-sizing: border-box;
}
.tooltip.hide {
  display: none;
}
.tooltip:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #292c4d;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -4px;
  transform: rotate(45deg);
  z-index: 0;
}
.tooltip span {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .slider-container {
    width: 90%;
  }
  .slider-labels {
    width: 90%;
  }
}
/* Stile base per il checkbox */
.hidden-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-checkbox-label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  line-height: 20px;
}

.custom-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 1px solid #505050;
  background-color: white;
  border-radius: 3px;
}

.hidden-checkbox:checked + .custom-checkbox-label::before {
  background-color: #292c4d;
  border-color: #292c4d;
}

.hidden-checkbox:checked + .custom-checkbox-label::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 45%;
  width: 3px;
  height: 6px;
  border: solid white !important;
  border-width: 0 2px 2px 0 !important;
  transform: translateY(-50%) rotate(45deg);
}

.error-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.error-content {
  margin-bottom: 5rem;
}

.error-button {
  padding: 1rem 3rem;
  border-radius: 10px;
  border: none;
  background-color: #292c4d;
  color: white;
}

.error-button:hover {
  background-color: #292c4d;
  opacity: 90%;
}

.posts-navigation .nav-links {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.magazine-post-section .row {
  grid-template-columns: 3fr 1fr;
}
@media screen and (max-width: 992px) {
  .magazine-post-section .row {
    display: block;
  }
}
.magazine-post-section .row h1 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}
.magazine-post-section .row .magazine-picture {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 992px) {
  .magazine-post-section .row .magazine-picture {
    width: 100%;
  }
}
.magazine-post-section .row p,
.magazine-post-section .row figure {
  margin-bottom: 1.5rem;
}
.magazine-post-section .row p {
  font-size: 1.1rem;
}
.magazine-post-section .row .magazine-post-page-nav {
  padding: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .magazine-post-section .row .magazine-post-page-nav {
    flex-direction: column;
    gap: 2rem;
  }
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-back-to-archive {
  text-align: center;
  color: var(--color-gray);
  flex: 1;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-primary);
  flex: 1;
}
@media screen and (max-width: 767px) {
  .magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn {
    max-width: none;
    width: 100%;
  }
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn .magazine-post-page-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn .magazine-post-post-infos {
  padding-right: 0.5rem;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn .magazine-post-post-infos .magazine-post-label {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 0.31rem;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn.next-btn {
  justify-content: end;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn.next-btn .magazine-post-label {
  text-align: right;
}
.magazine-post-section .row .magazine-post-page-nav .magazine-post-page-nav-btn.next-btn .magazine-post-title {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .magazine-post-section .row .ultimi-articoli-sidebar h3 {
    margin-top: 2rem;
  }
}

.last-magazines-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: solid 1px #dddddd;
  padding: 0.7rem 0;
  color: var(--color-primary);
}
.last-magazines-card .last-magazines-picture {
  width: 90px;
}
.last-magazines-card .last-magazines-infos .last-magazines-pub-date {
  font-size: 0.85rem;
}

.magazine-section .view-all-group .section-subtitle {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.breadcrumb-container {
  margin-top: 1rem;
}
.breadcrumb-container ol {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .breadcrumb-container ol {
    flex-direction: column;
    text-align: center;
  }
}
.breadcrumb-container ol li a {
  color: var(--color-primary);
}
.breadcrumb-container ol .separator {
  margin: 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb-container ol .separator {
    display: none;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 6px;
  padding: 0;
}

.pagination li {
  display: inline-block;
}

.pagination a,
.pagination span {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
}

.pagination .current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.form-section-special h3.title {
  font-size: 1.7rem;
}

.contatti-page .wp-block-column {
  padding: 0 1rem;
}
.contatti-page .wp-block-list {
  list-style: disc;
  padding-left: 2rem;
}
.contatti-page .wp-block-list li {
  padding: 0.4rem 0;
}

.assistenza-clienti-page,
.faq-page {
  padding: 3rem 0;
}
@media screen and (max-width: 992px) {
  .assistenza-clienti-page,
  .faq-page {
    padding: 2rem 0;
  }
}

.assistenza-clienti-page .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 2rem;
}
@media screen and (max-width: 992px) {
  .assistenza-clienti-page .card-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.assistenza-clienti-page .card-grid .card {
  display: flex;
  align-items: center;
  background-color: var(--color-gray-light);
  border-radius: 1rem;
  overflow: hidden;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .assistenza-clienti-page .card-grid .card {
    height: 120px;
  }
}
.assistenza-clienti-page .card-grid .card .pic-wrapper {
  width: 200px;
  height: 100%;
  flex: none;
}
@media screen and (max-width: 767px) {
  .assistenza-clienti-page .card-grid .card .pic-wrapper {
    width: 120px;
  }
}
.assistenza-clienti-page .card-grid .card .pic-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
.assistenza-clienti-page .card-grid .card .info-wrapper {
  flex: 1;
  padding: 1.5rem;
}
.assistenza-clienti-page .card-grid .card .info-wrapper h3.title {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .assistenza-clienti-page .card-grid .card .info-wrapper h3.title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
}
.assistenza-clienti-page .card-grid .card .info-wrapper .body {
  font-size: 1rem;
  color: var(--color-gray);
  line-height: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .assistenza-clienti-page .card-grid .card .info-wrapper .body {
    font-size: 0.8rem;
    line-height: 1rem;
    -webkit-line-clamp: 2;
  }
}
.assistenza-clienti-page .card-grid .card .info-wrapper .body p {
  font-size: 1rem;
  line-height: 1.3rem;
}
@media screen and (max-width: 767px) {
  .assistenza-clienti-page .card-grid .card .info-wrapper .body p {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}
.assistenza-clienti-page .card-grid .card .info-wrapper a.read-more {
  display: block;
  margin-top: 0.8rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  text-decoration: underline;
  font-weight: 600;
}

/* Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.modal-overlay .modal {
  background: #fff;
  padding: 6rem;
  border-radius: 8px;
  max-width: 1000px;
  width: 90%;
  margin: 0 3rem;
  position: relative;
  animation: pop 0.3s ease forwards;
}
@media screen and (max-width: 992px) {
  .modal-overlay .modal {
    padding: 2rem;
  }
}
.modal-overlay .modal .modal-body {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}
@media screen and (max-width: 992px) {
  .modal-overlay .modal .modal-body {
    flex-direction: column;
  }
}
.modal-overlay .modal .modal-body .modal-pic {
  flex: none;
  max-width: 250px;
}
.modal-overlay .modal .modal-body .modal-infos {
  flex: 1;
}
.modal-overlay .modal .modal-body .modal-infos #modal-title {
  font-size: 2rem;
}
.modal-overlay .modal .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@keyframes pop {
  from {
    transform: translateY(-150px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}