/* ─── Shops Hero Section ─────────────────────────────────────────────────── */

.shops-hero {
  padding: 53px 16px 48px;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.shops-hero__heading {
  margin: 0;
  font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 33.6px;
  color: #22252a;
  text-align: center;
}

/* ── Search bar ── */
.shops-hero__search-bar {
  position: relative;
  width: 100%;
  max-width: 792px;
}

.shops-hero__search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #9096a3;
  pointer-events: none;
}

.shops-hero__search-input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 48px;
  box-sizing: border-box;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #22252a;
  background-color: #f8f9fb;
  border: 1.5px solid #e2e5ea;
  border-radius: 12px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.shops-hero__search-input::placeholder {
  color: #9096a3;
}

.shops-hero__search-input:focus {
  border-color: #22252a;
  background-color: #ffffff;
}

/* ── Category chips ── */
.shops-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 1074px;
  width: 100%;
}

.shops-hero__chip--hidden {
  display: none;
}

.tag-chip--clickable.js-active,
.tag-chip--clickable[aria-pressed="true"] {
  background-color: #0daa76;
  border-color: #0daa76;
  color: #ffffff;
}

.tag-chip--clickable:hover {
  background-color: #f8f9fb;
}

.tag-chip--clickable.js-active:hover,
.tag-chip--clickable[aria-pressed="true"]:hover {
  background-color: #0b9868;
  border-color: #0b9868;
}

/* ── Show more button ── */
.shops-hero__show-more {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22.4px;
  color: #22252a;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
}

.shops-hero__show-more:focus-visible {
  outline: 2px solid #e40148;
  outline-offset: 2px;
}

/* ── Responsive ── */
@media only screen and (max-width: 991px) {
  .shops-hero {
    padding: 32px 16px 24px;
    gap: 16px;
  }
}

/* ─── Shops Results Section ──────────────────────────────────────────────── */

.shops-results {
  padding: 0 16px;
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Toolbar ── */
.shops-results__toolbar {
  width: 100%;
  max-width: 1200px;
  padding: 24px 0 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: row nowrap;
  gap: 12px;
}

.shops-results__count {
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  color: #22252a;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
}

/* ── Sort ── */
.shops-results__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shops-results__sort-label {
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #22252a;
  white-space: nowrap;
}

.shops-results__sort-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  color: #22252a;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  text-decoration: underline;
  text-underline-position: from-font;
}

.shops-results__sort-select:focus-visible {
  outline: 2px solid #e40148;
  outline-offset: 2px;
}

/* ── Reset button ── */
.shops-results__reset {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #22252a;
  cursor: pointer;
  white-space: nowrap;
}

.shops-results__reset:hover {
  color: #e40148;
}

/* ── Grid ── */
.shops-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

/* Override shop-tile fixed max-width inside grid */
.shops-results__grid .shop-tile {
  max-width: none;
  width: 100%;
}

/* ── Empty state ── */
.shops-results__empty {
  margin: 0;
  padding: 64px 0;
  text-align: center;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  color: #9096a3;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

/* ── Pagination ── */
.shops-results__pagination {
  padding: 40px 0;
}

/* ── Responsive ── */
@media only screen and (max-width: 991px) {
  .shops-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media only screen and (max-width: 640px) {
  .shops-results__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 328px;
    margin: 0 auto;
  }

  .shops-results__toolbar {
    max-width: 328px;
  }
}

/* ─── Travel CTA Section ─────────────────────────────────────────────────── */

.shops-travel-cta {
  padding: 48px 16px 64px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.shops-travel-cta__card {
  position: relative;
  background-color: #ffffff;
  border: 8px solid #f8f9fb;
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
  min-height: 446px;
}

.shops-travel-cta__image-wrapper {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 50%;
  height: calc(100% + 16px);
  border-radius: 20px;
  overflow: hidden;
}

.shops-travel-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shops-travel-cta__content {
  margin-left: 50%;
  padding: 56px 32px 56px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  box-sizing: border-box;
}

.shops-travel-cta__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.shops-travel-cta__subtitle {
  margin: 0;
  font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
  color: #22252a;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

.shops-travel-cta__heading {
  margin: 0;
  font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
  color: #22252a;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -1px;
}

.shops-travel-cta__description {
  margin: 0;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  color: #22252a;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

/* ── Responsive ── */
@media only screen and (max-width: 991px) {
  .shops-travel-cta {
    padding: 32px 16px 48px;
  }

  .shops-travel-cta__card {
    min-height: 0;
    border-radius: 16px;
  }

  .shops-travel-cta__image-wrapper {
    position: relative;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: 249px;
  }

  .shops-travel-cta__content {
    margin-left: 0;
    padding: 16px 16px 32px;
    height: auto;
  }

  .shops-travel-cta__subtitle {
    font-size: 14px;
    line-height: 19.6px;
  }

  .shops-travel-cta__heading {
    font-size: 31px;
    line-height: 37.2px;
  }
}

/* ─── Join Shops CTA Section ─────────────────────────────────────────────── */

.shops-join-cta {
  padding: 48px 16px 64px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.shops-join-cta__card {
  background-color: #0daa76;
  border-radius: 20px;
  padding: 64px;
  width: 100%;
  max-width: 1200px;
  min-height: 433px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-sizing: border-box;
}

.shops-join-cta__subtitle {
  margin: 0;
  font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  line-height: 33.6px;
}

.shops-join-cta__heading {
  margin: 0;
  font-family: 'Parkinsans', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  max-width: 792px;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.shops-join-cta__description {
  margin: 8px 0 16px;
  font-family: 'DMSans', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  max-width: 789px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  white-space: pre-wrap;
}

/* ── Responsive ── */
@media only screen and (max-width: 991px) {
  .shops-join-cta {
    padding: 32px 16px 48px;
  }

  .shops-join-cta__card {
    padding: 32px;
    border-radius: 16px;
    min-height: 0;
  }

  .shops-join-cta__subtitle {
    font-size: 24px;
    line-height: 28.8px;
  }

  .shops-join-cta__heading {
    font-size: 28px;
    line-height: 33.6px;
    letter-spacing: -1px;
  }
}
