/* ═══════════════════════════════════════════════════════════════
   TURMEON — Donde Comprar Styles
   Neobrutalista aesthetic — 1px borders, 0 border-radius, solid shadows
   ═══════════════════════════════════════════════════════════════ */

/* ─── ONLINE CTA ─────────────────────────────────────────── */

.stores-online-section {
  padding: 3rem 0;
  background-color: var(--dawn-pink-color);
}

.stores-online-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--zeus);
  background-color: var(--white);
  box-shadow: 6px 6px 0 var(--zeus);
}

.stores-online-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.stores-online-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--zeus);
  margin: 0;
  line-height: 1.08;
}

.stores-online-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  color: var(--zeus);
  opacity: 0.7;
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

.stores-online-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--zeus);
  background-color: var(--mahogany);
  color: var(--white);
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.1;
}

.stores-online-cta:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--zeus);
}

/* ─── POINTS OF SALE ─────────────────────────────────────── */

.stores-list-section {
  padding: 3rem 0 4rem;
  background-color: var(--white);
}

.stores-section-heading {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--zeus);
  margin: 0 0 0.5rem;
  text-align: center;
  line-height: 1.08;
}

.stores-section-subtext {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 1rem;
  color: var(--zeus);
  opacity: 0.6;
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Province groups */
.stores-province-group {
  margin-bottom: 2rem;
}

.stores-province-title {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mahogany);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--saffron-mango);
}

/* Store cards grid */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  border: 1px solid var(--zeus);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--zeus);
}

.store-card-name {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--zeus);
  margin: 0;
  line-height: 1.1;
}

.store-card-type {
  display: inline-block;
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--zeus);
  color: var(--zeus);
  width: fit-content;
}

.store-card-type--tienda { background-color: rgba(152, 52, 72, 0.1); }
.store-card-type--bar { background-color: rgba(246, 200, 81, 0.2); }
.store-card-type--restaurante { background-color: rgba(130, 206, 149, 0.15); }
.store-card-type--hotel { background-color: rgba(235, 104, 63, 0.1); }
.store-card-type--distribuidor { background-color: rgba(37, 35, 35, 0.08); }

.store-card-address {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  color: var(--zeus);
  opacity: 0.7;
  margin: 0;
  line-height: 1.55;
}

.store-card-city {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.8rem;
  color: var(--zeus);
  opacity: 0.5;
  margin: 0;
  line-height: 1.5;
}

.store-card-phone {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.85rem;
  color: var(--mahogany);
  text-decoration: none;
  font-weight: 600;
}

.store-card-phone:hover {
  opacity: 0.7;
}

/* ─── MAP ────────────────────────────────────────────────── */

.stores-map-section {
  padding: 0 0 4rem;
  background-color: var(--white);
}

.stores-map-wrap {
  border: 1px solid var(--zeus);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--zeus);
}

.stores-map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

/* ─── DISTRIBUTOR CTA ────────────────────────────────────── */

.stores-distributor-section {
  padding: 3rem 0;
  background-color: var(--dawn-pink-color);
}

.stores-distributor-box {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--zeus);
  background-color: var(--white);
}

.stores-distributor-title {
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zeus);
  margin: 0 0 0.5rem;
  line-height: 1.08;
}

.stores-distributor-text {
  font-family: var(--_font-famaly---cabinet-grotesk-font-family);
  font-size: 0.95rem;
  color: var(--zeus);
  opacity: 0.7;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.stores-distributor-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--zeus);
  background-color: var(--zeus);
  color: var(--white);
  font-family: var(--_font-famaly---tanker-font-family);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.1;
}

.stores-distributor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--mahogany);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media screen and (max-width: 767px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }

  .stores-map-wrap iframe {
    height: 300px;
  }
}

@media screen and (max-width: 479px) {
  .stores-online-box {
    padding: 1.5rem 1rem;
  }

  .stores-online-title {
    font-size: 1.3rem;
  }

  .store-card {
    padding: 1rem;
  }
}
