* { box-sizing: border-box; }
:root {
  --qg-teal: #0d9488;
  --qg-teal-dark: #0f766e;
  --qg-teal-light: #14b8a6;
  --qg-cyan: #22d3ee;
  --qg-slate-border: rgba(148, 163, 184, 0.2);
  --qg-font: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --qg-display: Outfit, "IBM Plex Sans", "Segoe UI", sans-serif;
  --qg-glass-bg: linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.34) 100%);
  --qg-glass-border: rgba(255, 255, 255, 0.55);
  --qg-glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 28px rgba(15, 23, 42, 0.05);
  --qg-glass-blur: blur(14px) saturate(1.2);
  --site-sticky-top: 134px;
}
body {
  margin: 0;
  font-family: var(--qg-font);
  color: #0f172a;
  background:
    radial-gradient(ellipse 90% 55% at 12% -10%, rgba(34, 211, 238, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 8%, rgba(13, 148, 136, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f7fb 0%, #eef8f6 42%, #f1f5f9 100%);
  letter-spacing: 0.01em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(13, 148, 136, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% -5%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% -5%, #000 15%, transparent 72%);
}
body > * {
  position: relative;
  z-index: 1;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.38) 0%,
      rgba(240, 253, 250, 0.22) 55%,
      rgba(255, 255, 255, 0.18) 100%
    );
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 32px rgba(15, 23, 42, 0.05);
}
.site-header .topbar.wrap {
  padding: 14px 20px 8px;
}
.site-notice-banner {
  border-bottom: 1px solid rgba(245, 158, 11, 0.32);
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.98), rgba(240, 253, 250, 0.94));
}
.site-notice-banner__inner {
  padding: 11px 20px;
}
.site-notice-banner__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: #92400e;
}
.site-notice-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: #334155;
}
.topbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.header-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding-bottom: 0;
}
.header-top__search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}
.header-top__search .site-search {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  flex: 0 0 auto;
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.22) 100%
    );
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 10px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.header-action:hover {
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(240, 253, 250, 0.45) 100%
    );
  transform: translateY(-1px);
}
.header-action--phone {
  white-space: nowrap;
}
.header-action--icon {
  width: 40px;
  height: 40px;
  justify-content: center;
  padding: 0;
}
.header-action__icon {
  display: block;
  flex-shrink: 0;
}
.header-action__label {
  display: inline-block;
}
.header-nav {
  width: 100%;
  justify-content: flex-end;
  margin-top: 14px;
  padding: 6px 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.topbar .site-search {
  flex: none;
  max-width: none;
}
.topbar .main-nav {
  flex: none;
  justify-content: flex-end;
}
.brand {
  color: var(--qg-teal-dark);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: transparent;
  border: none;
  box-shadow: none;
}
.main-nav a {
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 14px;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0.18) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 10px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.main-nav a.active,
.main-nav a:hover {
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(240, 253, 250, 0.42) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 4px 14px rgba(13, 148, 136, 0.1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Căutare globală (header + /cautare) ——— */
.site-search {
  position: relative;
  width: 100%;
}
.site-search--hero {
  max-width: 560px;
  margin-top: 18px;
}
.site-search__form {
  margin: 0;
}
.site-search__field {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(255, 255, 255, 0.28) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 4px 18px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  overflow: hidden;
}
.site-search__input {
  flex: 1;
  border: 0;
  padding: 10px 12px;
  font-size: 15px;
  background: transparent;
  min-width: 0;
  color: #0f172a;
}
.site-search__input::placeholder {
  color: #94a3b8;
}
.site-search__input:focus {
  outline: none;
}
.site-search__field:focus-within {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}
.site-search__submit {
  flex-shrink: 0;
  border: 0;
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  background: #0d9488;
  color: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.site-search__submit:hover {
  filter: brightness(0.96);
}
.site-search__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  max-height: min(60vh, 340px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  z-index: 50;
}
.site-search__panel[hidden] {
  display: none !important;
}
.site-search__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  align-items: start;
}
.site-search__item:last-child {
  border-bottom: 0;
}
.site-search__item:hover,
.site-search__item:focus-visible {
  background: rgba(13, 148, 136, 0.08);
  outline: none;
}
.site-search__badge {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(13, 148, 136, 0.12);
  padding: 4px 7px;
  border-radius: 6px;
  white-space: nowrap;
}
.site-search__title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
  line-height: 1.3;
}
.site-search__subtitle {
  grid-column: 2;
  grid-row: 2;
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
}
.cautare-quick__grid h3 a {
  color: var(--qg-teal-dark);
  text-decoration: none;
}
.cautare-quick__grid h3 a:hover {
  text-decoration: underline;
}
.hero {
  background:
    radial-gradient(ellipse 68% 70% at 4% -8%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 96% 18%, rgba(13, 148, 136, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.55) 0%, rgba(241, 245, 249, 0.85) 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  padding: 48px 20px;
  overflow: hidden;
}
.hero-small { padding: 32px 20px; }
.hero__inner, .wrap { max-width: 1200px; margin: 0 auto; }
h1 {
  margin: 0 0 12px;
  font-family: var(--qg-display);
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  background: linear-gradient(115deg, #0f172a 18%, #0f766e 58%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p { margin: 0; opacity: .95; color: #334155; }
.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(240, 253, 250, 0.28) 100%
    );
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 28px rgba(15, 23, 42, 0.05);
}
.stats strong { display: block; font-size: 26px; font-family: var(--qg-display); letter-spacing: -0.03em; }
.stats span { opacity: .85; font-size: 13px; color: #334155; }
.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.35);
  font-family: var(--qg-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #22d3ee 130%);
  color: #fff;
  border-color: rgba(13, 148, 136, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 22px rgba(13, 148, 136, 0.22);
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn-secondary {
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.28) 100%
    );
  color: #0f172a;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.wrap { padding: 24px 20px 40px; }
.section { margin: 16px 0 32px; }
.section h2 {
  margin: 0 0 14px;
  font-family: var(--qg-display);
  font-size: 28px;
  letter-spacing: -0.03em;
}
.section h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--qg-teal) 0%, var(--qg-cyan) 70%, transparent 100%);
}

/* FAQ acordeon (toate paginile) */
.faq-section--accordion {
  width: 100%;
  max-width: none;
}
.faq-accordion {
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-accordion__item {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.faq-accordion__item[open] {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
}
.faq-accordion__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-accordion__question::-webkit-details-marker {
  display: none;
}
.faq-accordion__question::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: -3px;
  border-right: 2px solid #0f766e;
  border-bottom: 2px solid #0f766e;
  transform: rotate(45deg);
  transition: transform 0.28s ease;
}
.faq-accordion__item[open] > .faq-accordion__question::after {
  margin-top: 3px;
  transform: rotate(-135deg);
}
.faq-accordion__answer {
  box-sizing: border-box;
  padding: 0 16px;
  border-top: 1px solid transparent;
}
.faq-accordion--js .faq-accordion__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.28s ease;
}
.faq-accordion__item[open] .faq-accordion__answer {
  padding-bottom: 16px;
  border-top-color: rgba(148, 163, 184, 0.2);
}
.faq-accordion__answer p {
  margin: 12px 0 0;
  color: #475569;
  line-height: 1.65;
  font-size: 15px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.service-grid article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 16px;
  padding: 16px 16px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.service-grid article:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.service-grid h3 { margin: 0 0 8px; }
.settings-card {
  max-width: 720px;
}
.settings-sql-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}
.settings-sql-item {
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.6);
}
.settings-sql-item h4 {
  margin: 0 0 6px;
}
.settings-sql-item__meta {
  margin: 0 0 6px;
  font-size: 0.92rem;
}
.settings-sql-item form {
  margin-top: 10px;
}
.pin-inputs {
  display: flex;
  gap: 8px;
}
.pin-digit {
  width: 52px;
  height: 52px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pin-digit:focus {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 1px;
}
.tools-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.notice {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid transparent;
  font-size: 14px;
}
.notice.success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: #166534;
}
.notice.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #991b1b;
}
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
}
.filters input, .filters select, .filters button {
  border-radius: 10px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  padding: 12px;
}
.filters button {
  background: linear-gradient(135deg, var(--qg-teal), var(--qg-teal-light));
  color: #fff;
  border: 1px solid var(--qg-teal);
  cursor: pointer;
}
.filters--piese {
  grid-template-columns: minmax(170px, 1.7fr) repeat(5, minmax(120px, 1fr));
  gap: 8px;
}
.filters--piese input,
.filters--piese select,
.filters--piese button {
  padding: 9px 10px;
  font-size: 13px;
}
/* Catalog service (listă): 5 coloane — căutare + 3 filtre + buton */
.filters--service-catalog {
  grid-template-columns: minmax(170px, 1.7fr) repeat(3, minmax(112px, 1fr)) minmax(104px, auto);
}
.filters--service-catalog--search {
  grid-template-columns: minmax(200px, 1fr) auto;
}

.service-card-repairs {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 8px;
  scrollbar-gutter: stable;
}
.service-card-repairs-fallback {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.45;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.52) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 12px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 16px 36px rgba(13, 148, 136, 0.1);
}
.card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 16px;
}
.card__content { padding: 14px; }
.card h3 { margin: 0 0 6px; font-size: 17px; }
.card h3 a,
.card h3 a:visited,
.card h3 a:hover,
.card h3 a:active,
.card h3 a:focus {
  color: inherit;
  text-decoration: none;
}
.muted { color: #64748b; font-size: 13px; }
.model {
  margin: 8px 0;
  color: #334155;
  min-height: 32px;
  font-size: 13px;
}
ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}
li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 4px;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.45);
}
.pager {
  margin-top: 20px;
  display: flex;
  gap: 6px;
}
.pager a {
  color: #0f172a;
  text-decoration: none;
  border: 1px solid rgba(13, 148, 136, 0.24);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.pager .active {
  background: linear-gradient(135deg, var(--qg-teal), var(--qg-teal-light));
  border-color: var(--qg-teal);
  color: #fff;
}
.result-count { margin: 0 0 14px; color: #475569; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.plain-card { padding: 16px; }
.plain-card a { color: var(--qg-teal-dark); }
.plain-card a:hover { color: var(--qg-teal); }
.map-placeholder {
  margin-top: 10px;
  border: 1px dashed rgba(13, 148, 136, 0.35);
  border-radius: 10px;
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--qg-teal-dark);
  background: rgba(240, 253, 250, 0.75);
}
.contact-form {
  display: grid;
  gap: 10px;
}
.contact-form input,
.contact-form textarea,
.contact-form button {
  border-radius: 10px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  padding: 12px;
}
.contact-form button {
  background: linear-gradient(135deg, var(--qg-teal), var(--qg-teal-light));
  color: #fff;
  border: 1px solid var(--qg-teal);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.18);
  cursor: pointer;
}
.contact-form button:hover {
  filter: brightness(1.04);
}
.prose p { margin: 0 0 12px; color: #334155; }
.prose a {
  color: var(--qg-teal-dark);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.3);
}
.prose a:hover {
  color: var(--qg-teal);
  border-bottom-color: rgba(13, 148, 136, 0.5);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  padding: 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.footer-grid h4 { margin: 0 0 8px; }

.site-footer--rich {
  padding: 0;
  border-top: none;
  background: linear-gradient(180deg, #0f172a 0%, #0c1322 48%, #070b14 100%);
  color: #e2e8f0;
}
.site-footer--rich a {
  color: #99f6e4;
  text-decoration: none;
}
.site-footer--rich a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
  padding: 44px 20px 36px;
}
.footer-col--brand {
  padding-right: clamp(8px, 3vw, 24px);
}
.footer-logo {
  display: inline-block;
  font-family: var(--qg-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none !important;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #fff 10%, #99f6e4 55%, #22d3ee 120%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
}
.footer-logo:hover {
  -webkit-text-fill-color: #ccfbf1;
  color: #ccfbf1 !important;
  text-decoration: none !important;
}
.footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 28rem;
}
.footer-heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1 !important;
}
.footer-links a:hover {
  color: #fff !important;
}
.footer-col--contact .footer-contact-line {
  margin: 0 0 8px;
  font-size: 15px;
}
.footer-col--contact .footer-contact-line a {
  font-weight: 600;
  color: #fff !important;
}
.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}
.footer-hours p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #cbd5e1;
}
.footer-hours strong {
  color: #f1f5f9;
  font-weight: 600;
}
.footer-hours-note {
  margin-top: 10px !important;
  font-size: 12px !important;
  line-height: 1.45;
}
.footer-hours-note a {
  color: #99f6e4 !important;
}
.footer-bottom {
  border-top: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(0, 0, 0, 0.22);
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 16px 20px 20px;
}
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 12px;
}
.footer-legal a {
  color: #94a3b8 !important;
}
.footer-legal a:hover {
  color: #e2e8f0 !important;
}
.footer-legal-sep {
  opacity: 0.35;
  user-select: none;
}

@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}
@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.info-steps {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-steps li {
  display: block;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(240, 253, 250, 0.65);
  border: 1px solid rgba(13, 148, 136, 0.14);
  border-bottom: none !important;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

/* Pagina dedicata model service (structura tip landing) */
.hero--service-model {
  padding-bottom: 44px;
  background:
    radial-gradient(ellipse 75% 65% at 20% 0%, rgba(45, 212, 191, 0.14), transparent 55%),
    radial-gradient(circle at 100% 40%, rgba(148, 163, 184, 0.1), transparent 48%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f4 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.service-model-kicker {
  margin: 0 0 12px;
  font-family: var(--qg-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--qg-teal-dark);
}
.service-model-h1 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.service-model-h1__prefix {
  display: block;
  font-size: clamp(14px, 2.5vw, 17px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
  -webkit-text-fill-color: #64748b;
  background: none;
  margin-bottom: 10px;
}
.hero-lead {
  margin-top: 18px;
  font-size: clamp(16px, 2.6vw, 19px);
  line-height: 1.6;
  max-width: 52rem;
  color: #475569;
}
.hero-lead strong { color: #0f172a; font-weight: 600; }
.hero-meta {
  margin-top: 16px;
  font-size: 14px;
  padding: 10px 14px;
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 148, 136, 0.18);
}

.service-model-page {
  padding-top: 8px;
  padding-bottom: 48px;
}
.service-model-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin-bottom: 32px;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 148, 136, 0.16);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.service-model-breadcrumb a {
  color: var(--qg-teal-dark);
  text-decoration: none;
  font-weight: 500;
}
.service-model-breadcrumb a:hover {
  text-decoration: underline;
  color: var(--qg-teal);
}
.service-model-breadcrumb span[aria-hidden="true"] {
  opacity: 0.45;
  user-select: none;
}

.service-model-intro {
  position: relative;
  margin-bottom: 40px;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(13, 148, 136, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 250, 0.35) 100%);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 22px 48px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}
.service-model-intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #2dd4bf, #14b8a6);
  opacity: 0.95;
}
.service-model-intro__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 3.5vw, 30px);
  color: #0f172a;
  letter-spacing: -0.02em;
}
.service-model-intro__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.68;
  color: #475569;
}
.service-model-intro__text:last-of-type {
  margin-bottom: 0;
}
.service-model-intro a {
  color: var(--qg-teal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.3);
}
.service-model-intro a:hover {
  border-bottom-color: var(--qg-teal);
  color: var(--qg-teal);
}

.service-model-highlights {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-model-highlights li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(13, 148, 136, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  font-size: 14px;
  line-height: 1.58;
  color: #334155;
}
.service-model-highlights__mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0d9488, #14b8a6);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
  position: relative;
}
.service-model-highlights__mark::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.service-model-tech-narrative {
  margin-bottom: 32px;
}
.service-model-tech-narrative__inner {
  padding: 24px 26px;
  border-radius: 18px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 253, 250, 0.45));
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}
.service-model-tech-narrative__title {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.6vw, 22px);
  color: #0f172a;
  letter-spacing: -0.02em;
}
.service-model-tech-narrative__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.72;
  color: #475569;
}
.service-model-tech-narrative__note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.service-model-layout.two-col {
  align-items: start;
  gap: 28px;
}
.service-model-visual {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.4));
  border: 1px solid rgba(13, 148, 136, 0.14);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}
@media (min-width: 901px) {
  .service-model-visual,
  .part-detail-visual {
    position: sticky;
    top: var(--site-sticky-top);
  }
}
.service-model-visual__figure {
  margin: 0;
}
.service-model-visual img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.08));
}
.service-model-visual__caption {
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}

.service-model-repairs-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}
.service-model-repairs-head__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 26px);
  color: #0f172a;
  letter-spacing: -0.02em;
}
.service-model-repairs-head__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 48rem;
}

.service-model-variant-card {
  margin-bottom: 14px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(13, 148, 136, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-model-variant-card:hover {
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.1);
}
.service-model-variant-card:last-child {
  margin-bottom: 0;
}
.service-model-variant-card__title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px solid rgba(13, 148, 136, 0.2);
}

.service-model-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-model-price-list li {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  font-size: 14px;
  border-bottom: none;
}
.service-model-price-list__rowlink {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
}
.service-model-price-list__rowlink:hover .service-model-price-list__name {
  color: var(--qg-teal-dark);
  text-decoration: underline;
}
.service-model-price-list li:nth-child(odd) {
  background: rgba(241, 248, 255, 0.65);
}
.service-model-price-list__name {
  color: #334155;
}
.service-model-price-list__amt {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #1e40af;
  white-space: nowrap;
}
.service-model-price-list__note {
  font-size: 13px;
  white-space: nowrap;
}

/* Panou unificat: breadcrumb + linkuri cataloage */
.model-context-panel {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.45));
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.model-context-panel--compact {
  margin: 8px 0 12px;
  padding: 8px 10px;
}
.model-context-panel .model-catalog-nav {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  gap: 10px;
}
.model-context-panel__trail {
  flex: 1 1 100%;
  font-size: 13px;
  line-height: 1.45;
}
.model-context-panel--compact .model-context-panel__trail {
  font-size: 12px;
}
.model-context-panel__trail a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
}
.model-context-panel__trail a:hover {
  text-decoration: underline;
}
.model-context-panel__trail + .model-catalog-nav__links {
  flex: 1 1 100%;
  padding-top: 10px;
  margin-top: 2px;
  border-top: 1px solid rgba(13, 148, 136, 0.12);
}
.model-context-panel--compact .model-context-panel__trail + .model-catalog-nav__links {
  padding-top: 8px;
}

/* Navigare între cataloage pentru același model */
.model-catalog-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.45));
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.model-catalog-nav--compact {
  margin: 8px 0 12px;
  padding: 8px 10px;
  gap: 6px 8px;
}
.model-catalog-nav__heading {
  flex: 1 1 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f766e;
  margin: 0 0 2px;
}
.model-catalog-nav--compact .model-catalog-nav__heading {
  flex: 0 1 auto;
  margin: 0 8px 0 0;
  font-size: 11px;
}
.model-catalog-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.model-catalog-nav--compact .model-catalog-nav__links {
  flex: 1 1 auto;
  gap: 6px;
}
.model-catalog-nav__link {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
.model-catalog-nav--compact .model-catalog-nav__link {
  padding: 4px 9px;
  font-size: 11px;
}
.model-catalog-nav__link:hover {
  color: var(--qg-teal-dark);
  border-color: rgba(13, 148, 136, 0.4);
  background: #fff;
}
.model-catalog-nav__link.is-active {
  color: #fff;
  background: var(--qg-teal);
  border-color: var(--qg-teal-dark);
  pointer-events: none;
}

/* Schimbare: bandă orizontală reparații + alternative */
.card.plain-card.schimbare-repairs-nav {
  padding: 16px;
  overflow: hidden;
}
.card.plain-card.schimbare-repairs-nav:not(.part-detail-visual__alternatives) {
  margin-top: 20px;
  margin-bottom: 20px;
}
.schimbare-repairs-nav.part-detail-visual__alternatives {
  margin-top: 18px;
  max-width: 100%;
  min-width: 0;
}
.schimbare-repairs-nav .service-model-repairs-head__title {
  margin: 0 0 6px;
  padding: 0;
}
.schimbare-repairs-nav .service-model-repairs-head__sub {
  padding: 0;
  margin-bottom: 12px;
}
.schimbare-repairs-nav .schimbare-repairs-strip {
  padding: 0 0 6px;
  margin: 0;
}
.schimbare-repairs-nav .schimbare-repair-tile {
  padding: 0 0 12px;
  gap: 0;
  overflow: hidden;
}
.schimbare-repairs-nav .schimbare-repair-tile__media {
  width: 100%;
  margin: 0;
  padding: 5px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.schimbare-repairs-nav .schimbare-repair-tile__media img,
.schimbare-repairs-nav .schimbare-repair-tile__media amp-img,
.schimbare-repairs-nav .schimbare-repair-tile__img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}
.schimbare-repairs-nav .schimbare-repair-tile__label {
  padding: 10px 10px 0;
  min-height: 0;
  white-space: normal;
  hyphens: auto;
}
.schimbare-repairs-nav .schimbare-repair-tile__meta,
.schimbare-repairs-nav .schimbare-repair-tile__price {
  padding: 4px 10px 0;
}
.schimbare-repairs-nav .schimbare-repair-tile__price:last-child,
.schimbare-repairs-nav .schimbare-repair-tile__meta:last-child {
  padding-bottom: 2px;
}
.schimbare-repairs-nav .schimbare-repair-tile__meta {
  white-space: normal;
  line-height: 1.3;
}

.schimbare-repairs-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 14px;
  margin: 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-gutter: stable;
}
.schimbare-repair-tile {
  flex: 0 0 auto;
  width: clamp(118px, 32vw, 140px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}
.schimbare-repair-tile:hover {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}
.schimbare-repair-tile--model {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.55));
}
.schimbare-repair-tile--current {
  border-color: rgba(13, 148, 136, 0.65);
  box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.35), 0 6px 18px rgba(15, 23, 42, 0.08);
}
.schimbare-repair-tile__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.9);
}
.schimbare-repair-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.schimbare-repair-tile__media amp-img {
  width: 100%;
  height: 100%;
}
.schimbare-repair-tile__label {
  font-size: clamp(11px, 2.6vw, 13px);
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
  text-align: center;
  min-height: 0;
  padding: 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}
.schimbare-repair-tile__meta {
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  display: block;
  padding: 4px 8px 0;
  white-space: normal;
}
.schimbare-repair-tile__price {
  font-size: clamp(12px, 2.8vw, 13px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: #1e40af;
  padding: 4px 8px 0;
}
.schimbare-repair-tile__price--note {
  font-weight: 500;
  font-size: 12px;
  color: #64748b;
}

.service-model-specs-heading {
  margin: 1.25rem 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.service-model-specs.model-info-specs {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.92rem;
  margin: 0;
}
.service-model-specs dt {
  margin: 0;
}
.service-model-specs dd {
  margin: 0;
}

.service-model-prose {
  margin-top: 12px;
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.5));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}
.service-model-prose h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 3.5vw, 28px);
  letter-spacing: -0.02em;
  color: #0f172a;
}
.service-model-prose p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.68;
  color: #475569;
}
.service-model-prose p:last-child {
  margin-bottom: 0;
}
.service-model-prose a {
  color: var(--qg-teal-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.28);
}
.service-model-prose a:hover {
  color: var(--qg-teal);
  border-bottom-color: rgba(13, 148, 136, 0.45);
}
.schimbare-context {
  margin-top: 8px;
  margin-bottom: 24px;
}
.schimbare-context__lead {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}
.schimbare-context__sub {
  margin: 20px 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f766e;
}
.schimbare-context__model-info {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  background: linear-gradient(145deg, rgba(240, 253, 250, 0.9), rgba(255, 255, 255, 0.95));
  line-height: 1.65;
}
.schimbare-context__model-info p {
  margin: 0;
}
.schimbare-context__model-info p + p {
  margin-top: 12px;
}
.schimbare-context__original-note {
  font-weight: 600;
  color: #0f766e;
}

.service-model-notes {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 16px;
  border-left: 4px solid #0d9488;
  background: linear-gradient(90deg, rgba(240, 253, 250, 0.9), rgba(255, 255, 255, 0.82));
  border-top: 1px solid rgba(251, 191, 36, 0.25);
  border-right: 1px solid rgba(251, 191, 36, 0.15);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.06);
}
.service-model-notes h3 {
  margin: 0 0 14px;
  font-size: 17px;
  color: #92400e;
}
.service-model-notes__list {
  margin: 0;
  padding-left: 1.2rem;
  color: #57534e;
  font-size: 14px;
  line-height: 1.58;
}
.service-model-notes__list li {
  margin-bottom: 10px;
}
.service-model-notes__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .filters { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .service-model-intro {
    padding: 24px 18px;
  }
  .service-model-tech-narrative__inner {
    padding: 20px 18px;
  }
  .service-model-prose {
    padding: 24px 18px;
  }
  .hero--service-model {
    padding-bottom: 32px;
  }
}

/* Header mobil: logo + search + apel/coș inline; meniu jos */
@media (max-width: 768px) {
  :root {
    --site-sticky-top: 118px;
  }
  .site-header .topbar.wrap {
    padding: 10px 16px 8px;
  }
  .header-top {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .brand {
    flex: 0 0 auto;
  }
  .header-top__search {
    flex: 1 1 0;
    min-width: 0;
  }
  .header-actions {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 6px;
  }
  .header-action--desktop {
    display: none;
  }
  .header-action--phone {
    width: 40px;
    height: 40px;
    justify-content: center;
    padding: 0;
  }
  .header-action--phone .header-action__label {
    display: none;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
  }
  .header-nav,
  .topbar .main-nav {
    justify-content: flex-start;
    margin-top: 10px;
    padding: 5px 0 0;
  }
  .main-nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
    border-top: none;
  }
  .main-nav::-webkit-scrollbar {
    height: 4px;
  }
  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, 0.35);
    border-radius: 4px;
  }
  .main-nav a {
    flex-shrink: 0;
    font-size: 13px;
    padding: 8px 10px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .site-search__input {
    font-size: 16px; /* reduce zoom iOS pe focus */
    padding: 8px 10px;
  }
  .topbar .site-search__submit {
    padding: 8px 11px;
    font-size: 13px;
  }
}

/* ——— Catalog piese (listă) ———
   Hero vizual = .hero global; clasele de mai jos doar tipografie / lățime */
.hero--piese__inner {
  max-width: 920px;
}
.hero--piese__eyebrow {
  margin: 0 0 10px;
  font-family: var(--qg-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
}
.hero--piese__lead {
  margin-top: 14px;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.65;
  color: #475569;
  max-width: 46rem;
}
.hero--piese__bullets {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.hero--piese__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  justify-content: flex-start;
  border-bottom: none;
}
.hero--piese__bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5eead4, #0d9488);
  flex-shrink: 0;
}

.piese-page,
.reparatii-page,
.schimbare-page {
  padding-top: 8px;
}
.schimbare-fallback-page {
  padding-top: 8px;
  padding-bottom: 36px;
}
.schimbare-fallback-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.4fr);
  gap: 16px;
  align-items: start;
}
.schimbare-fallback-card {
  margin: 0;
  border: 1px solid rgba(13, 148, 136, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 250, 0.45));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.schimbare-fallback-card__title {
  margin-top: 0;
  margin-bottom: 10px;
}
.schimbare-fallback-card__slug {
  margin: 0 0 12px;
}
.schimbare-fallback-card__hint {
  margin: 0 0 14px;
  line-height: 1.5;
}
.schimbare-fallback-card__action {
  margin: 0 0 10px;
}
.schimbare-fallback-card__action:last-child {
  margin-bottom: 0;
}
.schimbare-fallback-card .btn-primary,
.schimbare-fallback-card .btn-secondary {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.schimbare-fallback-models {
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}
.schimbare-fallback-models__title {
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.schimbare-fallback-models__count {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #0f766e;
  background: rgba(13, 148, 136, 0.12);
}
.schimbare-fallback-models__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  max-height: 54vh;
  overflow: auto;
  scrollbar-gutter: stable;
}
.schimbare-fallback-models__list li {
  margin: 0;
  padding: 0;
  border: 0;
}
.schimbare-fallback-models__list a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
}
.schimbare-fallback-models__list a:hover {
  border-color: rgba(13, 148, 136, 0.45);
  color: #0f766e;
  background: #fff;
}
.schimbare-parts-section {
  margin: 0 0 36px;
}
.schimbare-parts-section__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.schimbare-parts-section__lead {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 52rem;
}
.schimbare-parts-section__count {
  margin: 0 0 14px;
  font-size: 13px;
}
.schimbare-parts-section .reparatii-grid {
  margin-top: 0;
}
.piese-filter-panel,
.reparatii-filter-panel {
  margin-bottom: 22px;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 36px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
}
.piese-filter-panel__intro,
.reparatii-filter-panel__intro {
  margin-bottom: 16px;
}
.piese-filter-panel__title,
.reparatii-filter-panel__title {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.piese-filter-panel__sub,
.reparatii-filter-panel__sub {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}
.piese-filters-submit,
.reparatii-filters-submit {
  font-weight: 600;
}

.piese-results-bar,
.reparatii-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.piese-results-bar__count,
.reparatii-results-bar__count {
  margin: 0;
  font-size: 15px;
  color: #334155;
}
.piese-results-bar__count strong,
.reparatii-results-bar__count strong {
  color: #0f172a;
  font-weight: 700;
}
.piese-results-bar__reset,
.reparatii-results-bar__reset {
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.45);
}
.piese-results-bar__reset:hover,
.reparatii-results-bar__reset:hover {
  color: #0f766e;
  border-bottom-color: rgba(15, 118, 110, 0.45);
}

.piese-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.piese-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.72) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.piese-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 40px rgba(13, 148, 136, 0.12);
}
.piese-card__media-wrap,
.reparatii-card__media-wrap {
  position: relative;
}
.piese-card__quality,
.reparatii-card__quality {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  pointer-events: none;
  max-width: calc(100% - 16px);
}
.piese-card__media {
  display: block;
  border-bottom: 1px solid rgba(228, 228, 231, 0.95);
}
.piese-card__media img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  padding: 18px 20px;
  display: block;
}
.piese-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
}
.piese-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.piese-chip,
.reparatii-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
  border: 1px solid transparent;
}
.piese-chip--soft {
  background: rgba(241, 245, 249, 0.95);
  color: #475569;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 12px;
}
.piese-chip--type,
.reparatii-chip--type {
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(241, 245, 249, 0.95);
  color: #334155;
  border-color: rgba(203, 213, 225, 0.9);
  font-weight: 700;
}
.piese-chip--q0,
.piese-chip--q1,
.piese-chip--q2,
.piese-chip--q3,
.piese-chip--q4,
.piese-chip--q5,
.piese-chip--q6,
.reparatii-chip--q0,
.reparatii-chip--q1,
.reparatii-chip--q2,
.reparatii-chip--q3,
.reparatii-chip--q4,
.reparatii-chip--q5,
.reparatii-chip--q6 {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  padding: 3px 7px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}
.part-detail-visual__quality {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  pointer-events: none;
  max-width: calc(100% - 20px);
}
/* Alternative pe fișă: același chip ca în listă piese/reparații */
.schimbare-repair-tile__quality {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  pointer-events: none;
  max-width: calc(100% - 16px);
}
.piese-chip--quality-detail {
  font-size: 12px;
  line-height: 1.3;
  padding: 5px 10px;
  border-radius: 7px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
}
.piese-chip--q0,
.reparatii-chip--q0 {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}
.piese-chip--q1,
.reparatii-chip--q1 {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fdba74;
}
.piese-chip--q2,
.reparatii-chip--q2 {
  background: #ffedd5;
  color: #c2410c;
  border-color: #fb923c;
}
.piese-chip--q3,
.reparatii-chip--q3 {
  background: #fef9c3;
  color: #a16207;
  border-color: #facc15;
}
.piese-chip--q4,
.reparatii-chip--q4 {
  background: #ecfccb;
  color: #4d7c0f;
  border-color: #a3e635;
}
.piese-chip--q5,
.reparatii-chip--q5 {
  background: #d1fae5;
  color: #047857;
  border-color: #6ee7b7;
}
.piese-chip--q6,
.reparatii-chip--q6 {
  background: rgba(13, 148, 136, 0.12);
  color: #0f766e;
  border-color: rgba(13, 148, 136, 0.35);
  font-weight: 700;
}
.piese-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}
.piese-card__title a {
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.piese-card__title a:hover {
  color: #0d9488;
  border-bottom-color: rgba(13, 148, 136, 0.35);
}
.piese-card__part-name {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.piese-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.piese-card__price-block {
  margin-bottom: 10px;
}
.piese-card__price {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}
.piese-card__currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
}
.piese-card__delivery {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
}
.piese-card__stats {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.piese-card__stats li {
  margin: 0;
  padding: 0;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.85);
}
.piese-card__stat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 6px 0;
  font-size: 12px;
  color: #475569;
  text-decoration: none;
}
.piese-card__stat-link:hover {
  color: var(--qg-teal-dark);
}
.piese-card__stat-link:hover b {
  color: var(--qg-teal-dark);
}
.piese-card__stats li span {
  opacity: 0.85;
}
.piese-card__stats li b {
  font-weight: 600;
  color: #0f172a;
}
.piese-card__cta {
  display: block;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.2);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.piese-card__cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.piese-pager {
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——— Catalog reparații / înlocuiri (listă) ——— */
.reparatii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.reparatii-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.65);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.reparatii-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.28);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}
.reparatii-card__media {
  display: block;
  border-bottom: 1px solid rgba(228, 228, 231, 0.95);
}
.reparatii-card__media img {
  width: 100%;
  height: 168px;
  object-fit: contain;
  padding: 18px 20px;
  display: block;
}
.reparatii-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
}
.reparatii-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.reparatii-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
}
.reparatii-card__title a {
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.reparatii-card__title a:hover {
  color: #0d9488;
  border-bottom-color: rgba(13, 148, 136, 0.35);
}
.reparatii-card__part-name {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reparatii-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.reparatii-card__price-block {
  margin-bottom: 10px;
}
.reparatii-card__price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 4px;
}
.reparatii-card__price {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}
.reparatii-card__currency {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
}
.reparatii-card__delivery {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}
.reparatii-card__stats {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.reparatii-card__stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 6px 0;
  font-size: 12px;
  color: #475569;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.85);
}
.reparatii-card__stats li span {
  opacity: 0.85;
}
.reparatii-card__stats li b {
  font-weight: 600;
  color: #0f172a;
}
.reparatii-card__cta {
  display: block;
  text-align: center;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.2);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.reparatii-card__cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.reparatii-pager {
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .piese-filter-panel,
  .reparatii-filter-panel {
    padding: 18px 16px 14px;
  }
  .hero--piese__bullets {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .reparatii-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Pagini piesă / înlocuire (detaliu) ——— */
.hero--part-detail {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
.hero--part-detail--piesa {
  background:
    radial-gradient(ellipse 60% 70% at 10% 0%, rgba(45, 212, 191, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f4f4f5 100%);
}
.hero--part-detail--inlocuire {
  background:
    radial-gradient(ellipse 60% 70% at 90% 0%, rgba(45, 212, 191, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f4f4f5 100%);
}
.hero--part-detail__inner {
  max-width: 720px;
}
.part-detail-breadcrumb {
  font-size: 13px;
  margin-bottom: 14px;
}
.part-detail-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid rgba(100, 116, 139, 0.25);
}
.part-detail-breadcrumb a:hover {
  color: #0f766e;
  border-bottom-color: rgba(15, 118, 110, 0.45);
}
.part-detail-breadcrumb span[aria-hidden="true"] {
  margin: 0 8px;
  opacity: 0.45;
}
.part-detail-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.hero--part-detail--piesa .part-detail-kicker,
.hero--part-detail--inlocuire .part-detail-kicker {
  color: #0f766e;
}
.part-detail-h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.part-detail-lead {
  margin: 0;
  font-size: clamp(15px, 2.5vw, 18px);
  color: #475569;
  line-height: 1.55;
}

.part-detail-page {
  padding-top: 28px;
  padding-bottom: 48px;
}
.part-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 420px);
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}
.part-detail-visual__frame {
  position: relative;
  border-radius: 20px;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.85));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 24px 48px rgba(15, 23, 42, 0.08);
}
.part-detail-visual__frame--piesa {
  border-top: 4px solid #14b8a6;
}
.part-detail-visual__frame--inlocuire {
  border-top: 4px solid #14b8a6;
}
.part-detail-visual__frame img {
  width: 100%;
  height: auto;
  max-height: min(520px, 52vh);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.part-detail-visual__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  outline-offset: 3px;
}
.part-detail-visual__link:focus-visible {
  outline: 2px solid #14b8a6;
}
.part-detail-visual__link:hover img {
  opacity: 0.94;
}
.part-detail-disclaimer {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 36rem;
}
.part-detail-disclaimer__hint {
  display: inline;
  color: #64748b;
}
.part-detail-visual {
  min-width: 0;
  max-width: 100%;
}
.part-detail-visual__alternatives {
  margin-top: 18px;
  max-width: 100%;
}

.part-detail-sidebar {
  position: sticky;
  top: var(--site-sticky-top);
}
.part-detail-pricebox {
  padding: 22px 22px 18px;
  border-radius: 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}
.part-detail-pricebox--piesa {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.72));
  border-color: rgba(45, 212, 191, 0.22);
}
.part-detail-pricebox--inlocuire {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 253, 250, 0.72));
  border-color: rgba(45, 212, 191, 0.22);
}
.part-detail-pricebox__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.part-detail-pricebox__label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.part-detail-pricebox__value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.part-detail-pricebox__cur {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
}
.part-detail-pricebox__meta {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}
.part-detail-pricebox__meta strong {
  color: #0f172a;
  font-weight: 600;
}

.part-detail-spec-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.part-detail-spec-intro {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
}
.part-detail-spec-intro strong {
  color: #0f172a;
  font-weight: 600;
}

.part-detail-dossier {
  margin-top: 32px;
  padding: 24px 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.65);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.part-detail-dossier__title {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.part-detail-dossier__lead {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
}
.part-detail-dossier__grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 0;
}
.part-detail-dossier__row {
  display: grid;
  grid-template-columns: minmax(120px, 34%) 1fr;
  gap: 8px 16px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  align-items: start;
}
.part-detail-dossier__row:nth-child(even) {
  background: rgba(248, 250, 252, 0.65);
}
.part-detail-dossier__row:last-child {
  border-bottom: none;
}
.part-detail-dossier__dt {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.part-detail-dossier__dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
  word-break: break-word;
}
.part-detail-dossier__dd--multiline {
  font-size: 13px;
  color: #334155;
}
.part-detail-dossier__dd a {
  color: #0f766e;
  font-weight: 500;
  word-break: break-all;
}
.part-detail-dossier__dd a:hover {
  color: #0d9488;
}

@media (max-width: 560px) {
  .part-detail-dossier__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.part-spec-grid {
  margin: 0 0 22px;
}
.part-spec-grid__row {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  gap: 10px 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  font-size: 14px;
}
.part-spec-grid__row:last-child {
  border-bottom: none;
}
.part-spec-grid dt {
  margin: 0;
  color: #64748b;
  font-weight: 500;
}
.part-spec-grid dd {
  margin: 0;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.45;
}

.part-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.part-detail-actions__primary {
  text-align: center;
  padding: 13px 16px;
  font-weight: 600;
}
/* „Comandă online”: aceeași paletă teal ca „Vezi detalii” în catalogul piese */
.part-detail-actions__primary.btn-primary {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
  border-color: #0d9488;
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.2);
  transition: filter 0.15s ease, transform 0.15s ease;
}
.part-detail-actions__primary.btn-primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}
.part-detail-actions__secondary {
  text-align: center;
  padding: 12px 16px;
  font-weight: 600;
}
.part-detail-altlink,
.part-detail-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}
.part-detail-altlink a {
  color: #0f766e;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.35);
}
.part-detail-altlink a:hover {
  color: #0d9488;
}

@media (max-width: 960px) {
  .schimbare-fallback-layout {
    grid-template-columns: 1fr;
  }
  .schimbare-fallback-models__list {
    max-height: none;
  }
  .part-detail-layout {
    grid-template-columns: 1fr;
  }
  .part-detail-sidebar {
    position: static;
  }
  .card.plain-card.schimbare-repairs-nav {
    padding: 14px;
  }
  .schimbare-repairs-nav .service-model-repairs-head__title {
    font-size: 1.05rem;
  }
  .schimbare-repairs-nav .service-model-repairs-head__sub {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .piese-filter-panel {
    padding: 18px 16px 14px;
  }
  .hero--piese__bullets {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .part-spec-grid__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .piese-grid {
    grid-template-columns: 1fr;
  }
  .schimbare-repair-tile {
    width: 112px;
  }
  .schimbare-repairs-strip {
    gap: 10px;
    padding-bottom: 10px;
  }
  .card.plain-card.schimbare-repairs-nav:not(.part-detail-visual__alternatives) {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .card.plain-card.schimbare-repairs-nav {
    padding: 12px;
  }
}

/* ——— Liquid glass pe toate suprafețele de pagină ——— */
.faq-accordion__item,
.piese-filter-panel,
.reparatii-filter-panel,
.part-detail-dossier,
.schimbare-fallback-models,
.schimbare-fallback-card,
.model-catalog-nav,
.service-grid article,
.reparatii-card,
.settings-sql-item,
.plain-card.card,
.service-model-notes,
.service-model-tech-narrative__inner,
.service-model-variant-card,
.part-detail-visual,
.service-model-visual {
  background: var(--qg-glass-bg);
  border: 1px solid var(--qg-glass-border);
  box-shadow: var(--qg-glass-shadow);
  backdrop-filter: var(--qg-glass-blur);
  -webkit-backdrop-filter: var(--qg-glass-blur);
}
.faq-accordion__item {
  border-radius: 14px;
}
.faq-accordion__item[open] {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 22px rgba(13, 148, 136, 0.1);
}
.piese-filter-panel,
.reparatii-filter-panel,
.part-detail-dossier {
  border-radius: 18px;
}
.piese-filter-panel__title,
.reparatii-filter-panel__title,
.part-detail-dossier__title,
.schimbare-parts-section__title,
.service-model-repairs-head__title,
.service-model-intro__title {
  font-family: var(--qg-display);
  letter-spacing: -0.03em;
}
.filters input,
.filters select,
.contact-form input,
.contact-form textarea,
.schimbare-fallback-models__list a,
.model-catalog-nav__link,
.pager a {
  background: var(--qg-glass-bg);
  border: 1px solid var(--qg-glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
}
.filters button,
.contact-form button,
.piese-filters-submit,
.reparatii-filters-submit,
.site-search__submit {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #22d3ee 130%);
  border-color: rgba(13, 148, 136, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 6px 16px rgba(13, 148, 136, 0.18);
  font-family: var(--qg-display);
  font-weight: 600;
}
.site-search__panel {
  background: var(--qg-glass-bg);
  border: 1px solid var(--qg-glass-border);
  border-radius: 14px;
  box-shadow: var(--qg-glass-shadow);
  backdrop-filter: var(--qg-glass-blur);
  -webkit-backdrop-filter: var(--qg-glass-blur);
}
.schimbare-repair-tile {
  background: var(--qg-glass-bg);
  border: 1px solid var(--qg-glass-border);
  box-shadow: var(--qg-glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.schimbare-repair-tile:hover,
.reparatii-card:hover,
.service-grid article:hover,
.model-catalog-nav__link:hover,
.schimbare-fallback-models__list a:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 12px 28px rgba(13, 148, 136, 0.1);
}
.reparatii-card:hover {
  transform: translateY(-3px);
}
.pager .active,
.model-catalog-nav__link.is-active {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #22d3ee 130%);
  border-color: rgba(13, 148, 136, 0.55);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.piese-chip,
.reparatii-card__tags .piese-chip,
.service-model-kicker,
.hero--piese__eyebrow {
  font-family: var(--qg-display);
}
.prose,
.schimbare-context,
.status-form,
.garantie-content,
.livrare-content {
  position: relative;
}
.plain-card {
  border-radius: 16px;
}
.piese-card__cta,
.reparatii-card__cta {
  font-family: var(--qg-display);
  font-weight: 600;
  border-radius: 12px;
  background: var(--qg-glass-bg);
  border: 1px solid var(--qg-glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.piese-card__cta:hover,
.reparatii-card__cta:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 253, 250, 0.5) 100%);
}
.part-detail-dossier__row:nth-child(even) {
  background: rgba(255, 255, 255, 0.28);
}
.service-model-price-list__rowlink {
  border-radius: 10px;
  transition: background 0.15s ease;
}
.service-model-price-list__rowlink:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* Recenzii GBP (visible for AggregateRating / Review schema) */
.reviews-section__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--qg-ink-muted, #475569);
}
.reviews-section__score {
  font-family: Outfit, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--qg-ink, #0f172a);
  line-height: 1;
}
.reviews-section__stars {
  color: #d97706;
  letter-spacing: 1px;
  font-size: 1.1rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.review-card {
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}
.review-card__stars {
  margin: 0 0 8px;
  color: #d97706;
  letter-spacing: 1px;
  font-size: 14px;
}
.review-card__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--qg-ink, #0f172a);
}
.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 13px;
  color: var(--qg-ink-muted, #64748b);
}
.review-card__meta cite {
  font-style: normal;
  font-weight: 600;
  color: var(--qg-ink, #0f172a);
}
.review-card__source {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.1);
  color: var(--qg-teal-dark, #0f766e);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.reviews-section__cta {
  margin-top: 14px;
}
