/* ==========================================================================
   FND Connect — Shop module
   Self-contained styling for the public shop pages. Uses the brand tokens
   defined in styles.css (:root). Loaded only on /shop pages.
   ========================================================================== */

.shop-page {
  background: var(--panel, #f6f8fb);
}

/* --- Hero ----------------------------------------------------------------- */
.shop-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 140% at 85% -10%, rgba(237, 43, 123, 0.55), transparent 55%),
    linear-gradient(135deg, var(--fnd-deep-navy), var(--fnd-navy) 60%, #4a0f33);
}
.shop-hero .wrap {
  padding: clamp(2.2rem, 6vw, 3.6rem) var(--gutter, 24px);
  max-width: var(--max, 1140px);
  margin: 0 auto;
}
.shop-hero .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.9;
}
.shop-hero h1 {
  color: #fff;
  margin: 0.3rem 0 0.5rem;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
}
.shop-hero .lead {
  max-width: 60ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}
.shop-hero-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* --- Layout sections ------------------------------------------------------ */
.shop-section {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.6rem) var(--gutter, 24px);
}
.shop-banner {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}
.shop-note {
  background: #fff;
  border: 1px solid rgba(0, 43, 95, 0.12);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  color: var(--muted, #637086);
}

/* --- Product grid --------------------------------------------------------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

/* Homepage compact shop — 6 across on desktop */
.shop-grid--home-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.shop-card--compact .shop-card-body {
  padding: 0.65rem 0.7rem 0.8rem;
  gap: 0.3rem;
}

.shop-card--compact .shop-card-title {
  font-size: 0.88rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card--compact .shop-price {
  font-size: 0.92rem;
}

.shop-card--compact .shop-btn {
  font-size: 0.8rem;
  padding: 0.35rem 0.55rem;
}

.shop-card--compact .shop-card-summary {
  display: none;
}

@media (max-width: 1100px) {
  .shop-grid--home-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shop-grid--home-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 43, 95, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 43, 95, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 43, 95, 0.12);
}
.shop-card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #eef2f8, #fff);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-placeholder {
  font-size: 3rem;
  opacity: 0.5;
}
.shop-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
}
.shop-card-title {
  margin: 0;
  font-size: 1.08rem;
  color: var(--fnd-navy, #002b5f);
}
.shop-card-summary {
  margin: 0;
  color: var(--muted, #637086);
  font-size: 0.92rem;
}
.shop-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.6rem;
}
.shop-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--fnd-navy, #002b5f);
}

/* --- Buttons -------------------------------------------------------------- */
.shop-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--fnd-magenta, #c9005a), var(--fnd-rose, #ed2b7b));
  box-shadow: 0 6px 16px rgba(201, 0, 90, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shop-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(201, 0, 90, 0.3); }
.shop-btn.secondary {
  background: #fff;
  color: var(--fnd-navy, #002b5f);
  border: 2px solid var(--fnd-navy, #002b5f);
  box-shadow: none;
}
.shop-btn.block { width: 100%; }
.shop-btn.large {
  padding: 1rem 1.4rem;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(201, 0, 90, 0.32);
}
.shop-btn[disabled], .shop-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Quiet, de-emphasised secondary action so the primary checkout button stands out. */
.shop-continue-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--fnd-navy, #002b5f);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 43, 95, 0.3);
  padding: 0.2rem 0.25rem;
}
.shop-continue-link:hover { color: var(--fnd-magenta, #c9005a); border-bottom-color: var(--fnd-magenta, #c9005a); }

/* --- Product detail ------------------------------------------------------- */
.shop-single {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: start;
}
@media (max-width: 820px) {
  .shop-single {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .shop-section--product,
  .shop-single,
  .shop-product-col,
  .shop-buy,
  .shop-panel,
  .shop-gallery,
  .shop-detail-media,
  .shop-add-form,
  .shop-choice-grid,
  .shop-field {
    min-width: 0;
    max-width: 100%;
  }

  .shop-field input,
  .shop-field select {
    min-width: 0;
    max-width: 100%;
  }

  .shop-detail-desc,
  .shop-impact-badge,
  .shop-product-title,
  .shop-product-summary {
    overflow-wrap: anywhere;
  }

  .shop-detail-desc img,
  .shop-detail-desc iframe,
  .shop-detail-desc video,
  .shop-detail-desc table {
    max-width: 100%;
  }
}
.shop-panel {
  background: #fff;
  border: 1px solid rgba(0, 43, 95, 0.1);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 43, 95, 0.06);
  margin-bottom: 1.2rem;
}
.shop-detail-media {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0.6rem;
}
/* Show the whole product (centred) rather than cropping it. */
.shop-detail-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }

.shop-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.7rem;
}
.shop-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 2px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.shop-thumb.is-active { border-color: var(--fnd-magenta, #c9005a); }

.shop-impact-badge {
  display: block;
  background: linear-gradient(135deg, var(--fnd-navy, #002b5f), var(--fnd-magenta, #c9005a));
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(0, 43, 95, 0.18);
}

.shop-delivery h3 { font-size: 1.05rem; }
.shop-detail-desc { color: var(--text, #26364d); line-height: 1.65; }
.shop-buy .shop-price-tag {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fnd-navy, #002b5f);
}
.shop-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1rem 0;
  font-weight: 600;
  color: var(--fnd-navy, #002b5f);
}
.shop-field input {
  border: 1.5px solid rgba(0, 43, 95, 0.2);
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  font: inherit;
}

.shop-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shop-choice {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid rgba(0, 43, 95, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--fnd-navy, #002b5f);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.shop-choice:hover,
.shop-choice.is-active {
  border-color: var(--fnd-magenta, #c9005a);
  box-shadow: 0 0 0 3px rgba(201, 0, 90, 0.1);
}

.shop-choice:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.shop-choice.size {
  min-width: 48px;
}

.shop-colour-swatch {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(0, 43, 95, 0.22);
  border-radius: 50%;
  background: var(--swatch, #d8e2ee);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.shop-variant-picker .shop-cart-meta {
  margin: 0.15rem 0 0.6rem;
}

/* --- Quantity stepper ----------------------------------------------------- */
.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid rgba(0, 43, 95, 0.2);
  border-radius: 10px;
  overflow: hidden;
  width: max-content;
}
.qty-stepper button {
  border: 0;
  background: #f1f4f9;
  color: var(--fnd-navy, #002b5f);
  font-size: 1.2rem;
  flex: 0 0 44px;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.qty-stepper button:hover { background: #e3e9f2; }
.shop-field .qty-stepper input {
  flex: 0 0 3.6rem;
  width: 3.6rem;
  min-width: 0;
  max-width: 3.6rem;
  text-align: center;
  border: 0;
  border-left: 1.5px solid rgba(0, 43, 95, 0.15);
  border-right: 1.5px solid rgba(0, 43, 95, 0.15);
  border-radius: 0;
  padding: 0.35rem 0.25rem;
  font: inherit;
  font-weight: 700;
}

/* --- Cart ----------------------------------------------------------------- */
.shop-cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 43, 95, 0.08);
}
.shop-cart-row:last-child { border-bottom: 0; }
.shop-cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #eef2f8;
}
.shop-cart-name { font-weight: 700; color: var(--fnd-navy, #002b5f); }
.shop-cart-meta { color: var(--muted, #637086); font-size: 0.9rem; }
.shop-cart-line-total { font-weight: 800; color: var(--fnd-navy, #002b5f); white-space: nowrap; }
.shop-cart-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fnd-navy, #002b5f);
  margin: 1rem 0;
}
.shop-empty {
  text-align: center;
  padding: 2.4rem 1rem;
  color: var(--muted, #637086);
}

/* --- Order status --------------------------------------------------------- */
.shop-order-status {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.shop-order-status.paid { background: rgba(22, 163, 74, 0.12); color: #15803d; }
.shop-order-status.pending { background: rgba(234, 179, 8, 0.15); color: #92600a; }
.shop-order-status.cancelled, .shop-order-status.refunded { background: rgba(100, 112, 134, 0.15); color: var(--muted, #637086); }
.shop-trust {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: var(--muted, #637086);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.shop-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* --- Homepage shop band --------------------------------------------------- */
.home-shop {
  padding: clamp(2rem, 5vw, 3.4rem) 0;
  background: var(--panel, #f6f8fb);
}
.home-shop .wrap {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}
.home-shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.home-shop-head h2 {
  margin: 0.4rem 0 0.4rem;
  color: var(--fnd-navy, #002b5f);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.home-shop-head p { margin: 0; max-width: 62ch; color: var(--text, #26364d); }
.home-shop-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--fnd-navy, #002b5f), var(--fnd-magenta, #c9005a));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Category subnav on the shop landing page */
.shop-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
}
.shop-subnav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 43, 95, 0.18);
  background: #fff;
  color: var(--fnd-navy, #002b5f);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.shop-subnav-link:hover,
.shop-subnav-link:focus-visible {
  border-color: var(--fnd-magenta, #c9005a);
  color: var(--fnd-magenta, #c9005a);
}
.shop-subnav-link.is-active {
  background: var(--fnd-navy, #002b5f);
  border-color: var(--fnd-navy, #002b5f);
  color: #fff;
}

/* --- Mug personalisation -------------------------------------------------- */
.shop-personalization {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 43, 95, 0.12);
}
.shop-personalization h3 {
  margin: 0 0 0.75rem;
  color: var(--fnd-navy, #002b5f);
  font-size: 1.05rem;
}
.shop-personalization-preview {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}
.shop-personalization-preview img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 43, 95, 0.12);
}
.shop-personalization-360 {
  display: grid;
  gap: 0.5rem;
}
.shop-personalization-360 img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 43, 95, 0.12);
}
.shop-personalization-status {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted, #637086);
}
.shop-personalization-status[data-tone="ok"] { color: #15803d; }
.shop-personalization-status[data-tone="error"] { color: #b91c1c; }
.shop-personalization-status[data-tone="pending"] { color: #1e3a5f; }
.shop-personalization-field-row {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(0, 43, 95, 0.15);
}

/* ==========================================================================
   Shop CRO / SEO / mobile-first enhancements (2026-07-26)
   Additive styles — does not remove existing shop module rules.
   ========================================================================== */

/* Breadcrumbs */
.shop-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.shop-breadcrumb a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.shop-breadcrumb a:hover { border-bottom-color: #fff; color: #fff; }
.shop-breadcrumb--on-light {
  color: var(--muted, #637086);
  margin: 0;
}
.shop-breadcrumb--on-light a {
  color: var(--fnd-navy, #002b5f);
  border-bottom-color: rgba(0, 43, 95, 0.25);
}
.shop-breadcrumb--on-light a:hover {
  color: var(--fnd-magenta, #c9005a);
  border-bottom-color: var(--fnd-magenta, #c9005a);
}

.shop-hero--compact .wrap {
  padding-block: clamp(1.35rem, 4vw, 2.4rem);
}
.shop-hero--compact h1 {
  font-size: clamp(1.65rem, 5.5vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.shop-hero--compact .lead {
  font-size: 1rem;
  line-height: 1.55;
}
.shop-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.shop-hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.shop-hero-proof li::before {
  content: "✓";
  color: #ffd6ea;
  font-weight: 800;
}

/* Trust strip under hero */
.shop-trust-strip {
  border-bottom: 1px solid rgba(0, 43, 95, 0.1);
  background: #fff;
}
.shop-trust-strip-inner {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  padding: 0.75rem var(--gutter, 24px);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted, #637086);
}

.shop-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.shop-section-title {
  margin: 0;
  color: var(--fnd-navy, #002b5f);
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  letter-spacing: -0.02em;
}
.shop-section-meta {
  margin: 0.25rem 0 0;
  color: var(--muted, #637086);
  font-size: 0.92rem;
}
.shop-section-cart { white-space: nowrap; }

/* Cards: mobile-first 2-up, larger touch CTAs */
.shop-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 700px) {
  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
}
.shop-card {
  min-width: 0;
}
.shop-card-media {
  position: relative;
}
.shop-card-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #fff3d6;
  color: #8a5a00;
  border: 1px solid #f0d492;
}
.shop-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fnd-magenta, #c9005a);
}
.shop-card-title a {
  color: inherit;
  text-decoration: none;
}
.shop-card-title a:hover,
.shop-card-title a:focus-visible {
  color: var(--fnd-magenta, #c9005a);
}
.shop-card-body {
  padding: 0.75rem 0.8rem 0.9rem;
  gap: 0.3rem;
}
.shop-card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.86rem;
  line-height: 1.4;
}
@media (max-width: 699px) {
  .shop-card-summary { display: none; }
  .shop-card-title { font-size: 0.95rem; line-height: 1.25; }
  .shop-card-foot { flex-direction: column; align-items: stretch; gap: 0.45rem; }
  .shop-card-cta {
    width: 100%;
    min-height: 44px;
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
  }
  .shop-price { font-size: 1.02rem; }
}

/* Category chips: horizontal scroll on small screens */
.shop-subnav {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 0 1.1rem;
  padding-bottom: 0.15rem;
  gap: 0.4rem;
}
.shop-subnav::-webkit-scrollbar { display: none; }
.shop-subnav-link {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
}

/* Why / FAQ */
.shop-why { padding-top: 0.4rem; }
.shop-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 860px) {
  .shop-why-grid { grid-template-columns: 1.05fr 0.95fr; gap: 1.4rem; }
}
.shop-why-card h2,
.shop-faq h2,
.shop-panel-title {
  margin: 0 0 0.75rem;
  color: var(--fnd-navy, #002b5f);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.shop-why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--text, #26364d);
  line-height: 1.55;
}
.shop-faq details {
  border-top: 1px solid rgba(0, 43, 95, 0.1);
  padding: 0.75rem 0;
}
.shop-faq details:first-of-type { border-top: 0; padding-top: 0; }
.shop-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--fnd-navy, #002b5f);
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.shop-faq summary::-webkit-details-marker { display: none; }
.shop-faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--fnd-magenta, #c9005a);
}
.shop-faq details[open] summary::after { content: "–"; }
.shop-faq details p {
  margin: 0.35rem 0 0;
  color: var(--muted, #637086);
  line-height: 1.55;
  font-size: 0.95rem;
}

.shop-empty-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--fnd-navy, #002b5f);
}

/* Product page top bar */
.shop-product-top {
  background: #fff;
  border-bottom: 1px solid rgba(0, 43, 95, 0.08);
}
.shop-product-top-inner {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  padding: 0.7rem var(--gutter, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.shop-top-cart {
  flex: 0 0 auto;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--fnd-navy, #002b5f);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 43, 95, 0.18);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.shop-top-cart:hover {
  border-color: var(--fnd-magenta, #c9005a);
  color: var(--fnd-magenta, #c9005a);
}

.shop-section--product {
  padding-top: clamp(1rem, 3vw, 1.6rem);
}
.shop-panel--gallery { padding: 0.85rem; }
.shop-product-title {
  margin: 0 0 0.4rem;
  color: var(--fnd-navy, #002b5f);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.shop-product-summary {
  margin: 0 0 0.85rem;
  color: var(--muted, #637086);
  line-height: 1.5;
  font-size: 0.98rem;
}
.shop-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.35rem;
}
.shop-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}
.shop-pill--ok {
  background: rgba(22, 163, 74, 0.12);
  color: #0f6f35;
}
.shop-pill--warn {
  background: #fff3d6;
  color: #8a5a00;
  border: 1px solid #f0d492;
}
.shop-callout {
  margin: 0.8rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.shop-callout--info {
  background: #eef6ff;
  border: 1px solid #c5daf3;
  color: #1e3a5f;
}
.shop-callout--muted {
  color: var(--muted, #637086);
  background: #f3f6fa;
  border: 1px solid rgba(0, 43, 95, 0.08);
}
.shop-helper {
  margin: 0.55rem 0 0;
  color: var(--muted, #637086);
  font-size: 0.9rem;
  line-height: 1.45;
}
.shop-delivery-lead {
  margin: 0 0 0.35rem;
  color: var(--text, #26364d);
}
.shop-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  justify-content: center;
  margin: 0.9rem 0 0;
}
.shop-trust--stacked {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.shop-trust--stacked li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted, #637086);
}
.shop-option-static { margin: 0.2rem 0 0.6rem; }
.shop-line-total-row { margin: 0.4rem 0 0.9rem; }

/* About block: mobile under buy box, desktop beside gallery */
.shop-about-mobile { display: block; }
.shop-about-desktop { display: none; }
@media (min-width: 821px) {
  .shop-about-mobile { display: none; }
  .shop-about-desktop { display: block; }
}

/* Sticky mobile buy / checkout bar */
.shop-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(0, 43, 95, 0.12);
  box-shadow: 0 -8px 28px rgba(0, 43, 95, 0.12);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(10px);
}
.shop-sticky-buy-inner {
  max-width: var(--max, 1140px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.shop-sticky-buy-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}
.shop-sticky-buy-copy strong {
  color: var(--fnd-navy, #002b5f);
  font-size: 1.05rem;
}
.shop-sticky-buy-copy span {
  color: var(--muted, #637086);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 46vw;
}
.shop-sticky-buy .shop-btn {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0.7rem 1.05rem;
}
/* Room for sticky bar so footer/content aren't covered */
.shop-page--product main,
.shop-page--cart main {
  padding-bottom: 5.5rem;
}
@media (min-width: 821px) {
  .shop-sticky-buy { display: none; }
  .shop-page--product main,
  .shop-page--cart main { padding-bottom: 0; }
}

/* Cart */
.shop-section--cart-head {
  padding-bottom: 0.4rem;
}
.shop-cart-title {
  margin: 0 0 0.75rem;
  color: var(--fnd-navy, #002b5f);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: -0.02em;
}
.shop-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted, #637086);
  font-size: 0.88rem;
  font-weight: 700;
}
.shop-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.shop-steps li span {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #e8eef6;
  color: var(--fnd-navy, #002b5f);
  font-size: 0.78rem;
}
.shop-steps li.is-active { color: var(--fnd-navy, #002b5f); }
.shop-steps li.is-active span {
  background: var(--fnd-magenta, #c9005a);
  color: #fff;
}
.shop-cart-lines-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.shop-cart-lines-head .shop-panel-title { margin: 0; }
.shop-cart-thumb-link { display: block; }
.shop-cart-thumb--empty {
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.shop-cart-name a {
  color: inherit;
  text-decoration: none;
}
.shop-cart-name a:hover { color: var(--fnd-magenta, #c9005a); }
.shop-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--muted, #637086);
  font-weight: 600;
}
.shop-cart-qty input {
  width: 4rem;
  min-height: 44px;
  padding: 0.35rem 0.45rem;
  border: 1.5px solid rgba(0, 43, 95, 0.2);
  border-radius: 8px;
  font: inherit;
}
.shop-cart-update-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.shop-cart-totals--sub {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.45rem 0;
}
.shop-checkout-form { margin-top: 0.5rem; }
.shop-field input,
.shop-field select {
  min-height: 46px;
  border: 1.5px solid rgba(0, 43, 95, 0.2);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  width: 100%;
  box-sizing: border-box;
}
.shop-field select {
  background: #fff;
}

/* Mobile cart rows: stack cleanly */
@media (max-width: 560px) {
  .shop-cart-row {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb info"
      "thumb total";
    gap: 0.55rem 0.75rem;
    align-items: start;
  }
  .shop-cart-thumb-link,
  .shop-cart-thumb { grid-area: thumb; }
  .shop-cart-thumb,
  .shop-cart-thumb--empty {
    width: 64px;
    height: 64px;
  }
  .shop-cart-info { grid-area: info; min-width: 0; }
  .shop-cart-line-total {
    grid-area: total;
    justify-self: start;
    font-size: 1.05rem;
  }
  .shop-single--cart { gap: 1rem; }
}

/* Touch-friendly choices already ≥42px; ensure primary CTAs on mobile */
@media (max-width: 699px) {
  .shop-btn.large {
    min-height: 52px;
    font-size: 1.05rem;
  }
  .shop-hero-actions .shop-btn {
    min-height: 46px;
    flex: 1 1 auto;
  }
  .shop-buy .shop-price-tag { font-size: 1.55rem; }
}

/* Reduce hover lift on touch devices */
@media (hover: none) {
  .shop-card:hover { transform: none; }
  .shop-btn:hover { transform: none; }
}

/* ==========================================================================
   Shop storefront redesign — pro cards + elevated visual system
   Version: 20260726-shop-pro
   ========================================================================== */

.shop-page--storefront {
  --shop-ink: #0b1f3a;
  --shop-muted: #5c6b80;
  --shop-line: rgba(11, 31, 58, 0.1);
  --shop-paper: #f4f7fb;
  --shop-card: #ffffff;
  --shop-pink: #c9005a;
  --shop-pink-soft: #fff0f6;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(201, 0, 90, 0.06), transparent 55%),
    linear-gradient(180deg, #f7f9fc 0%, var(--shop-paper) 40%, #eef3f9 100%);
  color: var(--shop-ink);
}

/* —— Hero with product mosaic ———————————————————————————————— */
.shop-storefront-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(237, 43, 123, 0.42), transparent 55%),
    radial-gradient(60% 80% at 0% 100%, rgba(0, 80, 160, 0.35), transparent 50%),
    linear-gradient(145deg, #021428 0%, #0a2a55 48%, #3a0d2c 100%);
}
.shop-storefront-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 251, 0.08));
  pointer-events: none;
}
.shop-storefront-hero-inner {
  max-width: var(--max, 1120px);
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem) var(--gutter, 1.25rem) clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: center;
}
@media (max-width: 900px) {
  .shop-storefront-hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 1.6rem;
  }
}
.shop-storefront-copy h1 {
  margin: 0.45rem 0 0.7rem;
  color: #fff;
  font-size: clamp(2rem, 5.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 12ch;
}
.shop-storefront-copy .lead {
  margin: 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.6;
}
.shop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffd6ea;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shop-kicker--dark {
  background: var(--shop-pink-soft);
  border-color: rgba(201, 0, 90, 0.14);
  color: var(--shop-pink);
}
.shop-breadcrumb--on-dark {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}
.shop-breadcrumb--on-dark a {
  color: inherit;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
.shop-btn--hero {
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  font-size: 0.98rem;
}
.shop-btn--hero-ghost {
  min-height: 48px;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.shop-btn--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.shop-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.35rem 0 0;
  padding: 0;
}
@media (max-width: 560px) {
  .shop-hero-stats { grid-template-columns: 1fr; gap: 0.55rem; }
}
.shop-hero-stats > div {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.shop-hero-stats dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd6ea;
}
.shop-hero-stats dd {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}

/* Mosaic of products in hero */
.shop-hero-mosaic {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.7rem;
}
@media (max-width: 900px) {
  .shop-hero-mosaic {
    min-height: 220px;
    max-width: 420px;
  }
}
.shop-hero-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #fff;
}
.shop-hero-tile--1 {
  grid-row: 1 / span 2;
}
.shop-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.shop-hero-tile:hover img { transform: scale(1.04); }
.shop-hero-tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.75rem 0.65rem;
  background: linear-gradient(180deg, transparent, rgba(2, 12, 28, 0.82));
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-hero-badge {
  position: absolute;
  right: -0.35rem;
  bottom: -0.35rem;
  z-index: 2;
  max-width: 9.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: #fff;
  color: var(--shop-ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
}
.shop-hero-badge strong {
  display: block;
  color: var(--shop-pink);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.shop-hero-badge span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--shop-muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .shop-hero-badge { display: none; }
}

/* Promise strip */
.shop-promise {
  background: #fff;
  border-bottom: 1px solid var(--shop-line);
}
.shop-promise-inner {
  max-width: var(--max, 1120px);
  margin: 0 auto;
  padding: 1rem var(--gutter, 1.25rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}
@media (max-width: 800px) {
  .shop-promise-inner { grid-template-columns: 1fr; }
}
.shop-promise-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.shop-promise-icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--shop-pink), #ed2b7b);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.shop-promise-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--shop-ink);
}
.shop-promise-item p {
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--shop-muted);
}

/* Catalogue header */
.shop-catalogue { padding-top: clamp(1.6rem, 4vw, 2.4rem); }
.shop-catalogue-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.shop-catalogue-head .shop-section-title {
  margin: 0.35rem 0 0.25rem;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--shop-ink);
}
.shop-section-meta {
  margin: 0;
  color: var(--shop-muted);
  font-size: 0.92rem;
}

/* Category pills */
.shop-subnav--pills {
  margin-bottom: 1.35rem;
  padding: 0.15rem;
  gap: 0.35rem;
}
.shop-subnav--pills .shop-subnav-link {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--shop-line);
  background: #fff;
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.03);
  font-size: 0.88rem;
  font-weight: 700;
}
.shop-subnav--pills .shop-subnav-link.is-active {
  background: var(--shop-ink);
  border-color: var(--shop-ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.16);
}

/* —— Professional product cards ———————————————————————————— */
.shop-grid--storefront {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .shop-grid--storefront {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
@media (min-width: 1020px) {
  .shop-grid--storefront {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.shop-card--pro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--shop-card);
  border: 1px solid var(--shop-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 10px 28px rgba(11, 31, 58, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.shop-card--pro:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 0, 90, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 40px rgba(11, 31, 58, 0.12);
}
.shop-card--pro .shop-card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(120% 80% at 50% 0%, #ffffff, #eef2f8 70%);
  display: grid;
  place-items: center;
  overflow: hidden;
  text-decoration: none;
}
.shop-card--pro .shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* merch should not be cropped awkwardly */
  padding: 8%;
  transition: transform 0.35s ease;
}
.shop-card--pro:hover .shop-card-media img {
  transform: scale(1.035);
}
.shop-card--pro .shop-card-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff8e8;
  color: #8a5a00;
  border: 1px solid #f0d492;
  box-shadow: 0 4px 12px rgba(138, 90, 0, 0.12);
}

.shop-card--pro .shop-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  padding: 0.95rem 0.95rem 1rem;
  min-height: 0;
}
.shop-card--pro .shop-card-kicker {
  margin: 0;
  min-height: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-pink);
  line-height: 1.2;
}
.shop-card--pro .shop-card-kicker--spacer {
  visibility: hidden;
}
.shop-card--pro .shop-card-title {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.98rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--shop-ink);
  /* Fixed visual height: always 2 lines of room so cards align */
  min-height: calc(1.28em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-card--pro .shop-card-title a {
  color: inherit;
  text-decoration: none;
}
.shop-card--pro .shop-card-title a:hover,
.shop-card--pro .shop-card-title a:focus-visible {
  color: var(--shop-pink);
}

/* Price row: never fights the CTA */
.shop-card--pro .shop-card-meta-row {
  margin-top: 0.15rem;
}
.shop-card--pro .shop-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28rem 0.4rem;
  margin: 0;
  font-weight: 800;
  color: var(--shop-ink);
  line-height: 1.15;
}
.shop-card--pro .shop-price-from {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--shop-muted);
}
.shop-card--pro .shop-price-amount {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* Full-width CTA under price — never wraps beside "from £x.xx" */
.shop-card--pro .shop-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 31, 58, 0.14);
  background: #fff;
  color: var(--shop-ink);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.shop-card--pro .shop-card-cta:hover,
.shop-card--pro .shop-card-cta:focus-visible {
  background: linear-gradient(135deg, var(--shop-pink), #ed2b7b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(201, 0, 90, 0.28);
}

@media (max-width: 639px) {
  .shop-card--pro .shop-card-body { padding: 0.75rem 0.7rem 0.85rem; }
  .shop-card--pro .shop-card-title {
    font-size: 0.9rem;
    min-height: calc(1.28em * 2);
  }
  .shop-card--pro .shop-price-amount { font-size: 1.02rem; }
  .shop-card--pro .shop-card-cta {
    min-height: 48px;
    font-size: 0.86rem;
  }
  .shop-card--pro .shop-card-media img { padding: 6%; }
}

/* Kill the old side-by-side foot layout on storefront cards */
.shop-card--pro .shop-card-foot { display: none; }

/* Why section — elevated tiles */
.shop-why-intro {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}
.shop-why-intro h2 {
  margin: 0.35rem 0 0.55rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--shop-ink);
}
.shop-why-intro > p {
  margin: 0;
  color: var(--shop-muted);
  line-height: 1.6;
  font-size: 1.02rem;
}
.shop-why-grid--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 860px) {
  .shop-why-grid--cards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
}
.shop-why-tile {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 16px;
  padding: 1.05rem 1.1rem 1.15rem;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.04);
}
.shop-why-tile h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--shop-ink);
}
.shop-why-tile p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--shop-muted);
}

.shop-page--storefront .shop-faq {
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.05);
}

@media (hover: none) {
  .shop-card--pro:hover { transform: none; }
  .shop-hero-tile:hover img { transform: none; }
}
