/**
 * Shared centered banner copy (home hero slider, landscape / parallax banners).
 */
.store-banner-copy {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-banner-copy__title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.store-banner-copy__subtitle {
  margin: 0 0 1.75rem;
  color: #fff;
  font-size: clamp(0.9375rem, 2.4vw, 1.125rem);
  line-height: 1.55;
  max-width: 36rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.store-banner-copy__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem 0.35rem 0.7rem 1.35rem;
  background-color: #309897;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.store-banner-copy__btn:hover,
.store-banner-copy__btn:focus-visible {
  background-color: #26807f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.store-banner-copy__btn-text {
  line-height: 1.2;
  padding-right: 0.25rem;
}

.store-banner-copy__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.store-banner-copy__btn-icon .bi {
  font-size: 1rem;
  line-height: 1;
}

.store-banner-copy__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem;
  pointer-events: none;
}

.store-banner-copy__content a {
  pointer-events: auto;
}
