/* Stand Up Boxing shop — SaaS 2026 product imagery v5.5.0 */
.shop-v550 {
  background: #f4f7fb;
  color: #172033;
}

.shop-v550 .shop-hero {
  padding-bottom: clamp(34px, 5vw, 64px);
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.shop-v550 .shop-hero .eyebrow {
  display: block;
  margin-top: 18px;
}

.shop-hero-note {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #dce4ee;
  border-left: 4px solid #e31b23;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(23, 32, 51, .08);
}

.shop-hero-note strong {
  color: #111827;
  font-size: 1rem;
}

.shop-hero-note span {
  color: #667085;
  font-size: .92rem;
  line-height: 1.5;
}

.shop-section-heading {
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.shop-section-heading h2 {
  margin: 6px 0 0;
}

.shop-product-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.shop-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4ee;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(23, 32, 51, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.shop-product-card:hover {
  transform: translateY(-3px);
  border-color: #c9d3df;
  box-shadow: 0 19px 42px rgba(23, 32, 51, .11);
}

.shop-product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  background: #10151e;
}

.shop-product-media picture,
.shop-product-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-product-media img {
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.shop-product-card:hover .shop-product-media img {
  transform: scale(1.025);
}

.shop-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.shop-product-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.shop-product-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  line-height: 1.16;
}

.shop-product-body > p {
  flex: 1;
  margin: 0;
  color: #667085;
  line-height: 1.62;
}

.shop-product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 20px 0 16px;
  padding-top: 16px;
  border-top: 1px solid #e5eaf0;
}

.shop-product-meta .product-price {
  color: #111827;
  font-size: 1rem;
}

.button-disabled {
  cursor: not-allowed;
  color: #7b8492;
  background: #e9edf2;
  border-color: #e1e6ec;
  box-shadow: none;
}

@media (max-width: 980px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shop-hero-grid {
    grid-template-columns: 1fr;
  }

  .shop-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-card {
    border-radius: 17px;
  }

  .shop-product-body {
    padding: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-product-card,
  .shop-product-media img {
    transition: none;
  }
}
