/**
 * Vanzy production website — distinct from Flutter app chrome.
 * Light editorial product site (not dark glass / bottom-nav / phone UI clone).
 */
:root {
  --prod-ink: #12202e;
  --prod-ink-soft: #2a3d4f;
  --prod-muted: #5a6f82;
  --prod-line: rgba(18, 32, 46, 0.12);
  --prod-surface: #f4f7fa;
  --prod-paper: #ffffff;
  --prod-teal: #0d7377;
  --prod-teal-deep: #095456;
  --prod-sky: #c5dde8;
  --prod-glow: rgba(13, 115, 119, 0.18);
  --prod-display: 'Syne', system-ui, sans-serif;
  --prod-body: 'Manrope', system-ui, sans-serif;
  --prod-max: 1080px;
  --prod-header: 68px;
}

body.page-production {
  font-family: var(--prod-body);
  color: var(--prod-ink);
  background: #ffffff;
  padding-bottom: 0 !important;
}

body.page-production .app-bottom-nav,
body.page-production .app-download-banner {
  display: none !important;
}

body.page-production #app-download-banner-spacer {
  display: none !important;
}

/* Site chrome — clean header, no Material app icons */
body.page-production .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: auto;
  min-height: var(--prod-header);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--prod-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}

body.page-production .site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(18, 32, 46, 0.06);
}

body.page-production .logo-link {
  color: var(--prod-ink);
  font-family: var(--prod-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.page-production .logo-text-van { color: var(--prod-ink); }
body.page-production .logo-text-zy { color: var(--prod-teal); }

body.page-production .nav-desktop a {
  color: var(--prod-ink-soft) !important;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent !important;
  box-shadow: none !important;
  padding: 8px 12px;
  border-radius: 8px;
}

body.page-production .nav-desktop a .nav-icon {
  display: none;
}

body.page-production .nav-desktop a.active,
body.page-production .nav-desktop a:hover {
  color: var(--prod-teal-deep) !important;
  background: rgba(13, 115, 119, 0.08) !important;
}

body.page-production .header-cta .btn-secondary {
  display: none;
}

body.page-production .header-cta .btn-primary {
  background: var(--prod-teal) !important;
  color: #fff !important;
  border-radius: 10px;
  box-shadow: none;
  min-height: 42px;
}

body.page-production .header-cta .btn-primary:hover {
  background: var(--prod-teal-deep) !important;
  transform: none;
}

body.page-production .menu-toggle {
  background: rgba(18, 32, 46, 0.06) !important;
  border: 1px solid var(--prod-line) !important;
}

body.page-production .menu-toggle span {
  background: var(--prod-ink) !important;
}

body.page-production .nav-mobile {
  background: #fff;
  border-top: 1px solid var(--prod-line);
}

body.page-production .nav-mobile a {
  color: var(--prod-ink-soft);
  border-bottom: 1px solid var(--prod-line);
}

body.page-production .nav-mobile a.active,
body.page-production .nav-mobile a:hover {
  color: var(--prod-teal-deep);
  background: rgba(13, 115, 119, 0.06);
}

/* Hero — one composition, brand first, full-bleed photo plane */
.prod-hero {
  position: relative;
  min-height: min(92svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.prod-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prod-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.prod-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(12, 28, 36, 0.88) 0%, rgba(12, 28, 36, 0.55) 48%, rgba(12, 28, 36, 0.28) 100%),
    linear-gradient(180deg, rgba(12, 28, 36, 0.2) 0%, transparent 35%, rgba(12, 28, 36, 0.75) 100%);
}

.prod-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--prod-max));
  margin: 0 auto;
  padding: calc(var(--prod-header) + 48px) 0 56px;
}

.prod-hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-family: var(--prod-display);
  font-size: clamp(2.4rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.prod-hero__brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.prod-hero__brand .logo-text-van { color: #fff; }
.prod-hero__brand .logo-text-zy { color: #7fd4d7; }

.prod-hero__title {
  margin: 0 0 14px;
  max-width: 14ch;
  font-family: var(--prod-display);
  font-size: clamp(1.65rem, 4.8vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.prod-hero__lead {
  margin: 0 0 28px;
  max-width: 36ch;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.prod-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.prod-hero__actions .btn {
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: var(--prod-display);
  font-weight: 700;
}

.prod-hero__actions .btn-primary {
  background: var(--prod-teal) !important;
  box-shadow: 0 10px 28px rgba(13, 115, 119, 0.35);
}

.prod-hero__actions .btn-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.prod-hero__actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.prod-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.prod-hero__meta a {
  color: #9fe3e5;
  font-weight: 600;
}

.prod-hero__meta a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .prod-hero__brand,
  .prod-hero__title,
  .prod-hero__lead,
  .prod-hero__actions,
  .prod-hero__meta {
    animation: prodFadeUp 0.7s ease backwards;
  }
  .prod-hero__title { animation-delay: 0.08s; }
  .prod-hero__lead { animation-delay: 0.16s; }
  .prod-hero__actions { animation-delay: 0.24s; }
  .prod-hero__meta { animation-delay: 0.32s; }
}

@keyframes prodFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* Sections */
.prod-section {
  padding: 72px 0;
}

.prod-section--tight {
  padding: 56px 0;
}

.prod-wrap {
  width: min(100% - 32px, var(--prod-max));
  margin: 0 auto;
}

.prod-kicker {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prod-teal);
}

.prod-h2 {
  margin: 0 0 12px;
  font-family: var(--prod-display);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  color: var(--prod-ink);
  max-width: 22ch;
}

.prod-lead {
  margin: 0 0 32px;
  max-width: 48ch;
  color: var(--prod-muted);
  font-size: 1.05rem;
}

.prod-split {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .prod-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
}

.prod-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.prod-list li {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--prod-line);
}

.prod-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prod-list strong {
  display: block;
  font-family: var(--prod-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--prod-ink);
}

.prod-list span {
  color: var(--prod-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.prod-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(145deg, #0c1c24, #0d7377);
}

.prod-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.92;
}

.prod-visual__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  background: rgba(12, 28, 36, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Get the app */
.prod-getapp {
  background:
    linear-gradient(135deg, rgba(13, 115, 119, 0.09), transparent 40%),
    #fff;
  border-block: 1px solid var(--prod-line);
}

.prod-getapp__panel {
  display: grid;
  gap: 28px;
}

@media (min-width: 800px) {
  .prod-getapp__panel {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.prod-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-production .btn-store {
  background: var(--prod-ink) !important;
  color: #fff !important;
  border-radius: 12px;
}

body.page-production .btn-store small {
  color: rgba(255, 255, 255, 0.7);
}

body.page-production .btn-store.coming-soon-link small::after {
  content: ' · În curând';
}

/* Links / legal strip */
.prod-links {
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .prod-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.prod-link {
  display: block;
  padding: 22px 0;
  border-top: 1px solid var(--prod-line);
  color: inherit;
  transition: color 0.15s ease;
}

.prod-link:hover {
  color: var(--prod-teal-deep);
}

.prod-link strong {
  display: block;
  font-family: var(--prod-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.prod-link span {
  color: var(--prod-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.prod-corridors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.prod-corridors a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--prod-line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--prod-ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
}

.prod-corridors a:hover {
  border-color: var(--prod-teal);
  color: var(--prod-teal-deep);
}

/* Footer overrides for production pages that still use shared footer */
body.page-production .site-footer {
  background: var(--prod-ink);
  color: rgba(255, 255, 255, 0.72);
  border-top: none;
  padding: 48px 0 28px;
}

body.page-production .site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

body.page-production .site-footer a:hover {
  color: #9fe3e5;
}

body.page-production .footer-brand p strong {
  color: #fff;
}

body.page-production .footer-col h3 {
  color: #fff;
  font-family: var(--prod-display);
}

body.page-production .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}

/* Inner production pages (support polish when class applied) */
body.page-production.page-support .support-hero,
body.page-production .inner-hero {
  background: linear-gradient(145deg, #0c1c24, #0d7377);
}

/* —— CMS homepage extensions —— */
.prod-banner {
  background: var(--prod-ink);
  color: #fff;
  padding: 12px 0;
  font-size: 0.92rem;
}

.prod-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.prod-banner a {
  color: #9fe3e5;
  font-weight: 700;
}

.prod-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .prod-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.prod-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.prod-steps__n {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--prod-teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--prod-display);
  font-weight: 700;
}

.prod-steps strong {
  display: block;
  font-family: var(--prod-display);
  margin-bottom: 6px;
}

.prod-steps p {
  margin: 0;
  color: var(--prod-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.prod-section--alt {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--prod-line);
}

.prod-section--stats {
  padding: 40px 0 48px;
  background: var(--prod-paper);
  border-bottom: 1px solid var(--prod-line);
}

.prod-hero--compact {
  min-height: min(72vh, 640px);
}

.prod-hero--compact .prod-hero__inner {
  padding-bottom: 48px;
}

.prod-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 16px;
}

@media (min-width: 720px) {
  .prod-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.prod-stat {
  padding: 16px 14px;
  border-radius: 14px;
  background: var(--prod-surface);
  border: 1px solid var(--prod-line);
  text-align: center;
}

.prod-stat strong {
  display: block;
  font-family: var(--prod-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--prod-teal);
  line-height: 1.1;
}

.prod-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--prod-muted);
}

.prod-h3 {
  margin: 28px 0 12px;
  font-family: var(--prod-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--prod-ink-soft);
}

.prod-section-actions--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prod-eu-notice {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(13, 115, 119, 0.08);
  color: var(--prod-teal-deep);
  font-size: 0.92rem;
  font-weight: 600;
}

.prod-adv-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 720px) {
  .prod-adv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
  }
}

.prod-adv-grid article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--prod-line);
}

.prod-adv-grid strong {
  display: block;
  font-family: var(--prod-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.prod-adv-grid p {
  margin: 0;
  color: var(--prod-muted);
  line-height: 1.5;
}

.prod-audience {
  display: grid;
  gap: 40px;
}

@media (min-width: 800px) {
  .prod-audience {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.prod-reviews {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .prod-reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

.prod-review {
  margin: 0;
  padding: 0 0 8px;
  border-top: 1px solid var(--prod-line);
  padding-top: 16px;
}

.prod-review__stars {
  color: var(--prod-teal);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.prod-review p {
  margin: 0 0 10px;
  line-height: 1.5;
  color: var(--prod-ink-soft);
}

.prod-review footer {
  font-size: 0.85rem;
  color: var(--prod-muted);
}

.prod-store-note {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--prod-muted);
}

.prod-country-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prod-country {
  padding: 8px 12px;
  border: 1px solid var(--prod-line);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--prod-ink-soft);
}

.prod-eu-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--prod-teal);
  background: rgba(13, 115, 119, 0.08);
  color: var(--prod-ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
  max-width: 52ch;
}

.prod-faq {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.prod-faq__item {
  border: 1px solid var(--prod-line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 0 16px;
  overflow: hidden;
}

.prod-faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--prod-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 16px 0;
  color: var(--prod-ink);
}

.prod-faq__item summary::-webkit-details-marker { display: none; }

.prod-faq__item summary::after {
  content: '+';
  float: right;
  color: var(--prod-teal);
  font-weight: 800;
}

.prod-faq__item[open] summary::after { content: '–'; }

.prod-faq__item p {
  margin: 0 0 16px;
  color: var(--prod-muted);
  line-height: 1.55;
  max-width: 68ch;
}

.prod-muted {
  color: var(--prod-muted);
}

.btn-ghost-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1.5px solid var(--prod-line);
  border-radius: 12px;
  color: var(--prod-ink);
  font-family: var(--prod-display);
  font-weight: 700;
  background: #fff;
}

.btn-ghost-ink:hover {
  border-color: var(--prod-teal);
  color: var(--prod-teal-deep);
}

/* Public profile / listing */
.pp-wrap {
  width: min(100% - 32px, var(--prod-max));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.pp-demo-banner {
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(13, 115, 119, 0.1);
  border-left: 3px solid var(--prod-teal);
  font-size: 0.88rem;
  color: var(--prod-ink-soft);
}

.pp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.85rem;
  color: var(--prod-muted);
  margin-bottom: 22px;
}

.pp-breadcrumb a { color: var(--prod-teal-deep); font-weight: 600; }

.pp-hero {
  display: grid;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--prod-line);
}

@media (min-width: 860px) {
  .pp-hero {
    grid-template-columns: auto 1fr auto;
    align-items: start;
  }
}

.pp-avatar {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c1c24, #0d7377);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--prod-display);
  font-size: 2rem;
  font-weight: 800;
}

.pp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prod-teal);
}

.pp-hero h1 {
  margin: 0 0 10px;
  font-family: var(--prod-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.03em;
}

.pp-lead {
  margin: 0 0 14px;
  color: var(--prod-muted);
  max-width: 52ch;
  line-height: 1.55;
}

.pp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pp-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  background: rgba(13, 115, 119, 0.1);
  color: var(--prod-teal-deep);
  border-radius: 999px;
}

.pp-stars { color: var(--prod-teal); }
.pp-stars--empty { color: var(--prod-muted); font-size: 0.9rem; }
.pp-muted { color: var(--prod-muted); }
.pp-rating-line { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.pp-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

@media (min-width: 700px) {
  .pp-stats { grid-template-columns: repeat(4, 1fr); }
}

.pp-stats > div {
  padding: 14px 0;
  border-top: 1px solid var(--prod-line);
}

.pp-stats strong {
  display: block;
  font-family: var(--prod-display);
  font-size: 1.15rem;
}

.pp-stats span {
  font-size: 0.82rem;
  color: var(--prod-muted);
}

.pp-section { margin-top: 36px; }
.pp-section h2 {
  margin: 0 0 14px;
  font-family: var(--prod-display);
  font-size: 1.35rem;
}

.pp-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-chip {
  padding: 8px 12px;
  border: 1px solid var(--prod-line);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.pp-route-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.pp-route-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--prod-line);
}

.pp-listings {
  display: grid;
  gap: 12px;
}

@media (min-width: 700px) {
  .pp-listings { grid-template-columns: 1fr 1fr; }
}

.pp-listing {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--prod-line);
  color: inherit;
}

.pp-listing img {
  width: 120px;
  height: 72px;
  object-fit: cover;
}

.pp-listing strong { display: block; font-family: var(--prod-display); }
.pp-listing span { color: var(--prod-muted); font-size: 0.88rem; }

.pp-reviews { display: grid; gap: 16px; }
.pp-review {
  padding: 14px 0;
  border-top: 1px solid var(--prod-line);
}
.pp-review p { margin: 8px 0; line-height: 1.5; }
.pp-review__meta { font-size: 0.85rem; color: var(--prod-muted); }
.pp-review__photos { display: flex; gap: 8px; flex-wrap: wrap; margin: 8px 0; }
.pp-review__photos img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--prod-line); }
.pp-review__reply { margin: 10px 0 0; padding: 10px 12px; background: var(--prod-surface, #f7f8f9); border-left: 3px solid var(--prod-accent, #0d7377); border-radius: 0 8px 8px 0; font-size: 0.9rem; }
.pp-review__reply p { margin: 4px 0 0; }
.pp-cover { width: min(100% - 32px, var(--prod-max)); margin: 0 auto 16px; border-radius: 12px; overflow: hidden; max-height: 220px; }
.pp-cover img { width: 100%; height: 220px; object-fit: cover; display: block; }
.pp-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.pp-gallery img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 8px; border: 1px solid var(--prod-line); }
.pp-fleet { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pp-fleet li { display: flex; align-items: center; gap: 12px; padding: 10px; border: 1px solid var(--prod-line); border-radius: 8px; }
.pp-fleet img { border-radius: 6px; object-fit: cover; }
.pp-rev-note { margin: 0 0 12px; font-size: 0.9rem; }

.pp-empty, .pp-loading {
  width: min(100% - 32px, var(--prod-max));
  margin: 48px auto;
}

.pl-hero {
  display: grid;
  gap: 24px;
}

@media (min-width: 860px) {
  .pl-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.pl-media {
  position: relative;
  overflow: hidden;
  background: #0c1c24;
  min-height: 220px;
}

.pl-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.pl-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(12, 28, 36, 0.8);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.pl-main h1 {
  margin: 0 0 10px;
  font-family: var(--prod-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.pl-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.pl-facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--prod-line);
  font-size: 0.95rem;
}

.pl-facts dt { color: var(--prod-muted); margin: 0; }
.pl-facts dd { margin: 0; font-weight: 650; }

.pl-carrier {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

@media (max-width: 640px) {
  .prod-hero__inner { padding-bottom: 40px; }
  .pp-listing { grid-template-columns: 1fr; }
  .pp-listing img { width: 100%; height: 140px; }
  .pl-facts div { grid-template-columns: 1fr; }
}
