/* ============================================================
   Service product page — /service/<slug>/
   Depends on: base.css, service.css
   ============================================================ */

/* ── Breadcrumb ─────────────────────────────────────────────────────────────── */

.svc-product-breadcrumb {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.svc-product-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--text-2);
}

.svc-product-breadcrumb-list a {
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--t);
}

.svc-product-breadcrumb-list a:hover { color: var(--text-1); }

.svc-product-breadcrumb-list [aria-current="page"] {
  color: var(--text-1);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 24ch;
}

/* ── Product header ─────────────────────────────────────────────────────────── */

.svc-product-header {
  padding: 3rem 0 1.5rem;
}

.svc-product-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  max-width: 22ch;
}

.svc-product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}

/* Reuse .service-full-card-badges from service.css — no override needed */
/* Reuse .service-full-card-meta + pills from service.css — no override needed */

/* ── Photo ──────────────────────────────────────────────────────────────────── */

.svc-product-photo-section {
  padding: 0 0 2rem;
}

.svc-product-photo .svc-product-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

/* ── Description ────────────────────────────────────────────────────────────── */

.svc-product-desc-section {
  border-top: 1px solid var(--border);
}

.svc-product-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 72ch;
}

/* ── CTA ─────────────────────────────────────────────────────────────────────── */

.svc-product-cta-section {
  border-top: 1px solid var(--border);
}

.svc-product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Related services ───────────────────────────────────────────────────────── */

.svc-product-related {
  border-top: 1px solid var(--border);
}

.svc-product-related-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-1);
  margin-bottom: 2rem;
}

.svc-product-related-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.svc-product-related-card:hover {
  text-decoration: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 48rem) {
  .svc-product-header { padding: 2rem 0 1rem; }

  .svc-product-breadcrumb-list [aria-current="page"] { max-width: 16ch; }

  .svc-product-cta { flex-direction: column; align-items: stretch; }
  .svc-product-cta .btn { text-align: center; }
}
