/* Shop landing-page flow refinements: balanced merchandise rows and final CTA. */

.shop-editorial #bestseller-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 18px;
  align-items: stretch;
}

.shop-editorial #bestseller-grid .product-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.shop-editorial #bestseller-grid .body {
  align-content: start;
}

.shop-editorial #collections .curated-gallery {
  grid-auto-flow: dense;
  align-items: stretch;
}

.shop-journey {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) 20px;
  border-top: 1px solid rgba(126, 216, 226, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  background:
    radial-gradient(620px 320px at 82% 20%, rgba(43, 119, 184, 0.22), transparent 68%),
    linear-gradient(135deg, #07101d 0%, #0b192c 56%, #10141c 100%);
  color: #f5f7fb;
  font-family: "Manrope", sans-serif;
}

.shop-journey::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(#7ed8e2, #d4af37);
}

.shop-journey-inner {
  position: relative;
  width: min(100%, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.shop-journey-copy { max-width: 760px; }

.shop-journey-kicker {
  display: block;
  margin-bottom: 13px;
  color: #7ed8e2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-journey h2 {
  margin: 0;
  color: #f5f7fb;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.shop-journey p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(225, 234, 244, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.shop-journey-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 22px;
}

.shop-journey-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(126, 216, 226, 0.45);
  color: #dce9f5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.shop-journey-actions {
  min-width: min(100%, 260px);
  display: grid;
  gap: 12px;
}

.shop-journey-actions a {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.shop-journey-actions a:hover { transform: translateY(-2px); filter: brightness(1.06); }
.shop-journey-trial { background: #d4af37; color: #0b192c; }
.shop-journey-whatsapp { background: #25d366; color: #fff; }

@media (max-width: 900px) {
  .shop-editorial #bestseller-grid { gap: 20px 10px; }
  .shop-editorial #bestseller-grid .product-card { flex-basis: calc(50% - 10px); }
  .shop-journey-inner { grid-template-columns: 1fr; }
  .shop-journey-actions { width: 100%; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .shop-journey { padding: 54px 18px; }
  .shop-journey h2 { font-size: clamp(45px, 14vw, 60px); }
  .shop-journey p { font-size: 13px; }
  .shop-journey-actions { grid-template-columns: 1fr; }
  .shop-journey-actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-journey-actions a { transition: none; }
}
