/* Jaemüük */
.retail-page {
  padding-top: 0;
}

.retail-page-banner {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: #131639;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.retail-page-banner-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: categoryFadeIn 0.8s ease both;
}

.retail-page-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}

.retail-page-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.8px;
  text-align: center;
  text-shadow: 0 6px 18px rgba(6, 7, 17, 0.45);
  animation: heroSlideFadeUp 0.8s ease 0.08s both;
}

.retail-intro {
  max-width: 980px;
  margin: 42px auto 0;
  text-align: center;
  animation: heroSlideFadeUp 0.7s ease 0.12s both;
}

.retail-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.retail-stores {
  scroll-margin-top: 24px;
}

.retail-stores > .section-title {
  text-align: center;
  font-weight: 700;
  animation: heroSlideFadeUp 0.7s ease 0.18s both;
}

.retail-card-list {
  display: grid;
  gap: 20px;
}

.retail-card-list > article {
  animation: heroSlideFadeUp 0.8s ease 0.24s both;
}

.retail-card-list > article:nth-child(2) {
  animation-delay: 0.36s;
}

.retail-retailer-card,
.retail-collaboration-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(3, 6, 22, 0.45);
}

.retail-retailer-card {
  background: #0c1128;
}

.retail-retailer-header {
  padding: 24px;
  text-align: center;
}

.retail-retailer-header h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.retail-retailer-header p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.retail-location-list {
  display: grid;
}

.retail-location-row {
  min-width: 0;
  min-height: 270px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.retail-location-info {
  min-width: 0;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.retail-location-city {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #0b1233;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.retail-location-info h4 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.retail-location-info p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.retail-location-info .retail-location-hours {
  color: #ffffff;
  font-weight: 700;
}

.retail-location-info .retail-location-shop-button {
  margin-top: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  align-self: flex-start;
}

.retail-location-info .retail-location-shop-button:hover {
  color: #ffffff;
}

.retail-location-photo {
  min-width: 0;
  min-height: 270px;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  background: #11162f;
}

.retail-location-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 246px;
  object-fit: cover;
  border-radius: 8px;
}

.retail-location-map {
  min-width: 0;
  min-height: 270px;
  padding: 12px;
  background: #11162f;
}

.retail-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 246px;
  border: 0;
  border-radius: 8px;
}

.retail-collaboration-card {
  background: #0c1128;
}

.retail-collaboration-header p + p {
  margin-top: 14px;
}

.retail-collaboration-header strong {
  color: #ffffff;
  font-weight: 800;
}

.retail-collaboration-header .product-button {
  margin-top: 20px;
  padding: 9px 16px;
}

.retail-page .reviews-section {
  animation: heroSlideFadeUp 0.8s ease 0.48s both;
}

.retail-page .reviews-section .section-title {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .retail-page-banner-art,
  .retail-page-banner h1,
  .retail-intro,
  .retail-stores > .section-title,
  .retail-card-list > article,
  .retail-page .reviews-section {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .retail-location-row {
    grid-template-columns: 1fr 1fr;
  }

  .retail-location-info {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .retail-page .site-container {
    width: calc(100% - 32px);
  }

  .retail-page-banner,
  .retail-page-banner-inner {
    min-height: 150px;
  }

  .retail-page-banner h1 {
    font-size: 34px;
  }

  .retail-intro {
    margin-top: 32px;
    text-align: left;
  }

  .retail-retailer-header {
    padding: 22px;
  }

  .retail-location-row {
    grid-template-columns: 1fr;
  }

  .retail-location-info {
    grid-column: auto;
  }

  .retail-location-photo,
  .retail-location-map {
    min-height: 230px;
  }

  .retail-location-image,
  .retail-location-map iframe {
    min-height: 206px;
  }

  .retail-page .reviews-grid {
    grid-template-columns: 1fr;
  }

  .retail-page .reviews-summary {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

}

