/* FND Connect Ouchie blog — product photography and buy band.
   Outbound purchase stays on GS3Ds; this is not a shop page. */

.ouchie-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1.4rem 0 1.8rem;
}

.ouchie-gallery figure {
  margin: 0;
  padding: 0.85rem 0.85rem 0.7rem;
  border: 1px solid var(--border, #d7e1eb);
  border-radius: var(--radius, 16px);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 43, 95, 0.04);
}

.ouchie-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

.ouchie-gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted, #5a6b80);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.ouchie-buy {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(201, 0, 90, 0.28), transparent 52%),
    linear-gradient(135deg, #071d3b, #002b5f 62%, #1a1540);
}

.ouchie-buy > * {
  color: #fff;
}

.ouchie-buy p {
  margin: 0;
  max-width: 42rem;
  color: #e7eaf5;
  line-height: 1.5;
}

.ouchie-buy__kicker {
  margin: 0;
  color: #ff8eb6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ouchie-buy__price {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ouchie-buy__price span {
  margin-left: 0.35rem;
  color: #cad0e4;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.ouchie-buy .button-row,
.ouchie-buy .fnd-action-row {
  margin-top: 0.35rem;
}

.ouchie-buy .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.ouchie-buy .button.secondary:hover {
  color: #071d3b;
  background: #fff;
  border-color: #fff;
}

.ouchie-colours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.ouchie-colours li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink, #1c2340);
  font-weight: 700;
}

.ouchie-swatch {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 95, 0.18);
  flex: 0 0 auto;
}

.ouchie-swatch--navy { background: #002b5f; }
.ouchie-swatch--pink { background: #e82868; }

.ouchie-disclaimer {
  margin: 1.6rem 0;
}

@media (min-width: 640px) {
  .ouchie-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ouchie-buy .button {
    transition: none;
  }
}
