/* Shop network page — scoped under .llumar-page--shop-network */

.llumar-page--shop-network .llumar-breadcrumb-wrap {
  padding-top: 1.5rem;
}

.llumar-page--shop-network .shop-network-intro {
  position: relative;
  z-index: 2;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.llumar-page--shop-network .shop-network-intro .cmp-text p {
  font-family: var(--llumar-font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #1b1919;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-network-intro .cmp-text p {
    font-size: 1.125rem;
  }
}

/* ── Location cards grid ── */
.llumar-page--shop-network .shop-locations {
  box-sizing: border-box;
  padding: 2rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-locations {
    padding: 2.5rem 3rem 5rem;
  }
}

@media (min-width: 1280px) {
  .llumar-page--shop-network .shop-locations {
    padding: 3rem 6.5rem 6rem;
  }
}

.llumar-page--shop-network .shop-locations__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin: 0 auto;
  max-width: 75rem;
  width: 100%;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-locations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .llumar-page--shop-network .shop-locations__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .llumar-page--shop-network .shop-location-card:last-child {
    grid-column: 2;
  }
}

/* ── Single location card ── */
.llumar-page--shop-network .shop-location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 4px 4px 32px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.llumar-page--shop-network .shop-location-card:hover {
  box-shadow: 4px 8px 40px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.llumar-page--shop-network .shop-location-card__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  width: 100%;
}

.llumar-page--shop-network .shop-location-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.llumar-page--shop-network .shop-location-card__body {
  border: 2px solid #f6f5f1;
  border-radius: 0 0 12px 12px;
  border-top: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-location-card__body {
    gap: 1.25rem;
    padding: 1.5rem;
  }
}

.llumar-page--shop-network .shop-location-card__title {
  color: #540606;
  font-family: var(--llumar-font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-location-card__title {
    font-size: 1.25rem;
  }
}

.llumar-page--shop-network .shop-location-card__red-rule {
  background: #dc2223;
  height: 2px;
  width: 2.5rem;
}

.llumar-page--shop-network .shop-location-card__details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0;
}

.llumar-page--shop-network .shop-location-card__detail {
  margin: 0;
}

.llumar-page--shop-network .shop-location-card__label {
  color: #540606;
  font-family: var(--llumar-font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}

.llumar-page--shop-network .shop-location-card__value {
  color: #1b1919;
  font-family: var(--llumar-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-location-card__value {
    font-size: 1rem;
  }
}

.llumar-page--shop-network .shop-location-card__link {
  color: #dc2223;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.llumar-page--shop-network .shop-location-card__link:hover,
.llumar-page--shop-network .shop-location-card__link:focus-visible {
  color: #540606;
  text-decoration: underline;
}

.llumar-page--shop-network .shop-location-card__note {
  color: #1b1919;
  display: block;
  font-weight: 300;
  margin-top: 0.375rem;
}

.llumar-page--shop-network .shop-location-card__phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.llumar-page--shop-network .shop-location-card__phone-list li {
  margin: 0;
}

.llumar-page--shop-network .shop-location-card__network-text {
  color: #1b1919;
  flex: 1;
  font-family: var(--llumar-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-location-card__network-text {
    font-size: 1rem;
  }
}

.llumar-page--shop-network .shop-location-card__actions {
  margin-top: auto;
  padding-top: 0.5rem;
}

.llumar-page--shop-network .shop-location-card__actions .highlight_heading__button_group {
  gap: 0;
  margin: 0;
}

.llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn {
  -webkit-appearance: none;
  appearance: none;
  align-items: center;
  background-color: #dc2223;
  border: none;
  border-radius: 62.4375rem;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 0.5rem;
  height: 2.5rem;
  justify-content: center;
  margin: 0;
  min-width: 0;
  padding: 0 1.25rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: auto;
}

@media (min-width: 768px) {
  .llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn {
    height: 2.75rem;
  }
}

.llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn:hover,
.llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn:focus-visible {
  background-color: #b91d1d;
  transform: translateY(-1px);
}

.llumar-page--shop-network .shop-location-card__map-btn .highlight_heading__btn_text {
  color: #fff;
  font-family: var(--llumar-font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .llumar-page--shop-network .shop-location-card__map-btn .highlight_heading__btn_text {
    font-size: 0.75rem;
  }
}

.llumar-page--shop-network .shop-location-card__map-btn .highlight_heading__btn_icon {
  filter: brightness(0) invert(1);
  height: 1rem;
  object-fit: contain;
  transition: transform 0.2s ease;
  width: 1rem;
}

.llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn:hover .highlight_heading__btn_icon,
.llumar-page--shop-network .shop-location-card__map-btn.highlight_heading__btn:focus-visible .highlight_heading__btn_icon {
  transform: translateX(6px);
}

/* ── Map modal ── */
.shop-map-modal[hidden] {
  display: none !important;
}

.shop-map-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 10000;
}

.shop-map-modal__backdrop {
  background: rgba(27, 25, 25, 0.65);
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.shop-map-modal__dialog {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  max-width: 56rem;
  overflow: hidden;
  position: relative;
  width: calc(100% - 2rem);
  z-index: 1;
}

.shop-map-modal__header {
  align-items: center;
  border-bottom: 1px solid #f6f5f1;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.shop-map-modal__title {
  color: #540606;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .shop-map-modal__title {
    font-size: 1.125rem;
  }
}

.shop-map-modal__close {
  align-items: center;
  background: transparent;
  border: none;
  color: #540606;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 2.5rem;
  justify-content: center;
  padding: 0;
  width: 2.5rem;
}

.shop-map-modal__close:hover,
.shop-map-modal__close:focus-visible {
  color: #dc2223;
}

.shop-map-modal__frame-wrap {
  aspect-ratio: 16 / 10;
  background: #f6f5f1;
  width: 100%;
}

.shop-map-modal__frame {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
