@charset "UTF-8";
:root {
  --green:#5c9e31;
  --green-dark:#477f23;
  --ink:#262626;
  --muted:#6c757d;
  --line:#e5e5e5;
  --soft:#f6f7f5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

.green-header a, .green-footer a {
  text-decoration: none;
}

.green-topbar {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  font-size: 12px;
  color: #666;
}

.green-topbar__row {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.green-topbar__message {
  margin-right: auto;
  text-align: left;
}

.green-topbar__links {
  margin-left: auto;
}

.green-topbar nav {
  display: flex;
  gap: 22px;
}

.green-topbar a {
  color: #555;
}

#contactoanunciatefrm .form-control--select,
.green-product-page .form-control--select {
  direction: ltr;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 12px 8px;
  padding-right: 36px;
}

.green-header__main {
  height: 108px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.green-logo img {
  max-height: 70px;
  object-fit: contain;
}

.green-header__claim {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #777;
}

.green-header__claim strong {
  font-size: 15px;
  color: #333;
}

.green-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
}

.green-phone > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.green-phone span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.green-phone strong {
  font-size: 18px;
  color: #222;
}

.green-mobile-phone {
  display: none;
}

.green-menu-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 3px;
}

.green-nav {
  background: var(--green);
}

.green-nav__inner {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.green-nav__links {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.green-nav__links > a, .green-brands > button {
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  padding: 0 20px;
}

.green-brands > button i {
  margin-left: 8px;
}

.green-nav__links > a:hover, .green-brands > button:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #fff;
}

.green-nav__message {
  color: #efffe6;
  font-size: 13px;
}

.green-brands {
  position: relative;
  display: flex;
}

.green-brands__menu {
  display: none;
  position: absolute;
  z-index: 50;
  top: 54px;
  left: 0;
  width: 680px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.green-brands:hover .green-brands__menu {
  display: block;
}

.green-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 20px;
}

.green-brands__grid a {
  padding: 7px;
  color: #444;
  border-bottom: 1px solid #eee;
}

.green-brands__grid a:hover {
  color: var(--green);
}

.green-hero__slide {
  height: 470px;
  background-size: cover;
  background-position: center;
}

.green-hero__slide--one {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.83) 44%, rgba(255, 255, 255, 0) 72%), url("../img/slider/slider01.jpg");
}

.green-hero__slide--two {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.83) 44%, rgba(255, 255, 255, 0) 72%), url("../img/slider/slider02.jpg");
}

.green-hero__slide--three {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.83) 44%, rgba(255, 255, 255, 0) 72%), url("../img/slider/slider03.jpg");
}

.green-hero__content {
  padding-top: 92px;
  max-width: 570px;
}

.green-hero__content h1 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 12px;
}

.green-hero__content h2 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 18px;
}

.green-hero__content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 28px;
}

.green-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff !important;
  padding: 13px 24px;
  border-radius: 2px;
  font-weight: 500;
}

.green-button:hover {
  background: var(--green-dark);
}

.green-hero .carousel-control {
  width: 55px;
  background: none;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-hero .carousel-control span.fa {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #444;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  text-shadow: none;
}

.green-features {
  border-bottom: 1px solid var(--line);
}

.green-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
}

.green-features__grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.green-features__grid > div:first-child {
  padding-left: 0;
}

.green-features__grid > div:last-child {
  border: 0;
}

.green-features i {
  font-size: 30px;
  color: var(--green);
}

.green-features span {
  font-size: 12px;
  color: #777;
}

.green-features strong {
  display: block;
  font-size: 14px;
  color: #333;
}

.green-section {
  padding: 70px 0;
}

.green-section--soft {
  background: var(--soft);
}

.green-section__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.green-section__heading span, .green-about__content > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.green-section__heading h2, .green-about h2 {
  font-size: 29px;
  margin: 5px 0 0;
  font-weight: 700;
}

.green-section__heading p {
  color: #777;
  margin: 0;
}

.green-heading-link {
  color: var(--green);
  font-weight: 500;
}

.green-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.green-brand-card {
  min-height: 120px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 15px;
  background: #fff;
  color: #333;
  transition: 0.15s;
}

.green-brand-card:hover {
  border-color: var(--green);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  color: var(--green);
}

.green-brand-card__image {
  grid-column: 1/3;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.green-brand-card img {
  max-width: 90px;
  max-height: 48px;
}

.green-brand-card strong {
  font-size: 13px;
}

.green-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.green-vehicle-card {
  background: #fff;
  border: 1px solid var(--line);
  min-width: 0;
  transition: 0.2s;
}

.green-vehicle-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.green-vehicle-card__image {
  height: 205px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.green-vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.green-vehicle-card__image span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(92, 158, 49, 0.92);
  color: #fff;
  padding: 8px;
  transform: translateY(100%);
  transition: 0.2s;
}

.green-vehicle-card:hover .green-vehicle-card__image span {
  transform: none;
}

.green-vehicle-card__body {
  padding: 18px;
}

.green-vehicle-card__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.green-vehicle-card h3 {
  font-size: 17px;
  line-height: 1.35;
  margin: 6px 0 13px;
  min-height: 46px;
}

.green-vehicle-card h3 a {
  color: #222;
}

.green-vehicle-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 12px;
  color: #777;
}

.green-vehicle-card li i {
  margin-right: 5px;
  color: #999;
}

.green-vehicle-card__link {
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
}

.green-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 410px;
  background: #f4f4f4;
}

.green-about__content {
  padding: 55px;
}

.green-about__content p {
  font-size: 16px;
  line-height: 1.7;
  color: #606060;
}

.green-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-stock {
  padding-top: 20px;
}

.green-stock__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.green-stock__links a {
  padding: 13px 16px;
  background: #fff;
  color: #555;
}

.green-stock__links a:hover {
  color: var(--green);
}

.green-footer {
  background: #2d2d2d;
  color: #aaa;
  margin-top: 40px;
}

.green-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 55px;
  padding: 55px 0;
}

.green-footer h3 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 22px;
}

.green-footer p {
  line-height: 1.7;
}

.green-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.green-footer li {
  margin: 10px 0;
}

.green-footer a {
  color: #bbb;
}

.green-footer a:hover {
  color: #fff;
}

.green-footer__about img {
  max-width: 220px;
  max-height: 60px;
  margin-bottom: 20px;
}

.green-footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.green-footer__contact i {
  font-size: 27px;
  color: var(--green);
}

.green-footer__contact span {
  display: flex;
  flex-direction: column;
}

.green-footer__contact strong {
  color: #fff;
  font-size: 18px;
}

.green-footer__cta {
  display: inline-block;
  border-bottom: 1px solid var(--green);
  padding-bottom: 5px;
}

.green-footer__bottom {
  border-top: 1px solid #444;
  padding: 19px 0;
  font-size: 12px;
}

.green-footer__bottom .container {
  display: flex;
  justify-content: space-between;
}

#whatsappfloat {
  z-index: 100;
}

.top-header {
  display: none;
}

@media (max-width: 991px) {
  .green-topbar, .green-header__claim, .green-nav__message {
    display: none;
  }
  .green-header__main {
    height: 78px;
  }
  .green-logo img {
    width: 190px;
  }
  .green-phone {
    margin-left: auto;
  }
  .green-menu-toggle {
    display: block;
  }
  .green-nav__inner {
    display: none;
    height: auto;
    padding: 0;
  }
  .green-nav__inner.is-open {
    display: block;
  }
  .green-nav__links {
    display: block;
  }
  .green-nav__links > a, .green-brands > button {
    height: 48px;
    width: 100%;
    padding: 0 15px;
  }
  .green-brands {
    display: block;
  }
  .green-brands__menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }
  .green-brands:hover .green-brands__menu {
    display: none;
  }
  .green-brands__menu.is-open {
    display: block;
  }
  .green-brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .green-vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .green-features__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
  }
  .green-features__grid > div:nth-child(2) {
    border: 0;
  }
  .green-stock__links {
    grid-template-columns: repeat(3, 1fr);
  }
  .green-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .green-hero__slide {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .green-header__main {
    gap: 12px;
  }
  .green-phone {
    display: none;
  }
  .green-menu-toggle {
    margin-left: auto;
  }
  .green-mobile-phone {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 15px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  .green-mobile-phone strong {
    color: var(--green);
    font-size: 20px;
    line-height: 1;
  }
  .green-logo img {
    width: 165px;
  }
  .green-hero__slide {
    height: 390px;
    background-position: 65% center;
  }
  .green-hero__content {
    padding: 65px 32px 0 10px;
  }
  .green-hero__content h1 {
    font-size: 14px;
  }
  .green-hero__content h2 {
    font-size: 30px;
  }
  .green-hero__content p {
    font-size: 15px;
  }
  .green-features__grid {
    grid-template-columns: 1fr;
  }
  .green-features__grid > div {
    border: 0;
    padding: 0;
  }
  .green-section {
    padding: 45px 0;
  }
  .green-section__heading {
    display: block;
  }
  .green-section__heading p {
    margin-top: 12px;
  }
  .green-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .green-vehicle-grid {
    grid-template-columns: 1fr;
  }
  .green-about {
    grid-template-columns: 1fr;
  }
  .green-about__content {
    padding: 32px 25px;
  }
  .green-about__image {
    height: 230px;
  }
  .green-stock__links {
    grid-template-columns: 1fr;
  }
  .green-footer__grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .green-footer__bottom .container {
    display: block;
  }
  .green-footer__bottom span {
    display: block;
    margin: 4px 0;
  }
}
/* Portada basada en index-2.html */
.green-home .block-slideshow {
  margin-bottom: 45px;
}

.despiece-slide {
  background-position: center;
  background-size: cover;
}

.despiece-slide--one {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 43%, rgba(255, 255, 255, 0) 70%), url("../img/slider/slider01.jpg");
}

.despiece-slide--two {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 43%, rgba(255, 255, 255, 0) 70%), url("../img/slider/slider02.jpg");
}

.despiece-slide--three {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 43%, rgba(255, 255, 255, 0) 70%), url("../img/slider/slider03.jpg");
}

.green-home .block-slideshow__slide-content {
  max-width: 650px;
  left: 72px;
  right: 72px;
}

.green-home .block-slideshow__slide-title {
  font-weight: 700;
}

.despiece-brands-block {
  margin-top: 50px;
  padding: 45px 0;
}

.despiece-brands-block .category-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.despiece-brands-block .category-card__image img {
  max-width: 105px;
  max-height: 70px;
  object-fit: contain;
}

.despiece-brands-block .category-card__body {
  min-height: 170px;
}

.despiece-products {
  margin-top: 55px;
  margin-bottom: 55px;
}

.despiece-products .product-card__image img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}

.despiece-products .product-card__name {
  min-height: 44px;
}

.despiece-products .product-card__prices {
  font-size: 16px;
}

.despiece-block-link {
  white-space: nowrap;
  color: var(--green);
  margin-right: 18px;
}

.green-home .owl-carousel .owl-item img {
  width: 100%;
}

.green-home .block-header__arrow i {
  font-size: 17px;
}

.green-home .product-card__addtocart {
  color: #fff;
}

.green-home .product-card__addtocart:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .green-home .block-slideshow__slide-content {
    left: 28px;
    right: 28px;
    padding: 16px 20px 18px;
    background: rgba(255, 255, 255, 0.58);
    border-radius: 4px;
  }
  .green-home .block-slideshow__slide-text {
    display: block;
    opacity: 1;
    transform: none;
  }
  .green-home .block-slideshow__slide-text br {
    display: none;
  }
  .despiece-brands-block .category-card__body {
    min-height: 145px;
  }
  .despiece-brands-block .category-card__image img {
    max-width: 80px;
    max-height: 55px;
  }
  .despiece-products .product-card__image img {
    height: 170px;
  }
  .despiece-block-link {
    display: none;
  }
}
/* Ficha de producto */
.green-product-page .catalog-breadcrumb {
  margin-bottom: 0;
}

.green-product-page .product {
  margin-bottom: 60px;
}

.green-product-page .product-gallery__featured {
  border: 1px solid var(--line);
  background: #fff;
}

.green-product-page .product-image__body {
  height: 470px;
}

.green-product-page .product-image__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.green-product-page .product-gallery__carousel .product-image__body {
  height: 78px;
}

.green-product-page .product-gallery__carousel {
  margin-top: 12px;
}

.green-product-page .product-gallery__carousel .owl-item {
  border: 1px solid var(--line);
  cursor: pointer;
}

.despiece-product-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 12px;
  margin-bottom: 12px;
}

.despiece-product-status .badge {
  padding: 6px 9px;
  font-size: 11px;
}

.despiece-verified {
  color: var(--green);
  font-weight: 500;
}

.despiece-verified i {
  margin-right: 5px;
}

.green-product-page .product__features li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
  padding: 7px 0;
}

.green-product-page .product__features li span {
  font-weight: 500;
  color: #333;
}

.despiece-product-action {
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
}

.despiece-product-action .product__prices {
  font-size: 24px;
  margin: 12px 0;
}

.despiece-product-action > p {
  color: #666;
  line-height: 1.55;
}

.despiece-product-info {
  padding-top: 28px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .green-product-page .product__sidebar {
    grid-column: info;
    grid-row: 1;
    margin-top: 0;
  }
}
.despiece-seller {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.despiece-seller h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.despiece-seller a {
  font-size: 19px;
  color: var(--green);
  font-weight: 700;
}

.despiece-action-benefits {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 17px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #666;
  font-size: 13px;
}

.despiece-action-benefits span {
  white-space: nowrap;
}

.despiece-action-benefits i {
  color: var(--green);
  width: 22px;
}

.despiece-product-details {
  background: var(--soft);
  padding: 55px 0 70px;
}

.despiece-tabs-nav {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 30px;
}

.despiece-tabs-nav button {
  border: 0;
  background: transparent;
  padding: 14px 22px;
  font-weight: 500;
  color: #666;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.despiece-tabs-nav button.active {
  color: var(--green);
  border-color: var(--green);
}

.despiece-tab {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  padding: 35px;
}

.despiece-tab.active {
  display: block;
}

.despiece-tab h2 {
  font-size: 24px;
  margin: 0 0 22px;
}

.despiece-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.despiece-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.despiece-specs span {
  color: #777;
}

.despiece-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.despiece-form-full {
  grid-column: 1/3;
}

.despiece-product-action .despiece-form-grid {
  grid-template-columns: 1fr;
}

.despiece-product-action .despiece-form-full {
  grid-column: 1;
}

.despiece-loading {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  place-items: center;
  text-align: center;
}

.despiece-loading > div {
  background: #fff;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .green-product-page .product-image__body {
    height: 380px;
  }
  .green-product-page .product__sidebar {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .green-product-page .product-image__body {
    height: 300px;
  }
  .despiece-tabs-nav {
    overflow-x: auto;
  }
  .despiece-tabs-nav button {
    white-space: nowrap;
    padding: 12px;
  }
  .despiece-tab {
    padding: 24px 18px;
  }
  .despiece-specs {
    grid-template-columns: 1fr;
  }
  .despiece-form-grid {
    grid-template-columns: 1fr;
  }
  .despiece-form-full {
    grid-column: 1;
  }
  .despiece-product-details {
    padding: 35px 0;
  }
}
/* Listados y filtros */
.green-listing-page > .container > .breadcrumb {
  margin: 25px 0 0;
  padding: 13px 18px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 13px;
}

.green-listing-page > .container > .breadcrumb > li + li:before {
  content: "›";
  color: #aaa;
  padding: 0 9px;
}

.green-listing-page .car-list.content-area {
  padding: 38px 0 65px;
  background: #fff;
}

.green-listing-page .car-list > .container > .row {
  display: flex;
  align-items: flex-start;
}

.green-listing-page .car-list > .container > .row > div:first-child {
  width: 300px;
  flex: 0 0 300px;
}

.green-listing-page .car-list > .container > .row > div:last-child {
  width: auto;
  flex: 1;
  min-width: 0;
}

.green-listing-page #zonafiltros {
  border: 1px solid var(--line);
  padding: 0;
  background: #fff;
  margin: 0 25px 0 0;
}

.green-listing-page #zonafiltros form > .section-heading {
  margin: 0;
  padding: 20px 22px;
  background: var(--green);
  color: #fff;
}

.green-listing-page #zonafiltros form > .section-heading i {
  display: none;
}

.green-listing-page #zonafiltros form > .section-heading h2 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}

.green-listing-page #zonafiltros form > .section-heading h4 {
  font-size: 12px;
  color: #eaffdd;
  margin: 5px 0 0;
}

.green-listing-page #zonafiltros form > .section-heading .border {
  display: none;
}

.green-listing-page #zonafiltros .search-block {
  padding: 20px 22px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.green-listing-page #zonafiltros .search-block:last-child {
  border-bottom: 0;
}

.green-listing-page #zonafiltros .search-block h2.title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 15px;
  color: #333;
}

.green-listing-page #zonafiltros .checkbox {
  margin: 9px 0;
}

.green-listing-page #zonafiltros .checkbox label {
  font-size: 13px;
  color: #555;
  padding-left: 27px;
  line-height: 18px;
  cursor: pointer;
}

.green-listing-page #zonafiltros .checkbox input {
  width: 16px;
  height: 16px;
  margin-left: 0;
  accent-color: var(--green);
}

.green-listing-page #zonafiltros .slider-price-amont {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 12px;
  margin-bottom: 12px;
}

.green-listing-page #zonafiltros .slider.slider-horizontal {
  width: 100%;
}

.green-listing-page #zonafiltros .slider-selection {
  background: var(--green);
}

.green-listing-page #zonafiltros .slider-handle {
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--green);
}

.green-listing-page #zonafiltros .price-box .col-lg-6 {
  width: 50%;
  float: left;
  padding: 0 5px;
}

.green-listing-page #zonafiltros .price-box label {
  font-size: 11px;
}

.green-listing-page #zonafiltros .form-control {
  height: 35px;
  font-size: 12px;
  padding: 7px;
}

.green-listing-page #zonafiltros button.details-button {
  width: 100%;
  background: var(--green);
  border: 0;
  color: #fff;
  padding: 11px 18px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.green-listing-page #zonafiltros button.details-button:hover {
  background: var(--green-dark);
}

.green-listing-page .mostrarfiltros {
  display: none;
}

.green-listing-page .option-bar {
  border: 0;
  margin: 0 0 22px;
  background: transparent;
  padding: 0;
}

.green-listing-page .option-bar .section-heading {
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
  margin: 0;
}

.green-listing-page .option-bar .section-heading > i, .green-listing-page .option-bar .section-heading .border {
  display: none;
}

.green-listing-page .option-bar .section-heading h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 9px;
  color: #222;
}

.green-listing-page .option-bar .section-heading h4 {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin: 0;
  font-weight: 400;
}

.green-listing-page .list-car-box {
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: 18px;
  padding: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.green-listing-page .list-car-box:hover {
  border-color: #ccc;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.green-listing-page .list-car-box > .row {
  margin: 0;
  display: flex;
  align-items: stretch;
}

.green-listing-page .list-car-box > .row > div:first-child {
  padding: 0;
  width: 245px;
  flex: 0 0 245px;
  background: #fafafa;
}

.green-listing-page .list-car-box > .row > div:first-child > a {
  display: block;
  height: 100%;
  min-height: 205px;
}

.green-listing-page .list-car-box > .row > div:first-child img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  object-fit: contain;
}

.green-listing-page .list-car-box .car-content {
  width: auto;
  flex: 1;
  padding: 22px 24px;
}

.green-listing-page .list-car-box .car-content .header h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.green-listing-page .list-car-box .car-content .header h3 a {
  color: #222;
}

.green-listing-page .list-car-box .car-content .header h3 a:hover {
  color: var(--green);
}

.green-listing-page .list-car-box .line-border {
  height: 2px;
  width: 38px;
  background: var(--green);
  margin: 0 0 13px;
}

.green-listing-page .list-car-box .car-content > p {
  font-size: 12px;
  color: #777;
  margin: 0 0 12px;
}

.green-listing-page .list-car-box .item {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.green-listing-page .list-car-box .item > div {
  padding: 0;
  width: auto;
  flex: 1;
}

.green-listing-page .list-car-box .item > div:last-child {
  flex: 0 0 auto;
}

.green-listing-page .list-car-box .item p {
  font-size: 13px;
  color: #555;
  margin: 7px 0;
}

.green-listing-page .list-car-box .item p span {
  color: #888;
  margin-right: 4px;
}

.green-listing-page .list-car-box a.details-button {
  background: var(--green);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 2px;
}

.green-listing-page .list-car-box a.details-button:hover {
  background: var(--green-dark);
}

.green-listing-page .sin-registros {
  padding: 30px;
  color: #777;
}

.green-listing-page .pagination > li > a, .green-listing-page .pagination > li > span {
  color: #555;
  border-color: var(--line);
}

.green-listing-page .pagination > .active > a, .green-listing-page .pagination > .active > span {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.green-listing-page .listados-enlaces-pie {
  margin: 20px 0 60px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.green-listing-page .listados-enlaces-pie .section-heading i, .green-listing-page .listados-enlaces-pie .border {
  display: none;
}

.green-listing-page .listados-enlaces-pie .section-heading h2 {
  font-size: 24px;
}

.green-listing-page .listados-enlaces-pie ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.green-listing-page .listados-enlaces-pie li {
  width: calc(25% - 20px);
}

.green-listing-page .listados-enlaces-pie a {
  color: #555;
}

.green-listing-page .listados-enlaces-pie a:hover {
  color: var(--green);
}

@media (max-width: 991px) {
  .green-listing-page .car-list > .container > .row {
    display: block;
  }
  .green-listing-page .car-list > .container > .row > div:first-child, .green-listing-page .car-list > .container > .row > div:last-child {
    width: 100%;
    display: block;
  }
  .green-listing-page .mostrarfiltros {
    display: block;
    margin-bottom: 18px;
  }
  .green-listing-page .mostrarfiltros a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green);
    color: #fff;
    padding: 12px;
    font-weight: 500;
  }
  .green-listing-page #zonafiltros {
    display: none;
    margin: 0 0 25px;
  }
  .green-listing-page .listados-enlaces-pie li {
    width: calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .green-listing-page .car-list.content-area {
    padding-top: 25px;
  }
  .green-listing-page .option-bar .section-heading h1 {
    font-size: 23px;
  }
  .green-listing-page .list-car-box > .row {
    display: block;
  }
  .green-listing-page .list-car-box > .row > div:first-child {
    width: 100%;
    height: 220px;
  }
  .green-listing-page .list-car-box .car-content {
    width: 100%;
    padding: 18px;
  }
  .green-listing-page .list-car-box .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .green-listing-page .list-car-box .item > div:last-child {
    grid-column: 1/3;
  }
  .green-listing-page .list-car-box a.details-button {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 8px;
  }
  .green-listing-page .listados-enlaces-pie {
    padding: 20px;
  }
  .green-listing-page .listados-enlaces-pie li {
    width: 100%;
  }
}
.green-listing-page .list-car-box a.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  height: 40px;
  line-height: 1;
  padding: 0 18px;
  margin: 8px 0 !important;
}

.green-listing-page #zonafiltros button.details-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  height: 42px;
  line-height: 1;
  padding: 0 18px;
  margin: 0 !important;
}

@media (max-width: 600px) {
  .green-listing-page .list-car-box a.details-button {
    display: flex;
    margin: 8px 0 !important;
  }
}
/* Tarjetas de marcas, gamas y modelos */
.listados-gammas li, .listados-gamas-marca li {
  flex: 0 0 200px;
  width: 200px;
  max-width: 100%;
  overflow: hidden;
  padding: 12px;
}

.listados-gammas li .foto, .listados-gamas-marca li .foto {
  width: 100%;
  height: 125px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.listados-gammas li .foto img, .listados-gamas-marca li .foto img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 125px;
  object-fit: contain;
  margin: auto;
}

@media (max-width: 600px) {
  .listados-gammas li, .listados-gamas-marca li {
    flex-basis: 50%;
    width: 50%;
    padding: 10px;
  }
  .listados-gammas li .foto, .listados-gamas-marca li .foto {
    height: 95px;
  }
  .listados-gammas li .foto img, .listados-gamas-marca li .foto img {
    max-height: 95px;
  }
}
.page-header__breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.page-header__breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
}

.page-header__breadcrumb .breadcrumb-arrow {
  display: block;
  flex: none;
  margin: 0 11px;
  color: #b5b5b5;
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px 0 0;
  padding: 13px 18px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 13px;
}

.catalog-breadcrumb > li {
  display: flex;
  align-items: center;
}

.catalog-breadcrumb > li + li:before {
  content: "›";
  display: inline-block;
  color: #aaa;
  padding: 0 9px;
}

.catalog-breadcrumb > .active {
  color: #777;
}

.green-news-page #zonafiltros {
  padding: 18px 20px;
}

.green-news-page #zonafiltros h2 {
  font-size: 17px;
  margin: 0 -20px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--line);
}

.green-news-page #zonafiltros h2:first-child {
  margin-top: -18px;
}

.green-news-page #zonafiltros h2 a {
  color: #333;
}

.green-news-page #zonafiltros h2 a:hover {
  color: var(--green);
}

.green-news-page #zonafiltros ul {
  list-style: none;
  margin: 0 -20px;
  padding: 10px 20px 14px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 4px 12px;
}

.green-news-page #zonafiltros li a {
  font-size: 13px;
  color: #666;
}

.green-news-page #zonafiltros li a:hover {
  color: var(--green);
}

.green-news-page .filtro-novedades-dia {
  margin-top: 18px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.green-news-page .filtro-novedades-dia h3 {
  font-size: 14px;
  margin: 0 0 12px;
  color: #333 !important;
}

.green-news-page .filtro-novedades-dia ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.green-news-page .filtro-novedades-dia li {
  padding: 0;
}

.green-news-page .filtro-novedades-dia a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 9px;
  color: #555;
}

.green-news-page .filtro-novedades-dia a:hover {
  border-color: var(--green);
  color: var(--green);
}

/*# sourceMappingURL=green-migration.css.map */
