/* ============================================
   STORES LOCATOR - Red de Atención
============================================ */

.stores-locator {
  background: transparent;
  margin-block-start: 0 !important;
}

/* ============================================
   HERO SECTION
============================================ */

.stores-locator__background {
  background-size: cover;
  background-position: bottom right;
  position: relative;
  overflow: hidden;
}
.stores-locator__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none;
}

.stores-locator__hero {
  padding-top: 80px;
  position: relative;
  z-index: 2;
  padding-inline: 24px;
}

.stores-locator__hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.stores-locator__hero-title {
  font-family: var(--font-geely);
  font-weight: 700;
  color: var(--c-black);
}

.stores-locator__hero-description {
  font-family: var(--font-inter);
  font-weight: 500;
  color: var(--c-black);
  margin-top: 16px;
}

/* ============================================
   MAIN CONTAINER
============================================ */

.stores-locator__main {
  padding: 0 24px 80px;
}

.stores-locator__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================================
   FILTERS
============================================ */
.stores-locator__filters {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  z-index:100;
}

.stores-locator__filter-group {
  flex: 1;
  min-width: 200px;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stores-locator__filter-group--geo {
  flex: 0 0 auto;
  min-width: auto;
  margin-top: 16px;
  padding: 3.43px 11.43px;

  position: relative;
  z-index: 1;
}c
.stores-locator__filter-group:has(.stores-locator__custom-select) {
  z-index: 200;
}

.stores-locator__select-wrapper {
  position: relative;
  width: 100%;
    z-index: 100;

}

.stores-locator__select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.stores-locator__select {
  width: 100%;
  height: 56px;
  padding: 16px 16px 16px 48px;
  font-family: var(--font-inter);
  font-weight: 500;
  color: #212529;
  font-size: var(--fs-p-4);
  line-height: var(--lh-p-4);
  background: var(--c-white);
  border: 1px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58L10.59 0L12 1.41L6 7.41L0 1.41L1.41 0Z' fill='%236C757D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.3s ease;
  box-shadow: 0 4px 4px 0 rgba(189, 189, 189, 0.3);
}

.stores-locator__select:has(> option:checked[value=""]) {
  color: rgba(33, 37, 41, 0.5);
}

.stores-locator__select option {
  color: #212529;
}

.stores-locator__select:hover {
  border-color: var(--c-greely-blue);
}

.stores-locator__select:focus {
  outline: none;
  border-color: var(--c-greely-blue);
  /* box-shadow: 0 0 0 3px rgba(2, 123, 255, 0.1); */
}

/* Geolocation Checkbox */
.stores-locator__geo-label {
  display: inline-flex;
  align-items: center;
  gap: 11.86px;
  cursor: pointer;
  user-select: none;
}

.stores-locator__geo-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--c-greely-blue);
  margin: 0;
}

.stores-locator__geo-text {
  font-family: var(--font-inter);
  font-size: var(--fs-p-4);
  color: #212529;
  white-space: nowrap;
}

.stores-locator__description{
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  font-family: var(--font-inter);
}

/* ============================================
   GRID LAYOUT (Stores List + Map)
============================================ */

.stores-locator__grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  /* grid-template-columns: 473px 767px; */
  grid-template-columns: 473px minmax(0, 767px);
  gap: 40px;
  margin-top: 40px;
  z-index: 1;
}

/* ============================================
   STORES LIST (Left Column)
============================================ */

.stores-locator__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 596px;
  overflow-y: auto;
  padding-right: 21px;
  position: relative;
  z-index:1;
}

.stores-locator__list::-webkit-scrollbar {
  width: 12px;
  height: 120px;
}

.stores-locator__list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 40px;
}

.stores-locator__list::-webkit-scrollbar-thumb {
  background: #afb6b9;
  border-radius: 40px;
}

.stores-locator__list::-webkit-scrollbar-thumb:hover {
  background: #afb6b9;
}

.stores-locator__empty {
  font-family: var(--font-inter);
  font-size: var(--fs-p-3);
  color: #6c757d;
  text-align: center;
  padding: 40px 20px;
}

/* ============================================
   STORE CARD
============================================ */

.stores-locator__card {
  background: linear-gradient(
    180deg,
    #EEF1FB 0%,
    #F5F7FD 40%,
    #EAF0FA 70%,
    #E8EEFA 100%
  );
  border: 1px solid #fff;
  /* border-radius: 12px; */
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(189, 189, 189, 0.5);
}

.stores-locator__card:hover {
  border-color: var(--c-greely-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stores-locator__card.is-active {
  border-color: var(--c-greely-blue);
  /* box-shadow: 0 4px 16px rgba(2, 123, 255, 0.15); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stores-locator__card.is-hidden {
  display: none;
}

.stores-locator__card-badge {
  display: inline-block;
  padding: 2px 16px;
  color: var(--c-black);
  font-family: var(--font-geely);
  font-size: var(--fs-title-sm-7);
  line-height: var(--lh-title-sm-7);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stores-locator__card-title {
  font-family: var(--font-geely);
  font-size: var(--fs-p-1);
  line-height: var(--lh-p-1);
  font-weight: 700;
  color: var(--c-black);
  text-transform: uppercase;
  padding-block: 13.5px;
  margin-top: 8px;
}

.stores-locator__card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.stores-locator__card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: var(--fs-p-4);
  line-height: var(--lh-p-4);
  color: var(--c-black);
  font-weight: 500;
}

.stores-locator__card-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.stores-locator__card-item a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--c-black);
  text-underline-offset: 3px;
}

.stores-locator__card-item a:hover {
  text-decoration: underline;
}

.stores-locator__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  color: var(--c-greely-blue);
  text-decoration: none;
  transition: gap 0.3s ease;
  margin-top: 16px;
  text-underline-offset: 3px;
}

.stores-locator__card-link:hover {
  gap: 12px;
}

.stores-locator__card-link svg {
  transition: transform 0.3s ease;
}

.stores-locator__card-link:hover svg {
  transform: translateX(4px);
}

.stores-locator__card-item--phone a {
  position: relative;
  z-index: 99;
}
.stores-locator__card-item--whatsapp a {
  position: relative;
  z-index: 99;
}

/* ============================================
   MAP CONTAINER (Right Column)
============================================ */

.stores-locator__map-container {
  position: sticky;
  top: 24px;
  height: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-height: 596px;
}

.stores-locator__map {
  width: 100%;
  height: 100%;
}

/* Google Maps Info Window Custom Styles */
.gm-style .gm-style-iw-c {
  border-radius: 8px !important;
  padding: 9px !important;
  max-width: 124px !important;
}
.gm-ui-hover-effect {
  width: 38px !important;
  height: 32px !important;
}
.gm-ui-hover-effect > span {
  margin-top: 0 !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.stores-locator__map-info {
  font-family: var(--font-inter);
}

.stores-locator__map-info h4 {
  font-family: var(--font-inter);
  font-size: var(--fs-title-sm-7);
  font-weight: 700;
  color: #595757;
  margin: 0 0 7px;
  text-transform: uppercase;
}

.stores-locator__map-info p {
  font-size: var(--fs-p-5);
  color: #495057;
  margin: 4px 0;
  line-height: 1.4;
}

/* ============================================
   PRODUCTS CAROUSEL SECTION
============================================ */

.stores-locator__products {
  padding-block: 80px;
  padding-inline: 24px;
}

.stores-locator__products-container {
  max-width: 1280px;
  margin: 0 auto;
}

.stores-locator__products-title {
  font-family: var(--font-geely);
  font-size: var(--fs-title-2);
  line-height: var(--lh-title-2);
  font-weight: 700;
  color: var(--c-black);
  text-align: center;
  text-transform: uppercase;
  min-height: 63px;
}

.stores-locator__products-subtitle {
  font-family: var(--font-inter);
  font-size: var(--fs-p-2);
  line-height: var(--lh-p-2);
  color: var(--c-black);
  text-align: left;
  margin-top: 16px;
  margin-inline: auto;
  font-weight: 500;
}

.stores-locator__products-carousel {
  position: relative;
  padding-block: 40px;
}
.stores-locator__products-carousel
  .stores-locator__products-slide:nth-last-of-type(1) {
  margin-right: 0 !important;
}
.stores-locator__products-slide {
  max-width: 405px;
}
.stores-locator__product-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stores-locator__product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.stores-locator__product-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 8px;
}

.stores-locator__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stores-locator__product-title {
  font-family: var(--font-geely);
  font-size: var(--fs-p-1);
  line-height: var(--lh-p-1);
  font-weight: 700;
  text-transform: uppercase;
  color: #212529;
  margin: 0 0 12px;
}

.stores-locator__product-price {
  font-family: var(--font-inter);
  font-size: var(--fs-p-5);
  color: #6c757d;
  margin: 0 0 24px;
}

.stores-locator__product-price strong {
  display: block;
  font-size: var(--fs-p-2);
  color: #027bff;
  font-weight: 700;
  margin-top: 4px;
}

.stores-locator__product-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.stores-locator__product-btn {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-inter);
  font-size: var(--fs-p-5);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
}

.stores-locator__product-btn--outline {
  background: #ffffff;
  color: #027bff;
  border: 2px solid #027bff;
}

.stores-locator__product-btn--outline:hover {
  background: #027bff;
  color: #ffffff;
}

.stores-locator__product-btn--primary {
  background: #212529;
  color: #ffffff;
  border: 2px solid #212529;
}

.stores-locator__product-btn--primary:hover {
  background: #027bff;
  border-color: #027bff;
}

/* Carousel Navigation */
.stores-locator__carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.stores-locator__carousel-prev,
.stores-locator__carousel-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #027bff;
  color: #027bff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stores-locator__carousel-prev:hover,
.stores-locator__carousel-next:hover {
  background: #027bff;
  color: #ffffff;
}

.stores-locator__carousel-prev.swiper-button-disabled,
.stores-locator__carousel-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.stores-locator__carousel-pagination {
  margin-top: 24px;
  text-align: center;
}

.stores-locator__carousel-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #dee2e6;
  opacity: 1;
  transition: all 0.3s ease;
}

.stores-locator__carousel-pagination .swiper-pagination-bullet-active {
  background: #027bff;
  width: 32px;
  border-radius: 6px;
}

.c-swiper-controls.controls-stores-locator {
  padding-inline: 0px;
  margin-top: 0;
}

.mf-card.stores-locator .mf-card__label {
  font-weight: 500;
  color: var(--c-black);
}

.mf-card.stores-locator .mf-card__usd {
  font-family: var(--font-geely);
  font-size: var(--fs-title-6);
  line-height: var(--lh-title-6);
  font-weight: 700;
  color: var(--c-black);
}
.mf-card.stores-locator .mf-card__dot {
  font-family: var(--font-inter);
  font-weight: 500;
  color: var(--c-black);
  font-size: var(--fs-p-4);
  line-height: var(--lh-p-4);
}
.mf-card.stores-locator .mf-card__local {
  font-family: var(--font-geely);
  font-size: var(--fs-title-6);
  line-height: var(--lh-title-6);
  font-weight: 700;
  color: var(--c-black);
}
.mf-card.stores-locator .mf-card__actions .mf-btn {
  font-family: var(--font-geely);
  font-weight: 700;
}

/* FAQS */
.stores-locator-main .faq-block {
  margin-top: 0;
}
.stores-locator-main .faq-block__inner {
  max-width: 1280px;
}

.stores-locator-main .faq-item__answer {
  max-width: 100%;
}
.stores-locator-main .faq-item__answer p {
  padding-right: 32px;
}

.stores-locator-main .faq-block__list {
  border-top: none;
}

.stores-locator__card-link--all {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 9;
}

/*  */
.stores-locator__products .mf-card__top {
  padding-block: 15px;
}
.stores-locator__products .mf-card__media {
  padding-block: 16px;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */

@media (max-width: 1279px) {
  .stores-locator__products-carousel {
    max-width: 961px;
  }
  /* .stores-locator__products-carousel .stores-locator__products-slide {
    max-width: 100%;
    width: calc(50% - 16px) !important;
  } */
  .stores-locator__grid {
    gap: 24px;
  }
  .stores-locator__map-container {
    height: 600px;
  }

  .stores-locator__list {
    max-height: 600px;
  }
}

@media (max-width: 1023px) {
  .stores-locator__grid {
    grid-template-columns: 1fr;
  }

  .stores-locator__map-container {
    position: relative;
    top: 0;
    height: 500px;
  }

  .stores-locator__list {
    /* max-height: none; */
    order: 2;
  }

  .stores-locator__map-container {
    order: 1;
  }

  .stores-locator__filters {
    gap: 12px;
  }

  .stores-locator__filter-group {
    min-width: 150px;
    position: static;
  }
}

@media (max-width: 767px) {
  .stores-locator__img {
    height: 100%;
    object-fit: cover;
  }
  .stores-locator__hero {
    padding: 40px 16px 0;
  }

 .stores-locator__custom-select.is-open .stores-locator__custom-dropdown {
    position: static;
    left: 16px;
    right: 16px;
    top: auto;
    z-index: 99999;
  }

.stores-locator__filter-group {
    position: static;
    width: 100%;
    min-width: 100%;
  }
 .stores-locator__select-wrapper {
    position: static;
  }

   .stores-locator__custom-select {
    position: static;
  }

  .stores-locator__custom-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    z-index: 9999;
    width: 100%;
  }

  .stores-locator__main {
    padding: 0 16px 40px;
  }

  .stores-locator__filters {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin-top: 32px;
    position: relative;
    z-index: 100;
  }

  .stores-locator__select {
    padding-block: 9px;
    height: 40px;
    padding-left: 44px;
  }
  .stores-locator__select-icon {
    width: 20px;
    height: 20px;
  }

  .stores-locator__geo-checkbox {
    width: 16.71px;
    height: 16.71px;
  }

  .stores-locator__filter-group,
  .stores-locator__filter-group--geo {
    width: 100%;
    min-width: 100%;
  }

  .stores-locator__geo-text {
    white-space: normal;
    color: var(--c-black);
  }

  .stores-locator__grid {
    gap: 32px;
    margin-top: 32px;
  }

  .stores-locator__map-container {
    height: 416px;
  }

  .stores-locator__card-link {
    font-size: var(--fs-p-5);
    line-height: var(--lh-p-5);
  }

  .stores-locator__list {
    /* padding-right: 9px; */
    /* max-height: 378px; */
    padding-right: 12px;
    max-height: 365px;
  }
  .stores-locator__list::-webkit-scrollbar {
    width: 6px;
    height: 80px;
  }

  .stores-locator__card {
    /* padding: 24px; */
    padding: 20px;
  }

  .stores-locator__card-item {
    align-items: flex-start;
    font-weight: 400;
  }

  .stores-locator__card-title {
    padding-block: 5.5px;
  }

  .stores-locator__products {
    padding: 40px 16px;
  }

  .stores-locator__products-carousel {
    padding: 24px 0;
    max-width: 405px;
  }

  .stores-locator__product-actions {
    flex-direction: column;
  }

  .stores-locator__carousel-prev,
  .stores-locator__carousel-next {
    width: 40px;
    height: 40px;
  }

  .stores-locator__products-title {
    font-size: var(--fs-title-sm-2);
    line-height: var(--lh-title-sm-2);
    min-height: auto;
  }
  .stores-locator__products-subtitle {
    font-size: var(--fs-p-4);
    line-height: var(--lh-p-4);
    margin-top: 24px;
    text-align: left;
  }

  .stores-locator__products-carousel .stores-locator__products-slide {
    /* width: calc(50% - 0px) !important; */
    /* width: 100% !important; */
    margin-right: 0 !important;
  }

  .stores-locator-main .faq-block {
    padding: 40px 16px;
  }
  .stores-locator-main .faq-item__question {
    padding-inline: 0;
  }
  .stores-locator-main .faq-item__answer {
    padding-inline: 0;
  }
  .stores-locator-main .faq-item__question-text {
    line-height: var(--lh-title-sm-3);
    font-weight: 700;
    color: var(--c-black);
  }
  .stores-locator-main .faq-item__answer {
  }
  .stores-locator-main .faq-item__answer p {
    font-size: var(--fs-p-4);
    line-height: var(--lh-p-4);
    color: var(--c-black);
    font-weight: 400;
  }
  .stores-locator-main .faq-block__title {
    font-size: var(--fs-title-sm-2);
    line-height: var(--lh-title-sm-2);
    margin-bottom: 24px;
  }
  .mf-card.stores-locator {
    margin-bottom: 16px;
    margin-inline: auto;
    max-width: 343px;
  }

  .stores-locator__products .mf-card__top {
    padding-block: 12px;
  }
  .stores-locator__products .mf-card__media {
  }
}
/*  */
@media (min-width: 768px) and (max-width: 1279px) {
  .stores-locator__products-carousel .stores-locator__products-slide {
    max-width: 100%;
    width: calc(50% - 16px) !important;
  }
}
/* @media (min-width: 1280px) {
  .stores-locator__hero {
  }
} */


/* ---------- Título con degradado en la última palabra ---------- */
 
.stores-locator__hero-title {
  display: block;
}
 
.stores-locator__hero-title .emg-title-highlight {
  background: linear-gradient(90deg, #182FD7 0%, #86DFBD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
 
/* ---------- Inputs / Selects compactos y translúcidos ---------- */
 
.stores-locator__select {
  height: 44px;
  padding: 10px 40px 10px 44px;
  background-color: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58L10.59 0L12 1.41L6 7.41L0 1.41L1.41 0Z' fill='%23555'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px 8px !important;
}
 
/* Quita la flecha nativa en navegadores basados en IE/Edge legacy */
.stores-locator__select::-ms-expand {
  display: none;
}
 
.stores-locator__select:hover {
  border-color: rgba(255, 255, 255, 1);
}
 
.stores-locator__select-icon {
  left: 14px;
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
 
.stores-locator__filter-group--geo {
  margin-top: 0;
  align-self: start;
  padding-left: 10px;
}
 
.stores-locator__geo-checkbox {
 width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #194BFF;
  border-radius: 3px;
  background: transparent;
  position: relative;
  flex-shrink: 0;
}
.stores-locator__geo-checkbox:checked {
  background-color: #194BFF;
  border-color: #194BFF;
}

/* El checkmark */
.stores-locator__geo-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
 
.stores-locator__geo-text {
  font-size: 16px;
  color: rgba(25, 75, 255, 1);
  font-weight: 500;
  font-family: var(--font-inter);
  line-height: 140%;
}
 
/* ---------- Badge de categoría: pill azul con icono ---------- */
 
.stores-locator__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #194BFF !important;
  background-image: none !important;
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-inter);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
 
.stores-locator__card-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M20 12V8H6a2 2 0 0 1-2-2c0-1.1.9-2 2-2h12v4'/%3E%3Cpath d='M4 6v12c0 1.1.9 2 2 2h14v-4'/%3E%3Cpath d='M18 12a2 2 0 0 0 0 4h4v-4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M20 12V8H6a2 2 0 0 1-2-2c0-1.1.9-2 2-2h12v4'/%3E%3Cpath d='M4 6v12c0 1.1.9 2 2 2h14v-4'/%3E%3Cpath d='M18 12a2 2 0 0 0 0 4h4v-4Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
 
/* ---------- Cards: esquinas redondeadas ---------- */
 
.stores-locator__card {
  border-radius: 14px;
}
 
.stores-locator__map-container {
  border-radius: 14px;
}
 
/* ---------- RESPONSIVE ---------- */
 
@media (max-width: 767px) {
  .stores-locator__select {
    height: 40px;
    padding: 8px 14px 8px 40px;
  }
  .stores-locator__hero-description{
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    font-family: var(--font-inter);

  }
 
  .stores-locator__select-icon {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .stores-locator__description{
   font-size: 14px;
  }
 
  .stores-locator__card {
    border-radius: 12px;
  }
 
  .stores-locator__map-container {
    border-radius: 12px;
  }
}

.stores-locator__card-badge::before {
  display: none;
}
 
/* Ícono Postventa (llave inglesa) */
.stores-locator__card-badge[data-category="postventa"]::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6293 4.9605C15.708 5.25825 15.75 5.5725 15.75 5.895C15.7502 6.47878 15.6102 7.05407 15.3418 7.57247C15.0733 8.09087 14.6843 8.5372 14.2074 8.87392C13.7305 9.21064 13.1797 9.42789 12.6014 9.50738C12.023 9.58688 11.4341 9.52631 10.884 9.33075C10.7347 9.2775 10.5668 9.3075 10.4543 9.42L4.34925 15.525C4.04925 15.825 3.564 15.825 3.264 15.525L2.475 14.736C2.175 14.4368 2.175 13.95 2.475 13.65L8.58 7.545C8.69175 7.43325 8.72175 7.26525 8.6685 7.11525C8.44589 6.48966 8.3984 5.81513 8.53116 5.16452C8.66392 4.5139 8.97188 3.91191 9.4218 3.42355C9.87172 2.93519 10.4465 2.579 11.0841 2.39346C11.7216 2.20792 12.3978 2.20007 13.0395 2.37075C13.3012 2.43975 13.3635 2.76225 13.1722 2.9535L11.88 4.245C11.7569 4.36812 11.6592 4.51427 11.5926 4.67513C11.526 4.83599 11.4917 5.00839 11.4917 5.1825C11.4917 5.35661 11.526 5.52902 11.5926 5.68987C11.6592 5.85073 11.7569 5.99689 11.88 6.12C12.0031 6.24312 12.1493 6.34078 12.3101 6.4074C12.471 6.47403 12.6434 6.50833 12.8175 6.50833C12.9916 6.50833 13.164 6.47403 13.3249 6.4074C13.4857 6.34078 13.6319 6.24312 13.755 6.12L15.0472 4.82775C15.2378 4.6365 15.5603 4.69875 15.6293 4.9605Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.6293 4.9605C15.708 5.25825 15.75 5.5725 15.75 5.895C15.7502 6.47878 15.6102 7.05407 15.3418 7.57247C15.0733 8.09087 14.6843 8.5372 14.2074 8.87392C13.7305 9.21064 13.1797 9.42789 12.6014 9.50738C12.023 9.58688 11.4341 9.52631 10.884 9.33075C10.7347 9.2775 10.5668 9.3075 10.4543 9.42L4.34925 15.525C4.04925 15.825 3.564 15.825 3.264 15.525L2.475 14.736C2.175 14.4368 2.175 13.95 2.475 13.65L8.58 7.545C8.69175 7.43325 8.72175 7.26525 8.6685 7.11525C8.44589 6.48966 8.3984 5.81513 8.53116 5.16452C8.66392 4.5139 8.97188 3.91191 9.4218 3.42355C9.87172 2.93519 10.4465 2.579 11.0841 2.39346C11.7216 2.20792 12.3978 2.20007 13.0395 2.37075C13.3012 2.43975 13.3635 2.76225 13.1722 2.9535L11.88 4.245C11.7569 4.36812 11.6592 4.51427 11.5926 4.67513C11.526 4.83599 11.4917 5.00839 11.4917 5.1825C11.4917 5.35661 11.526 5.52902 11.5926 5.68987C11.6592 5.85073 11.7569 5.99689 11.88 6.12C12.0031 6.24312 12.1493 6.34078 12.3101 6.4074C12.471 6.47403 12.6434 6.50833 12.8175 6.50833C12.9916 6.50833 13.164 6.47403 13.3249 6.4074C13.4857 6.34078 13.6319 6.24312 13.755 6.12L15.0472 4.82775C15.2378 4.6365 15.5603 4.69875 15.6293 4.9605Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
 
/* Ícono Ventas (carro/auto) */
.stores-locator__card-badge[data-category="ventas"]::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 11px;
  flex-shrink: 0;
  background-color: #fff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='23' height='12' viewBox='0 0 23 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.0707 0.00339619C22.3291 -0.0765464 23.3476 1.26939 22.8874 2.50264C22.6265 3.20147 21.9831 3.60672 21.4282 4.07867C20.1135 5.21577 18.7526 6.29579 17.3491 7.31587C16.9547 7.60743 16.5495 7.93243 16.1154 8.17133C14.4689 9.08107 12.5822 8.3785 10.8452 8.1563C9.48021 7.98169 9.19728 7.59732 7.96265 8.51717C8.02137 8.57429 8.07895 8.63261 8.13537 8.69208C8.57795 9.1603 8.6245 9.37755 8.11687 9.81397C7.30128 10.5152 6.50163 11.2479 5.67047 11.928C5.52406 12.0478 5.28707 12.0102 5.17053 11.8732C4.90279 11.6125 4.66802 11.313 4.42676 11.0242C3.93702 10.4269 3.44247 9.83361 2.94313 9.24454C2.73233 8.95075 2.33595 8.51473 2.09273 8.22922L0.890184 6.79069C0.642453 6.49745 0.00584214 5.83831 0 5.47218C0.06051 5.29767 0.259173 5.12674 0.392906 5.00471C0.666155 4.75548 2.79772 2.78478 3.06588 2.81877C3.36465 2.85659 3.5884 3.23076 3.7548 3.45339C5.26522 2.21031 6.29897 0.723652 8.33349 0.322455C9.92125 -0.0520537 11.1064 0.586961 12.5815 0.836561C14.3388 1.13394 16.829 0.0334554 17.1942 2.7289C17.201 2.71971 17.2079 2.71059 17.2148 2.7015C17.4909 2.3418 19.7638 0.63069 20.2631 0.276933C20.4608 0.136871 20.8192 0.0338579 21.0707 0.00339619ZM6.37201 2.22948C5.78166 2.78917 4.95676 3.58618 4.31374 4.08984C4.99618 4.9723 5.75838 5.80958 6.46076 6.6758C6.75299 7.03621 7.21186 7.54234 7.4335 7.92133C8.58131 6.61463 10.3363 7.18929 11.7986 7.45277C12.1562 7.51722 12.5192 7.55381 12.8763 7.62358C13.789 7.83167 14.6994 7.88289 15.5779 7.48893C16.0777 7.22791 16.5216 6.86111 16.9774 6.52931C18.6817 5.28879 20.3552 3.94477 21.9094 2.51437C22.4378 2.02809 22.0583 0.858271 21.1158 0.865415C20.5212 1.01417 19.9268 1.57958 19.4364 1.96745C18.7087 2.55194 17.9762 3.13016 17.239 3.70206C16.7872 4.05746 16.3191 4.5064 15.7511 4.64848C15.18 4.79135 13.5458 4.71283 12.8942 4.71224C12.5848 4.712 11.1699 4.77839 10.9646 4.64684C10.8614 4.58075 10.7813 4.47285 10.7544 4.35076C10.7322 4.25182 10.7514 4.14788 10.8074 4.06401C11.0332 3.72009 11.9006 3.82078 12.295 3.82286L14.5491 3.83374C14.8486 3.83433 15.3422 3.85375 15.6183 3.77449C15.8413 3.71156 16.0366 3.5727 16.1717 3.38087C16.6414 2.72655 16.156 1.82114 15.491 1.74147C14.1404 1.5797 12.646 1.92282 11.3344 1.43175C9.56021 0.767442 7.85428 0.997993 6.37201 2.22948ZM1.01081 5.57399C1.2165 5.8936 1.53448 6.22549 1.77761 6.5238C2.99698 8.02007 4.32155 9.47605 5.50314 11C5.70114 10.7618 6.05106 10.4795 6.2924 10.2703C6.68404 9.9335 7.07153 9.59177 7.45481 9.2451C6.40586 7.88094 5.19184 6.52822 4.10145 5.18868C3.92828 4.97595 3.12933 3.97915 2.97398 3.84429C2.81703 4.05266 1.27192 5.38234 1.01081 5.57399Z' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='23' height='12' viewBox='0 0 23 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.0707 0.00339619C22.3291 -0.0765464 23.3476 1.26939 22.8874 2.50264C22.6265 3.20147 21.9831 3.60672 21.4282 4.07867C20.1135 5.21577 18.7526 6.29579 17.3491 7.31587C16.9547 7.60743 16.5495 7.93243 16.1154 8.17133C14.4689 9.08107 12.5822 8.3785 10.8452 8.1563C9.48021 7.98169 9.19728 7.59732 7.96265 8.51717C8.02137 8.57429 8.07895 8.63261 8.13537 8.69208C8.57795 9.1603 8.6245 9.37755 8.11687 9.81397C7.30128 10.5152 6.50163 11.2479 5.67047 11.928C5.52406 12.0478 5.28707 12.0102 5.17053 11.8732C4.90279 11.6125 4.66802 11.313 4.42676 11.0242C3.93702 10.4269 3.44247 9.83361 2.94313 9.24454C2.73233 8.95075 2.33595 8.51473 2.09273 8.22922L0.890184 6.79069C0.642453 6.49745 0.00584214 5.83831 0 5.47218C0.06051 5.29767 0.259173 5.12674 0.392906 5.00471C0.666155 4.75548 2.79772 2.78478 3.06588 2.81877C3.36465 2.85659 3.5884 3.23076 3.7548 3.45339C5.26522 2.21031 6.29897 0.723652 8.33349 0.322455C9.92125 -0.0520537 11.1064 0.586961 12.5815 0.836561C14.3388 1.13394 16.829 0.0334554 17.1942 2.7289C17.201 2.71971 17.2079 2.71059 17.2148 2.7015C17.4909 2.3418 19.7638 0.63069 20.2631 0.276933C20.4608 0.136871 20.8192 0.0338579 21.0707 0.00339619ZM6.37201 2.22948C5.78166 2.78917 4.95676 3.58618 4.31374 4.08984C4.99618 4.9723 5.75838 5.80958 6.46076 6.6758C6.75299 7.03621 7.21186 7.54234 7.4335 7.92133C8.58131 6.61463 10.3363 7.18929 11.7986 7.45277C12.1562 7.51722 12.5192 7.55381 12.8763 7.62358C13.789 7.83167 14.6994 7.88289 15.5779 7.48893C16.0777 7.22791 16.5216 6.86111 16.9774 6.52931C18.6817 5.28879 20.3552 3.94477 21.9094 2.51437C22.4378 2.02809 22.0583 0.858271 21.1158 0.865415C20.5212 1.01417 19.9268 1.57958 19.4364 1.96745C18.7087 2.55194 17.9762 3.13016 17.239 3.70206C16.7872 4.05746 16.3191 4.5064 15.7511 4.64848C15.18 4.79135 13.5458 4.71283 12.8942 4.71224C12.5848 4.712 11.1699 4.77839 10.9646 4.64684C10.8614 4.58075 10.7813 4.47285 10.7544 4.35076C10.7322 4.25182 10.7514 4.14788 10.8074 4.06401C11.0332 3.72009 11.9006 3.82078 12.295 3.82286L14.5491 3.83374C14.8486 3.83433 15.3422 3.85375 15.6183 3.77449C15.8413 3.71156 16.0366 3.5727 16.1717 3.38087C16.6414 2.72655 16.156 1.82114 15.491 1.74147C14.1404 1.5797 12.646 1.92282 11.3344 1.43175C9.56021 0.767442 7.85428 0.997993 6.37201 2.22948ZM1.01081 5.57399C1.2165 5.8936 1.53448 6.22549 1.77761 6.5238C2.99698 8.02007 4.32155 9.47605 5.50314 11C5.70114 10.7618 6.05106 10.4795 6.2924 10.2703C6.68404 9.9335 7.07153 9.59177 7.45481 9.2451C6.40586 7.88094 5.19184 6.52822 4.10145 5.18868C3.92828 4.97595 3.12933 3.97915 2.97398 3.84429C2.81703 4.05266 1.27192 5.38234 1.01081 5.57399Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.stores-locator__card-link-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Custom Select */
.stores-locator__custom-select {
  position: relative;
  width: 100%;
  z-index: 100;
}

.stores-locator__custom-select select {
  display: none;
}

.stores-locator__custom-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px 0 44px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-inter);
  font-size: 14px;
  color: #212529;
  backdrop-filter: blur(6px);
  position: relative;
  user-select: none;
}

.stores-locator__custom-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58L10.59 0L12 1.41L6 7.41L0 1.41L1.41 0Z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease;
}

.stores-locator__custom-select.is-open .stores-locator__custom-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.stores-locator__custom-trigger-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.6;
}

.stores-locator__custom-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  overflow: hidden;
  display: none;
}

.stores-locator__custom-select.is-open .stores-locator__custom-dropdown {
  display: block;
}

.stores-locator__custom-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-family: var(--font-inter);
  font-size: 14px;
  color: #212529;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.stores-locator__custom-option:hover {
  background: rgba(201, 212, 254, 0.4);
  color: #194BFF;
}

.stores-locator__custom-option.is-selected {
  background: rgba(201, 212, 254, 0.3);
  color: #194BFF;
  font-weight: 600;
}
