/* =========================================================
   PMM THEME TOKENS
   ========================================================= */
:root {
  --pmm-bg: #f4f6f8;
  --pmm-surface: #ffffff;
  --pmm-surface-2: #f8fafc;
  --pmm-surface-3: #fcfdff;
  --pmm-surface-glass: rgba(255, 255, 255, 0.86);

  --pmm-text: #121417;
  --pmm-text-soft: #667085;
  --pmm-text-muted: #8b95a7;

  --pmm-border: #e9edf2;
  --pmm-border-strong: #d7dee7;
  --pmm-border-accent: rgba(85, 182, 32, 0.22);

  --pmm-dark: #111111;
  --pmm-dark-2: #1a1d22;

  --pmm-accent: #55b620;
  --pmm-accent-2: #6bcc35;
  --pmm-accent-soft: rgba(85, 182, 32, 0.12);
  --pmm-accent-soft-2: rgba(85, 182, 32, 0.18);
  --pmm-accent-ring: rgba(85, 182, 32, 0.10);

  --pmm-warning-soft: rgba(245, 158, 11, 0.10);
  --pmm-danger-soft: rgba(220, 38, 38, 0.10);

  --pmm-shadow-xs: 0 4px 12px rgba(15, 23, 42, 0.04);
  --pmm-shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.06);
  --pmm-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  --pmm-shadow-hover: 0 22px 48px rgba(15, 23, 42, 0.14);
  --pmm-shadow-strong: 0 28px 60px rgba(15, 23, 42, 0.18);

  --pmm-shadow-button: 0 14px 28px rgba(17, 17, 17, 0.14);
  --pmm-shadow-button-hover: 0 20px 34px rgba(17, 17, 17, 0.18);
  --pmm-shadow-green: 0 20px 40px rgba(85, 182, 32, 0.18);

  --pmm-radius-xl: 30px;
  --pmm-radius-lg: 24px;
  --pmm-radius-md: 18px;
  --pmm-radius-sm: 14px;
  --pmm-radius-xs: 10px;

  --pmm-transition-fast: .18s ease;
  --pmm-transition: .25s ease;
  --pmm-transition-soft: .38s cubic-bezier(.22, 1, .36, 1);
}

/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */
body .pmm-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  box-sizing: border-box;
}

body .pmm-empty-state {
  padding: 30px;
  border: 1px dashed var(--pmm-border-strong);
  border-radius: var(--pmm-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(85, 182, 32, 0.06), transparent 35%),
    linear-gradient(180deg, #fff 0%, var(--pmm-surface-3) 100%);
  text-align: center;
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-empty-state h3 {
  margin: 0 0 10px;
  color: var(--pmm-text);
  font-size: 24px;
  line-height: 1.15;
}

body .pmm-empty-state p {
  margin: 0;
  color: var(--pmm-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* =========================================================
   BASE SURFACES / CARDS
   ========================================================= */
body .pmm-hero__banner,
body .pmm-hero__search,
body .pmm-list-card,
body .pmm-brand,
body .pmm-cart-box,
body .pmm-sticky-box,
body .pmm-fitment-block,
body .pmm-same-car-block,
body .pmm-choice-card,
body .pmm-checkout-step,
body .pmm-checkout-summary,
body .pmm-cart-drawer__panel {
  background: var(--pmm-surface);
  border: 1px solid var(--pmm-border);
  border-radius: var(--pmm-radius-lg);
  box-shadow: var(--pmm-shadow);
}

/* =========================================================
   HERO
   ========================================================= */
body .pmm-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, 0.9fr);
  gap: 24px;
  padding: 24px;
  margin: 30px 0 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(85, 182, 32, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.05), transparent 34%),
    linear-gradient(180deg, #eef2f5 0%, #f6f8fa 100%);
  overflow: visible;
}

body .pmm-hero__banner {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.93), rgba(17, 17, 17, 0.78)),
    linear-gradient(160deg, #23272f, #0f1115);
}

body .pmm-hero__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(85, 182, 32, 0.24), transparent 20%),
    radial-gradient(circle at 78% 80%, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

body .pmm-hero__banner::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 30% 30%, rgba(85, 182, 32, 0.16), transparent 18%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08), transparent 22%);
  animation: pmmHeroFloat 14s ease-in-out infinite alternate;
  pointer-events: none;
}

body .pmm-hero__placeholder {
  position: relative;
  z-index: 1;
  min-height: 440px;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: #fff;
}

.pmm-hero-copy {
  max-width: 760px;
}

.pmm-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .94);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.pmm-hero-title {
  margin: 0 0 16px;
  font-size: clamp(36px, 4.5vw, 68px);
  line-height: .96;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-wrap: balance;
}

.pmm-hero-text {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.58;
}

/* =========================================================
   SECTION HEADS / TITLES
   ========================================================= */
body .pmm-section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

body .pmm-section-head h2,
body .pmm-router-title,
body .pmm-single-main h1,
body .pmm-checkout-head h1 {
  margin: 0;
  color: var(--pmm-text);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body .pmm-section-head h2 {
  font-size: clamp(32px, 4vw, 56px);
}

body .pmm-router-title {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 58px);
}

body .pmm-single-main h1 {
  margin: 8px 0 24px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.045em;
}

body .pmm-checkout-head {
  position: relative;
  margin-bottom: 28px;
  padding: 30px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(85, 182, 32, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow);
  overflow: hidden;
}

body .pmm-checkout-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(85, 182, 32, 0.10), transparent 16%),
    radial-gradient(circle at 85% 80%, rgba(17, 17, 17, 0.04), transparent 18%);
  pointer-events: none;
}

body .pmm-checkout-head h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: clamp(34px, 4.8vw, 56px);
}

body .pmm-checkout-head p,
body .pmm-section-head p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--pmm-text-soft);
  font-size: 17px;
  line-height: 1.6;
}

body .pmm-router-grid-section,
body .pmm-other-parts {
  margin: 30px 0 36px;
}

body .pmm-router-grid-section h2,
body .pmm-router-catalog h2,
body .pmm-other-parts h2,
body .pmm-fitment-block h3,
body .pmm-same-car-block h3,
body .pmm-cart-box h2,
body .pmm-checkout-summary h3 {
  margin: 0 0 16px;
  color: var(--pmm-text);
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */
body .pmm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--pmm-text-muted);
  font-size: 14px;
}

body .pmm-breadcrumbs a {
  color: var(--pmm-text-soft);
  text-decoration: none;
  transition: color var(--pmm-transition-fast);
}

body .pmm-breadcrumbs a:hover {
  color: var(--pmm-accent);
}

/* =========================================================
   FORMS
   ========================================================= */
body .pmm-hero__search,
body .pmm-router-search {
  position: relative;
  overflow: visible;
  padding: 24px;
  background: var(--pmm-surface-glass);
  backdrop-filter: blur(14px);
  border-color: rgba(230, 235, 241, .95);
  border-radius: 24px;
}

body .pmm-router-search {
  margin-bottom: 30px;
  padding: 22px;
}

body .pmm-hero__search h3,
body .pmm-router-search h3 {
  margin: 0 0 18px;
  color: var(--pmm-text);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body .pmm-hero__search form,
body #pmm-home-search-form,
body #pmm-router-search-form,
body #pmm-single-search-form,
body #pmm-request-form,
body .pmm-garage-form,
body #pmm-checkout-form,
body .pmm-single-filter-drawer__body form,
body .pmm-premium-filter-box form {
  display: grid;
  gap: 14px;
}

.pmm-field {
  position: relative;
}

.pmm-field.is-disabled {
  opacity: 0.6;
}

body .pmm-hero__search input,
body .pmm-hero__search select,
body .pmm-router-search input,
body .pmm-router-search select,
body #pmm-request-form input,
body #pmm-request-form textarea,
body .pmm-garage-form input,
body .pmm-checkout-form input,
body .pmm-checkout-form select,
body .pmm-checkout-form textarea,
body .pmm-premium-filter-box input[type="text"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--pmm-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--pmm-surface-3) 100%);
  color: var(--pmm-text);
  font-size: 15px;
  transition:
    border-color var(--pmm-transition),
    box-shadow var(--pmm-transition),
    transform var(--pmm-transition),
    background var(--pmm-transition);
}

body .pmm-premium-filter-box input[type="text"] {
  min-height: 54px;
  padding: 0 16px;
  font-size: 14px;
}

body #pmm-request-form textarea,
body .pmm-checkout-form textarea {
  min-height: 130px;
  padding: 16px 18px;
  resize: vertical;
}

body .pmm-hero__search input::placeholder,
body .pmm-router-search input::placeholder,
body #pmm-request-form input::placeholder,
body #pmm-request-form textarea::placeholder,
body .pmm-garage-form input::placeholder,
body .pmm-checkout-form input::placeholder,
body .pmm-checkout-form textarea::placeholder {
  color: #98a2b3;
}

body .pmm-hero__search input:hover,
body .pmm-hero__search select:hover,
body .pmm-router-search input:hover,
body .pmm-router-search select:hover,
body #pmm-request-form input:hover,
body #pmm-request-form textarea:hover,
body .pmm-garage-form input:hover,
body .pmm-checkout-form input:hover,
body .pmm-checkout-form select:hover,
body .pmm-checkout-form textarea:hover,
body .pmm-premium-filter-box input[type="text"]:hover {
  border-color: var(--pmm-border-strong);
}

body .pmm-hero__search input:focus,
body .pmm-hero__search select:focus,
body .pmm-router-search input:focus,
body .pmm-router-search select:focus,
body #pmm-request-form input:focus,
body #pmm-request-form textarea:focus,
body .pmm-garage-form input:focus,
body .pmm-checkout-form input:focus,
body .pmm-checkout-form select:focus,
body .pmm-checkout-form textarea:focus,
body .pmm-premium-filter-box input[type="text"]:focus {
  outline: none;
  border-color: rgba(85, 182, 32, 0.62);
  box-shadow: 0 0 0 4px var(--pmm-accent-ring);
  background: #fff;
  transform: translateY(-1px);
}

.pmm-field input:disabled {
  cursor: not-allowed;
  background: #f5f5f5;
  opacity: 0.6;
}

.pmm-field input:disabled::placeholder {
  color: #a0a6b1;
}

.pmm-field--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-top-color: var(--pmm-accent);
  border-radius: 50%;
  animation: pmmSpin .7s linear infinite;
  pointer-events: none;
}

/* =========================================================
   BUTTONS
   ========================================================= */
body .pmm-btn,
body .pmm-hero__search button,
body .pmm-router-search button,
body #pmm-request-form button,
body .pmm-request-actions button,
body .pmm-checkout-form button,
body .pmm-premium-filter-box__actions button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 18px;
  border: none;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: var(--pmm-shadow-button);
  transform: translateZ(0);
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    opacity var(--pmm-transition-fast),
    letter-spacing var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-btn:hover,
body .pmm-hero__search button:hover,
body .pmm-router-search button:hover,
body #pmm-request-form button:hover,
body .pmm-request-actions button:hover,
body .pmm-checkout-form button:hover,
body .pmm-premium-filter-box__actions button:hover {
  transform: translateY(-2px);
  box-shadow: var(--pmm-shadow-button-hover);
  letter-spacing: .015em;
}

body .pmm-btn:active,
body .pmm-hero__search button:active,
body .pmm-router-search button:active,
body .pmm-checkout-form button:active,
body .pmm-premium-filter-box__actions button:active {
  transform: translateY(0);
}

body .pmm-btn::after,
body .pmm-hero__search button::after,
body .pmm-router-search button::after,
body #pmm-request-form button::after,
body .pmm-checkout-form button::after,
body .pmm-premium-filter-box__actions button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 90px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}

body .pmm-btn:hover::after,
body .pmm-hero__search button:hover::after,
body .pmm-router-search button:hover::after,
body #pmm-request-form button:hover::after,
body .pmm-checkout-form button:hover::after,
body .pmm-premium-filter-box__actions button:hover::after {
  left: 130%;
}

body .pmm-btn--ghost,
body .pmm-btn--ghost:visited,
body .pmm-cart-remove {
  background: #fff;
  color: var(--pmm-text);
  border: 1px solid var(--pmm-border);
  box-shadow: none;
}

body .pmm-btn--ghost:hover,
body .pmm-btn--ghost:focus,
body .pmm-btn--ghost:active,
body .pmm-cart-remove:hover {
  color: var(--pmm-text);
  background: var(--pmm-surface-2);
  border-color: var(--pmm-border-strong);
  box-shadow: none;
  transform: translateY(-1px);
}

body .pmm-btn--ghost::after,
body .pmm-cart-remove::after {
  display: none;
}

body .pmm-reset-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  color: var(--pmm-text-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--pmm-transition-fast);
}

body .pmm-reset-link:hover,
.pmm-quick-filters__reset:hover {
  color: var(--pmm-accent);
}

body .pmm-pick-car-btn:hover {
  color: #fff;
}

#pmm-cart-checkout-btn,
#pmm-cart-checkout-btn:hover,
#pmm-save-car {
  color: black;
}

/* =========================================================
   SUGGEST
   ========================================================= */
.pmm-suggest-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(230,235,241,.95);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  animation: pmmSuggestIn .18s ease;
  transform-origin: top center;
}

.pmm-suggest-item {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--pmm-text);
  font-size: 15px;
  font-weight: 500;
  transition:
    background .16s ease,
    color .16s ease,
    transform .16s ease;
}

.pmm-suggest-item:hover,
.pmm-suggest-item.is-active {
  background: linear-gradient(180deg, #f7fbf3 0%, #eef8e7 100%);
  color: #1d2a12;
  transform: translateX(2px);
}

.pmm-suggest-item small {
  margin-left: auto;
  color: var(--pmm-text-muted);
  font-size: 12px;
  font-weight: 600;
}

.pmm-suggest-empty {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: var(--pmm-text-muted);
  font-size: 14px;
}

/* =========================================================
   BRANDS / CHOICE
   ========================================================= */
body .pmm-brands {
  margin: 2px 0;
  animation: pmmFadeUp .45s ease both;
}

body .pmm-brands__grid,
body .pmm-choice-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

body .pmm-choice-grid--parts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body .pmm-brand,
body .pmm-choice-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--pmm-text);
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-brand::before,
body .pmm-choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(85,182,32,0),
    rgba(85,182,32,.25),
    rgba(255,255,255,0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

body .pmm-brand:hover,
body .pmm-choice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pmm-shadow-hover);
  border-color: var(--pmm-border-accent);
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.08), transparent 34%),
    linear-gradient(180deg, #fff, #fbfdf9);
}

body .pmm-brand:hover::before,
body .pmm-choice-card:hover::before {
  opacity: 1;
}

body .pmm-brand {
  min-height: 40px;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

body .pmm-choice-card {
  min-height: 88px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

body .pmm-choice-card--part {
  min-height: 96px;
  font-size: 16px;
  font-weight: 600;
}

body .pmm-brands__actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

body .pmm-brands-toggle,
body .pmm-choice-toggle {
  min-width: 220px;
  min-height: 54px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(180deg, #111111 0%, #1a1d22 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

body .pmm-brands-toggle:hover,
body .pmm-choice-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0,0,0,.14);
}

body .is-hidden-brand,
body .is-hidden-choice {
  display: none;
}

body .is-hidden-brand.is-brand-visible,
body .is-hidden-choice.is-choice-visible {
  display: flex;
}

/* =========================================================
   CATALOG CARDS
   ========================================================= */
body .pmm-catalog,
body .pmm-router-catalog {
  display: grid;
  gap: 20px;
  width: 100%;
  animation: pmmFadeUp .45s ease both;
}

body .pmm-catalog > * {
  animation: pmmFadeUp .45s ease both;
}

body .pmm-catalog > *:nth-child(1) { animation-delay: .03s; }
body .pmm-catalog > *:nth-child(2) { animation-delay: .06s; }
body .pmm-catalog > *:nth-child(3) { animation-delay: .09s; }
body .pmm-catalog > *:nth-child(4) { animation-delay: .12s; }
body .pmm-catalog > *:nth-child(5) { animation-delay: .15s; }
body .pmm-catalog > *:nth-child(6) { animation-delay: .18s; }

body .pmm-list-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 220px;
  gap: 22px;
  padding: 20px;
  will-change: transform, opacity, box-shadow;
  animation: pmmFadeUpSoft .55s cubic-bezier(.22, 1, .36, 1) both;
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast);
}

body .pmm-list-card:nth-child(2) { animation-delay: .04s; }
body .pmm-list-card:nth-child(3) { animation-delay: .08s; }
body .pmm-list-card:nth-child(4) { animation-delay: .12s; }
body .pmm-list-card:nth-child(5) { animation-delay: .16s; }
body .pmm-list-card:nth-child(6) { animation-delay: .20s; }

body .pmm-list-card:hover {
  transform: translateY(-4px);
}

body .pmm-list-card--rich {
  overflow: hidden;
  border-radius: 26px;
}

body .pmm-list-card--rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 42%,
    rgba(255,255,255,.32) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform .9s ease;
  pointer-events: none;
}

body .pmm-list-card--rich:hover {
  box-shadow: var(--pmm-shadow-hover);
  border-color: rgba(85,182,32,.16);
}

body .pmm-list-card--rich:hover::before {
  transform: translateX(120%);
}

body .pmm-list-card__image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
}

body .pmm-list-card__image img,
body .pmm-no-image {
  width: 100%;
  height: 220px;
  border-radius: 18px;
}

body .pmm-list-card__image img {
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

body .pmm-list-card:hover .pmm-list-card__image img {
  transform: scale(1.045);
}

body .pmm-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2f4f7, #e9edf2);
  color: var(--pmm-text-muted);
  font-size: 16px;
  font-weight: 600;
}

body .pmm-list-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body .pmm-list-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

body .pmm-list-card__content h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body .pmm-list-card__content h3 a {
  font-weight: 700;
  color: var(--pmm-text);
  text-decoration: none;
}

body .pmm-list-card__content h3 a:hover {
  opacity: .82;
}

body .pmm-car-line {
  margin-bottom: 24px;
  color: #2d3643;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
}

body .pmm-muted {
  margin-bottom: 8px;
  color: var(--pmm-text-soft);
  font-size: 15px;
  line-height: 1.55;
}

body .pmm-oem {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--pmm-border);
  color: var(--pmm-text);
  font-size: 15px;
}

body .pmm-card-address {
  margin-top: 10px;
  color: var(--pmm-text-muted);
  font-size: 14px;
}

body .pmm-list-card__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px;
}

body .pmm-price,
body .pmm-single-price {
  color: var(--pmm-text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -0.04em;
}

body .pmm-list-card--rich .pmm-price {
  margin-top: auto;
  text-align: right;
}

/* =========================================================
   CHIPS / STATUSES
   ========================================================= */
body .pmm-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

body .pmm-chip--stock {
  background: var(--pmm-accent-soft);
  color: #3d8d17;
}

body .pmm-chip--preorder {
  background: rgba(17,17,17,.06);
  color: #222;
}

body .pmm-chip--new {
  background: rgba(17,17,17,.08);
  color: #111;
}

body .pmm-chip--fit {
  overflow: hidden;
  background: rgba(85,182,32,.14);
  color: #2f7a10;
}

body .pmm-chip--fit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(85,182,32,.18), transparent 65%);
  opacity: 0;
  animation: pmmFitPulse 2.8s ease-out infinite;
}

body .pmm-chip--empty-car {
  background: rgba(17,17,17,.06);
  color: #556070;
}

body .pmm-chip--not-fit {
  background: rgba(220,38,38,.10);
  color: #b42318;
}

body .pmm-stock {
  display: inline-flex;
  align-self: flex-end;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pmm-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   PAGINATION
   ========================================================= */
body .pmm-pagination {
  margin-top: 30px;
  text-align: center;
}

body .pmm-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin: 0 4px;
  padding: 0 12px;
  border: 1px solid var(--pmm-border);
  border-radius: 14px;
  background: #fff;
  color: var(--pmm-text);
  text-decoration: none;
  font-weight: 700;
  transition:
    background var(--pmm-transition-fast),
    color var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast);
}

body .pmm-pagination .page-numbers:hover,
body .pmm-pagination .page-numbers.current {
  background: linear-gradient(180deg, #111 0%, #1b1e23 100%);
  color: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

body .pmm-single-wrap {
 /*display: grid;*/
  display: flex;
  grid-template-columns: minmax(0,500px) minmax(320px, 1fr);
  gap: 28px;
}

body .pmm-single-gallery-main {
  position: relative;
}

body .pmm-single-gallery-main img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
  transition: transform .45s ease, box-shadow .45s ease;
}

body .pmm-single-gallery-main:hover img {
  transform: scale(1.015);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

body .pmm-single-gallery-wrap .pmm-no-image {
  min-height: 420px;
  border-radius: 20px;
}

body .pmm-single-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 16px;
}

body .pmm-thumb-btn {
  width: 96px;
  height: 96px;
  padding: 0;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

body .pmm-thumb-btn::after {
  display: none !important;
}

body .pmm-thumb-btn:hover,
body .pmm-thumb-btn:focus,
body .pmm-thumb-btn:active {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body .pmm-thumb-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 16px;
  transition: transform .18s ease, opacity .18s ease;
}

body .pmm-thumb-btn:hover img,
body .pmm-thumb-btn:focus img {
  transform: scale(1.04);
  opacity: .96;
}

body .pmm-single-info {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(17,17,17,.03), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--pmm-border);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

body .pmm-single-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(85,182,32,.05), transparent 16%);
  pointer-events: none;
}

body .pmm-single-info > * {
  position: relative;
  z-index: 1;
}

.pmm-single-actions{
    display: flex;
    justify-content: center;
    
     flex-direction: column;

}

.pmm-sticky-purchase-bar .pmm-add-to-cart {
    width: 100%;
}

.pmm-single-actions {
    width: 100%;
}

.pmm-single-actions .pmm-add-to-cart {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

body .pmm-single-meta {
  display: grid;
  margin: 22px 0;
}

body .pmm-single-meta > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,17,17,.06);
  color: var(--pmm-text);
  font-size: 17px;
}



body .pmm-single-meta > div:last-child {
  border-bottom: none;
}

body .pmm-single-description {
  margin-top: 20px;
}

body .pmm-single-description h3 {
  margin: 0 0 10px;
  color: var(--pmm-text);
  font-size: 22px;
  line-height: 1.1;
}

body .pmm-single-description p {
  margin: 0;
  color: var(--pmm-text-soft);
  font-size: 16px;
  line-height: 1.7;
}

body .pmm-single-sidebar .pmm-hero__search {
  position: sticky;
  top: 20px;
}

body .pmm-single-bottom {
  display: grid;
  grid-template-columns: minmax(0px, 800px) minmax(320px, 1fr);
  gap: 30px;
  margin: 34px 0;
}

body .pmm-single-bottom--premium {
  gap: 24px;
}

body .pmm-fitment-block,
body .pmm-same-car-block,
body .pmm-cart-box {
  padding: 24px;
}

body .pmm-fitment-block ul,
body .pmm-same-car-block ul {
  margin: 0;
  padding-left: 22px;
}

body .pmm-fitment-block li,
body .pmm-same-car-block li {
  margin-bottom: 8px;
  line-height: 1.55;
}

body .pmm-single-purchase-card {
  margin: 22px 0 18px;
  padding: 20px;
  border: 1px solid var(--pmm-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-single-price-box {
  margin-bottom: 16px;
}

body .pmm-single-price-main {
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--pmm-text);
}

body .pmm-single-price-sub {
  margin-top: 8px;
  color: var(--pmm-text-soft);
  font-size: 18px;
  font-weight: 700;
}

body .pmm-single-price-note {
  margin-top: 8px;
  color: var(--pmm-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

body .pmm-single-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

body .pmm-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--pmm-border);
  background: #fff;
  color: var(--pmm-text);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

body .pmm-contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--pmm-shadow-xs);
  color: var(--pmm-text);
}

body .pmm-contact-pill__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

body .pmm-contact-pill--call .pmm-contact-pill__icon {
  background: rgba(17,17,17,.08);
}

body .pmm-contact-pill--telegram .pmm-contact-pill__icon {
  background: rgba(0,136,204,.12);
  color: #0088cc;
}

body .pmm-contact-pill--viber .pmm-contact-pill__icon {
  background: rgba(115,96,242,.12);
  color: #7360f2;
}

body .pmm-single-meta-card,
body .pmm-single-description--premium,
body .pmm-info-panel,
body .pmm-fitment-box,
body .pmm-single-benefit-card,
body .pmm-related-link {
  will-change: transform, box-shadow;
}

body .pmm-single-meta-card {
    max-width: 450px;
/*  margin-top: 22px;*/
padding: 22px;
  border: 1px solid var(--pmm-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-single-meta-card__head h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--pmm-text);
}

body .pmm-single-description--premium {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--pmm-border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-single-description--premium h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body .pmm-single-description--premium p {
  font-size: 17px;
  line-height: 1.8;
}

body .pmm-info-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-fitment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body .pmm-fitment-tag {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(85,182,32,.10);
  color: #2f7a10;
  font-size: 14px;
  font-weight: 700;
}

body .pmm-related-links {
  display: grid;
  gap: 10px;
}

body .pmm-related-link {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--pmm-border);
  color: var(--pmm-text);
  font-weight: 700;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

body .pmm-related-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--pmm-shadow-xs);
  border-color: rgba(85,182,32,.22);
  color: var(--pmm-text);
}

body .pmm-fitment-box {
  margin: 18px 0 22px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.06), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-fitment-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

body .pmm-fitment-box__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--pmm-text);
}

body .pmm-fitment-box__car {
  font-size: 13px;
  font-weight: 700;
  color: var(--pmm-text-soft);
}

body .pmm-fitment-box__status {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

body .pmm-fitment-box__status--fit {
  background: rgba(85,182,32,.10);
  border: 1px solid rgba(85,182,32,.18);
  color: #2f7a10;
}

body .pmm-fitment-box__status--not-fit {
  background: rgba(220,38,38,.08);
  border: 1px solid rgba(220,38,38,.16);
  color: #991b1b;
}

body .pmm-fitment-box__status--empty {
  background: rgba(17,17,17,.05);
  border: 1px solid rgba(17,17,17,.08);
  color: #556070;
}

body .pmm-fitment-box__change {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pmm-border);
  border-radius: 12px;
  background: #fff;
  color: var(--pmm-text);
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

body .pmm-fitment-box__change:hover {
  transform: translateY(-1px);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-single-image-open {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

body .pmm-single-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 16px 34px rgba(15,23,42,.16);
  animation: pmmBadgeFloat 2.8s ease-in-out infinite;
}

body .pmm-single-badge--new {
  background: linear-gradient(180deg, #111111 0%, #1d2026 100%);
  color: #fff;
}

body .pmm-single-badge--hit {
  background: linear-gradient(180deg, #6bcc35 0%, #55b620 100%);
  color: #fff;
}

body .pmm-single-badge--sale {
  background: linear-gradient(180deg, #ffb347 0%, #ff8c1a 100%);
  color: #fff;
}

body .pmm-single-benefits {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

body .pmm-single-benefit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--pmm-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body .pmm-single-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pmm-shadow-sm);
  border-color: rgba(85,182,32,.18);
}

body .pmm-single-benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85,182,32,.10);
  font-size: 24px;
}

body .pmm-single-benefit-card__content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pmm-text);
  font-size: 15px;
}

body .pmm-single-benefit-card__content span {
  display: block;
  color: var(--pmm-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

body .pmm-oem-copy-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body .pmm-oem-copy-btn {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--pmm-border);
  border-radius: 10px;
  background: #fff;
  color: var(--pmm-text);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body .pmm-oem-copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--pmm-shadow-xs);
  border-color: rgba(85,182,32,.24);
}

/* =========================================================
   GARAGE
   ========================================================= */
body .pmm-garage-bar {
  top: 14px;
  z-index: 40;
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid rgba(85, 182, 32, 0.10);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(85, 182, 32, 0.10), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(17, 17, 17, 0.04), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f8fafb 55%, #f5f9f1 100%);
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.65);
  overflow: hidden;
  animation: pmmGarageIn .45s cubic-bezier(.22, 1, .36, 1);
}

body .pmm-garage-bar::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 182, 32, 0.14) 0%, transparent 68%);
  pointer-events: none;
  filter: blur(10px);
}

body .pmm-garage-bar::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85,182,32,.22), transparent);
  opacity: .85;
  pointer-events: none;
}

body .pmm-garage-bar__main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label actions"
    "state actions";
  align-items: center;
  column-gap: 18px;
  row-gap: 14px;
}

body .pmm-garage-bar__label {
  grid-area: label;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--pmm-text);
  font-size: 15px;
  line-height: 1.55;
}

body .pmm-garage-bar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #98a2b3;
}

body .pmm-garage-bar__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--pmm-accent-2) 0%, var(--pmm-accent) 100%);
  box-shadow: 0 0 0 6px rgba(85, 182, 32, 0.10);
  animation: pmmGaragePulse 2.8s ease-in-out infinite;
}

body .pmm-garage-bar__label strong {
  margin: 0;
  color: var(--pmm-text);
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: .98;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: none;
  text-wrap: balance;
}

body .pmm-garage-bar__state {
  grid-area: state;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

body .pmm-garage-bar__state .pmm-chip {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

body .pmm-garage-bar__state .pmm-chip--fit {
  background: linear-gradient(180deg, rgba(85,182,32,.16) 0%, rgba(85,182,32,.10) 100%);
  border-color: rgba(85,182,32,.16);
  color: #2f7a10;
}

body .pmm-garage-bar__state .pmm-chip--empty-car {
  background: linear-gradient(180deg, rgba(17,17,17,.05) 0%, rgba(17,17,17,.03) 100%);
  border-color: rgba(17,17,17,.06);
  color: #667085;
}

body .pmm-garage-bar__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

body .pmm-garage-bar__actions .pmm-btn,
body .pmm-garage-bar__actions a.pmm-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    background var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    color var(--pmm-transition-fast);
}

body .pmm-garage-bar__actions .pmm-btn:not(.pmm-btn--ghost),
body .pmm-garage-bar__actions a.pmm-btn:not(.pmm-btn--ghost) {
  background: linear-gradient(180deg, var(--pmm-accent-2) 0%, var(--pmm-accent) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(85, 182, 32, 0.22);
}

body .pmm-garage-bar__actions .pmm-btn:not(.pmm-btn--ghost):hover,
body .pmm-garage-bar__actions a.pmm-btn:not(.pmm-btn--ghost):hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(85, 182, 32, 0.26);
}

body .pmm-garage-bar__actions .pmm-btn--ghost,
body .pmm-garage-bar__actions a.pmm-btn--ghost {
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(8px);
  color: var(--pmm-text);
  border: 1px solid rgba(215, 222, 231, 0.92);
  box-shadow: none;
}

body .pmm-garage-bar__actions .pmm-btn--ghost:hover,
body .pmm-garage-bar__actions a.pmm-btn--ghost:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(85,182,32,.20);
  color: var(--pmm-text);
}

body .pmm-garage-bar__actions .pmm-btn:last-child,
body .pmm-garage-bar__actions button:last-child {
  opacity: .72;
}

body .pmm-pick-car-box {
  margin: 14px 0 20px;
}

body .pmm-selected-car-note {
  margin: 12px 0 10px;
  color: var(--pmm-text);
  font-size: 15px;
  line-height: 1.55;
}

body .pmm-fit-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

body .pmm-fit-note--ok {
  background: rgba(85,182,32,.10);
  color: #2f7a10;
  border: 1px solid rgba(85,182,32,.18);
}

body .pmm-fit-note--warn {
  background: var(--pmm-warning-soft);
  color: #9a6700;
  border: 1px solid rgba(245,158,11,.18);
}

body .pmm-fit-note--neutral {
  background: rgba(17,17,17,.06);
  color: #556070;
  border: 1px solid rgba(17,17,17,.10);
}

.pmm-single-gallery-wrap{
    max-width: 450px;
}


/* =========================================================
   QUICK FILTERS
   ========================================================= */
body .pmm-quick-filters {
  margin: 18px 0 24px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-quick-filters__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

body .pmm-quick-filters__title {
  margin-bottom: 12px;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}

body .pmm-quick-filters__subtitle {
  color: var(--pmm-text-soft);
  font-size: 13px;
  line-height: 1.45;
}

body .pmm-quick-filters__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body .pmm-quick-filters__count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,17,17,.05);
  color: var(--pmm-text);
  font-size: 13px;
  font-weight: 800;
}

body .pmm-quick-filters__reset {
  color: var(--pmm-text-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

body .pmm-quick-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body .pmm-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--pmm-border);
  background: #fff;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    background var(--pmm-transition-fast),
    color var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast);
}

body .pmm-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(85,182,32,.24);
  background: #fcfefb;
  color: var(--pmm-text);
}

body .pmm-filter-chip.is-active {
  background: linear-gradient(180deg, var(--pmm-accent-2) 0%, var(--pmm-accent) 100%);
  color: #fff;
  border-color: var(--pmm-accent);
  box-shadow: 0 16px 32px rgba(85,182,32,.18);
}

/* =========================================================
   MODAL
   ========================================================= */
body.pmm-modal-open,
body.pmm-cart-open {
  overflow: hidden;
}

.pmm-garage-modal[hidden],
.pmm-cart-drawer[hidden] {
  display: none !important;
}

.pmm-garage-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.pmm-garage-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  animation: pmmOverlayIn .22s ease;
}

.pmm-garage-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin: 8vh auto 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--pmm-border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  animation: pmmModalIn .28s cubic-bezier(.22, 1, .36, 1);
}

.pmm-garage-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111;
  font-size: 24px;
  cursor: pointer;
  transition:
    background var(--pmm-transition-fast),
    transform var(--pmm-transition-fast);
}

.pmm-garage-modal__close:hover {
  background: #eceff3;
  transform: rotate(90deg);
}

.pmm-garage-modal__dialog h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.pmm-garage-modal__text {
  margin: 0 0 18px;
  color: var(--pmm-text-soft);
}

/* =========================================================
   CART TRIGGER + TOAST
   ========================================================= */
body .pmm-cart-trigger {
  position: fixed;
  right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  bottom: 70px;
  z-index: 999;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at top, rgba(107,204,53,.30), transparent 45%),
    linear-gradient(180deg, #1f2126 0%, #111111 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast);
}

body .pmm-cart-trigger:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--pmm-shadow-strong);
}

body .pmm-cart-trigger__icon {
  font-size: 24px;
}

body .pmm-cart-trigger__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6bcc35 0%, #55b620 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(85,182,32,.32);
}

body .pmm-cart-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 10020;
  min-width: 240px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at left top, rgba(85,182,32,.22), transparent 45%),
    #111;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

body .pmm-cart-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================================
   CART DRAWER
   ========================================================= */
body .pmm-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

body .pmm-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.40);
  backdrop-filter: blur(4px);
  animation: pmmOverlayIn .22s ease;
}

body .pmm-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  width: min(520px, 100%);
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 26%),
    #fff;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
  border-radius: 0;
  animation: pmmDrawerIn .28s cubic-bezier(.22,1,.36,1);
}

body .pmm-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--pmm-border);
}

body .pmm-cart-drawer__head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

body .pmm-cart-drawer__close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-cart-drawer__close:hover {
  background: #000;
  transform: rotate(90deg);
}

body .pmm-cart-drawer__body {
  overflow-y: auto;
  padding: 18px 22px;
}

body .pmm-cart-drawer__items {
  display: grid;
  gap: 16px;
}

body .pmm-cart-drawer-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--pmm-border);
}

body .pmm-cart-drawer-item__image img,
body .pmm-cart-drawer-item__image .pmm-no-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 16px;
}

body .pmm-cart-drawer-item__title {
  display: block;
  margin-bottom: 8px;
  color: var(--pmm-text);
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

body .pmm-cart-drawer-item__title:hover {
  color: var(--pmm-accent);
}

body .pmm-cart-drawer-item__sku {
  margin-top: 4px;
  margin-bottom: 8px;
  color: var(--pmm-text-soft);
  font-size: 13px;
  line-height: 1.45;
}

body .pmm-cart-drawer-item__meta {
  color: var(--pmm-text-soft);
  font-size: 14px;
}

body .pmm-cart-drawer-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

body .pmm-cart-drawer-item__total {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

body .pmm-cart-drawer-item__remove {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: #1f2328;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--pmm-transition-fast),
    transform var(--pmm-transition-fast);
}

body .pmm-cart-drawer-item__remove:hover {
  background: #000;
  transform: scale(1.06);
}

body .pmm-cart-drawer__footer {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--pmm-border);
  background: #fff;
}

body .pmm-cart-summary {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

body .pmm-cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--pmm-text-soft);
}

body .pmm-cart-summary__row--total {
  color: var(--pmm-text);
  font-size: 22px;
  font-weight: 800;
}

body .pmm-cart-checkout-btn {
  width: 100%;
}

body .pmm-cart-empty {
  padding: 36px 10px;
  text-align: center;
}

body .pmm-cart-empty__title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 800;
}

body .pmm-cart-empty__text {
  color: var(--pmm-text-soft);
  line-height: 1.55;
}

/* =========================================================
   REQUEST / CART BOX
   ========================================================= */
body .pmm-cart-box {
  padding: 28px;
  border-radius: 28px;
}

body .pmm-cart-box__head {
  margin-bottom: 22px;
}

body .pmm-cart-box__head h2 {
  margin: 0 0 10px;
  color: var(--pmm-text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

body .pmm-cart-box__head p {
  margin: 0;
  max-width: 760px;
  color: var(--pmm-text-soft);
  font-size: 16px;
  line-height: 1.6;
}

body .pmm-cart-items,
body .pmm-cart-list {
  margin-bottom: 20px;
}

body .pmm-cart-list {
  display: grid;
  gap: 14px;
}

body .pmm-cart-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 140px;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--pmm-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, var(--pmm-surface-3) 100%);
}

body .pmm-cart-item__img {
  width: 100%;
}

body .pmm-cart-item__img img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

body .pmm-cart-item__content {
  min-width: 0;
}

body .pmm-cart-item__content a {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--pmm-text);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.4;
}

body .pmm-cart-item__content a:hover {
  color: var(--pmm-accent);
}

body .pmm-cart-item__content div {
  color: var(--pmm-text-soft);
  font-size: 14px;
}

body .pmm-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body .pmm-field--full {
  grid-column: 1 / -1;
}

body .pmm-request-actions {
  display: grid;
  gap: 10px;
  align-items: start;
}

body .pmm-request-note {
  color: var(--pmm-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

body .pmm-request-result,
body .pmm-garage-form-result,
body .pmm-checkout-result {
  margin-top: 14px;
}

body .pmm-request-alert {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

body .pmm-request-alert--success {
  background: rgba(85,182,32,.10);
  color: #2f6f12;
  border-color: rgba(85,182,32,.18);
}

body .pmm-request-alert--error {
  background: rgba(220,38,38,.08);
  color: #991b1b;
  border-color: rgba(220,38,38,.16);
}

/* =========================================================
   CHECKOUT
   ========================================================= */
body .pmm-checkout-page {
  padding-top: 24px;
}

body .pmm-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

body .pmm-checkout-main {
  min-width: 0;
}

body .pmm-checkout-form {
  display: grid;
  gap: 18px;
}

body .pmm-checkout-step {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
  transition:
    border-color var(--pmm-transition),
    box-shadow var(--pmm-transition),
    transform var(--pmm-transition);
}

body .pmm-checkout-step:hover {
  border-color: rgba(85,182,32,.10);
}

body .pmm-checkout-step.is-open {
  border-color: rgba(85,182,32,.18);
  box-shadow:
    0 0 0 1px rgba(85,182,32,.08),
    var(--pmm-shadow);
}

body .pmm-checkout-step.is-locked {
  opacity: .72;
  filter: grayscale(.04);
  background: linear-gradient(180deg, #fbfcfd 0%, #f5f7fa 100%);
}

body .pmm-checkout-step.is-locked .pmm-checkout-step__head {
  cursor: not-allowed;
}

body .pmm-checkout-step__head {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: background var(--pmm-transition-fast);
}

body .pmm-checkout-step__head:hover,
body .pmm-checkout-step__head:focus,
body .pmm-checkout-step__head:active {
  background: linear-gradient(90deg, rgba(85, 182, 32, 0.06), transparent 55%) !important;
  box-shadow: none !important;
}

body .pmm-checkout-step__num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #78d93e 0%, #55b620 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex: 0 0 auto;
  box-shadow: 0 10px 22px rgba(85, 182, 32, 0.24);
}

body .pmm-checkout-step.is-open .pmm-checkout-step__num {
  background: linear-gradient(180deg, var(--pmm-accent-2) 0%, var(--pmm-accent) 100%);
  box-shadow: 0 10px 22px rgba(85,182,32,.28);
}

body .pmm-checkout-step.is-locked .pmm-checkout-step__num {
  background: linear-gradient(180deg, #c8d0da 0%, #b9c2cd 100%);
  box-shadow: none;
}

body .pmm-checkout-step__title {
  flex: 1 1 auto;
  font-size: 22px;
  font-weight: 800;
  color: var(--pmm-text);
}

body .pmm-checkout-step__arrow {
  font-size: 18px;
  color: var(--pmm-text-soft);
  transition: transform var(--pmm-transition-fast), color var(--pmm-transition-fast);
}

body .pmm-checkout-step.is-open .pmm-checkout-step__arrow {
  transform: rotate(180deg);
  color: var(--pmm-accent);
}

body .pmm-checkout-step__body {
  display: none;
  padding: 0 24px 24px;
}

body .pmm-checkout-step.is-open .pmm-checkout-step__body {
  display: block;
  animation: pmmFadeUp .24s ease;
}

body .pmm-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 700;
}

body .pmm-checkout-subtitle {
  margin: 6px 0 14px;
  color: var(--pmm-text);
  font-size: 18px;
  font-weight: 800;
}

body .pmm-checkout-delivery,
body .pmm-checkout-payment {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

body .pmm-checkout-delivery__title {
  color: var(--pmm-text);
  font-size: 15px;
  font-weight: 700;
}

body .pmm-delivery-card {
  display: block;
  position: relative;
  cursor: pointer;
}

body .pmm-delivery-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

body .pmm-delivery-card__content {
  display: block;
  padding: 18px;
  border: 1px solid var(--pmm-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, var(--pmm-surface-3) 100%);
  transition:
    border-color var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    transform var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-delivery-card:hover .pmm-delivery-card__content {
  transform: translateY(-2px);
  box-shadow: var(--pmm-shadow-xs);
  border-color: rgba(85,182,32,.16);
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fcfefb 100%);
}

body .pmm-delivery-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
  color: var(--pmm-text);
}

body .pmm-delivery-card__text {
  color: var(--pmm-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

body .pmm-delivery-card input:checked + .pmm-delivery-card__content {
  border-color: rgba(85,182,32,.42);
  box-shadow: 0 0 0 4px rgba(85,182,32,.10);
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fcfefb 100%);
}

body .pmm-phone-field {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
}

body .pmm-phone-prefix {
  min-height: 56px;
  border: 1px solid var(--pmm-border);
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f6f9 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pmm-text);
}

body .pmm-checkout-consents {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

body .pmm-checkout-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--pmm-text-soft);
  font-size: 14px;
  line-height: 1.55;
}

body .pmm-checkout-checkbox input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  border: 1.5px solid var(--pmm-border-strong);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition:
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

body .pmm-checkout-checkbox input:hover {
  border-color: rgba(85, 182, 32, 0.45);
  box-shadow: 0 0 0 4px rgba(85, 182, 32, 0.08);
}

body .pmm-checkout-checkbox input:checked {
  background: linear-gradient(180deg, var(--pmm-accent-2) 0%, var(--pmm-accent) 100%);
  border-color: var(--pmm-accent);
  box-shadow: 0 8px 18px rgba(85, 182, 32, 0.20);
}

body .pmm-checkout-checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

body .pmm-checkout-checkbox span {
  display: block;
  padding-top: 1px;
}

body .pmm-checkout-step__actions {
  margin-top: 20px;
}

body .pmm-checkout-sidebar {
  position: sticky;
  top: 20px;
}

body .pmm-checkout-summary {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.08), transparent 28%),
    #fff;
}

body .pmm-checkout-summary__items {
  display: grid;
  gap: 14px;
}

body .pmm-checkout-summary__empty {
  color: var(--pmm-text-soft);
  font-size: 15px;
}

body .pmm-checkout-product {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pmm-border);
}

body .pmm-checkout-product:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

body .pmm-checkout-product__image img,
body .pmm-checkout-product__image .pmm-no-image {
  width: 100%;
  height: 72px;
  border-radius: 12px;
}

body .pmm-checkout-product__image img {
  object-fit: cover;
  display: block;
}

body .pmm-checkout-product__title {
  font-weight: 700;
  color: var(--pmm-text);
  line-height: 1.35;
  margin-bottom: 4px;
}

body .pmm-checkout-product__sku {
  font-size: 13px;
  color: var(--pmm-text-muted);
  margin-bottom: 4px;
}

body .pmm-checkout-product__price {
  font-size: 14px;
  color: var(--pmm-text-soft);
}

body .pmm-checkout-summary__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--pmm-border);
  display: grid;
  gap: 10px;
}

body .pmm-checkout-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--pmm-text-soft);
  font-size: 15px;
}

body .pmm-checkout-summary__row strong {
  color: var(--pmm-text);
}

body .pmm-checkout-summary__row--total {
  font-size: 18px;
  font-weight: 800;
}

body .pmm-checkout-summary__row--total strong {
  font-size: 22px;
}

body #pmm-checkout-submit[disabled] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   PROGRESS
   ========================================================= */
body .pmm-progress-bar {
  width: 100%;
  height: 18px;
  margin: 18px 0;
  overflow: hidden;
  background: #ececec;
  border-radius: 999px;
}

body .pmm-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pmm-accent) 0%, var(--pmm-accent-2) 100%);
}

/* =========================================================
   PREMIUM CATALOG HERO
   ========================================================= */
body .pmm-premium-hero,
body .pmm-premium-panel,
body .pmm-premium-filter-box,
body .pmm-premium-catalog-layout,
body .pmm-premium-catalog-main,
body .pmm-premium-catalog-sidebar {
  box-sizing: border-box;
}

body .pmm-premium-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin: 0 0 26px;
  padding: 24px 26px;
  width: 100%;
  border: 1px solid var(--pmm-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(17,17,17,.04), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--pmm-shadow-sm);
}

body .pmm-premium-hero__content {
  min-width: 0;
}

body .pmm-premium-hero__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(85,182,32,.10);
  color: #3d8d17;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body .pmm-premium-hero__title {
  margin: 0 0 12px;
  color: var(--pmm-text);
  font-size: clamp(38px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -0.05em;
}

body .pmm-premium-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body .pmm-premium-hero__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.05);
  color: var(--pmm-text-soft);
  font-size: 13px;
  font-weight: 700;
}

body .pmm-premium-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body .pmm-premium-hero__actions .pmm-btn,
body .pmm-premium-hero__actions a.pmm-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  white-space: nowrap;
}

/* =========================================================
   PREMIUM CATALOG LAYOUT
   ========================================================= */
body .pmm-premium-catalog-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: 100%;
}

body .pmm-premium-catalog-sidebar {
  position: sticky;
   top: 40px;
  width: 100%;
  min-width: 0;
}

body .pmm-premium-catalog-main {
  min-width: 0;
  display: grid;
  gap: 22px;
  width: 100%;
}

/* =========================================================
   PREMIUM FILTER SIDEBAR
   ========================================================= */
body .pmm-premium-filter-box {
  width: 100%;
  padding: 22px;
  border: 1px solid var(--pmm-border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-sm);
}

body .pmm-premium-filter-box__head {
  margin-bottom: 18px;
}

body .pmm-premium-filter-box__head h3 {
  margin: 0 0 8px;
  color: var(--pmm-text);
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body .pmm-premium-filter-box__head p {
  margin: 0;
  color: var(--pmm-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

body .pmm-premium-filter-box__group {
  display: grid;
  gap: 8px;
}

body .pmm-premium-filter-box__label {
  color: var(--pmm-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}

body .pmm-premium-filter-box__actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

body .pmm-premium-filter-box__actions button {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
}

body .pmm-premium-filter-box__actions .pmm-reset-link {
  justify-content: center;
}

/* =========================================================
   PREMIUM PANELS
   ========================================================= */
body .pmm-premium-panel {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--pmm-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-premium-panel--catalog {
  padding: 22px;
}

body .pmm-premium-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

body .pmm-premium-panel__head h2 {
  margin: 0;
  color: var(--pmm-text);
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

body .pmm-premium-panel__meta {
  color: var(--pmm-text-soft);
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   COMPACT CATEGORY GRID
   ========================================================= */
body .pmm-premium-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

body .pmm-premium-chip-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--pmm-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
  box-shadow: var(--pmm-shadow-xs);
  text-decoration: none;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition:
    transform var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-premium-chip-card:hover {
  transform: translateY(-2px);
  border-color: rgba(85,182,32,.18);
  box-shadow: var(--pmm-shadow-sm);
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fcfefb 100%);
}

/* =========================================================
   PREMIUM CATALOG CARDS
   ========================================================= */
body .pmm-premium-panel--catalog .pmm-catalog {
  gap: 16px;
}

body .pmm-premium-panel--catalog .pmm-list-card {
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
}

body .pmm-premium-panel--catalog .pmm-list-card__image img,
body .pmm-premium-panel--catalog .pmm-no-image {
  height: 180px;
  border-radius: 16px;
}

body .pmm-premium-panel--catalog .pmm-list-card__topline {
  gap: 8px;
  margin-bottom: 10px;
}

body .pmm-premium-panel--catalog .pmm-chip {
  min-height: 28px;
  padding: 0 10px;
  font-size: 12px;
}

body .pmm-premium-panel--catalog .pmm-list-card__content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

body .pmm-premium-panel--catalog .pmm-car-line {
  margin-bottom: 8px;
  font-size: 16px;
}

body .pmm-premium-panel--catalog .pmm-muted {
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.45;
}

body .pmm-premium-panel--catalog .pmm-oem {
  margin-top: 12px;
  padding-top: 10px;
  font-size: 13px;
}

body .pmm-premium-panel--catalog .pmm-card-address {
  margin-top: 8px;
  font-size: 12px;
}

body .pmm-premium-panel--catalog .pmm-price {
  font-size: 30px;
  text-align: right;
}

body .pmm-premium-panel--catalog .pmm-list-card__side {
  gap: 10px;
}

body .pmm-premium-panel--catalog .pmm-list-card__side .pmm-btn,
body .pmm-premium-panel--catalog .pmm-list-card__side a.pmm-btn {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 13px;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
body .pmm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
}

body .pmm-lightbox[hidden] {
  display: none !important;
}

body .pmm-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, 0.76);
  backdrop-filter: blur(8px);
  animation: pmmOverlayIn .22s ease;
}

body .pmm-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 40px));
  margin: 4vh auto 0;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  animation: pmmModalIn .26s cubic-bezier(.22, 1, .36, 1);
}

body .pmm-lightbox__dialog img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 20px;
}

body .pmm-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

body .pmm-lightbox__close:hover {
  background: #000;
  transform: rotate(90deg);
}

/* =========================================================
   STICKY PURCHASE BAR
   ========================================================= */
body .pmm-sticky-purchase-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 10030;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(230,235,241,.95);
  box-shadow: 0 22px 50px rgba(15,23,42,.18);
}

body .pmm-sticky-purchase-bar__price {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body .pmm-sticky-purchase-bar__price strong {
  color: var(--pmm-text);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

body .pmm-sticky-purchase-bar__price span {
  margin-top: 4px;
  color: var(--pmm-text-soft);
  font-size: 13px;
  font-weight: 700;
}

body .pmm-sticky-purchase-bar .pmm-btn {
  min-height: 52px;
  min-width: 180px;
}

/* =========================================================
   SINGLE FILTER DRAWER
   ========================================================= */

body .pmm-single-filter-drawer[hidden] {
  display: none !important;
}

body .pmm-single-filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 10040;
}

body .pmm-single-filter-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(4px);
  animation: pmmOverlayIn .22s ease;
}

body .pmm-single-filter-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-left: 1px solid var(--pmm-border);
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.18);
  display: grid;
  grid-template-rows: auto 1fr;
  animation: pmmDrawerIn .26s cubic-bezier(.22,1,.36,1);
}

body .pmm-single-filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--pmm-border);
}

body .pmm-single-filter-drawer__head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body .pmm-single-filter-drawer__close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

body .pmm-single-filter-drawer__close:hover {
  background: #000;
  transform: rotate(90deg);
}

body .pmm-single-filter-drawer__body {
  overflow-y: auto;
  padding: 22px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes pmmFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pmmFadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pmmSuggestIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pmmSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pmmHeroFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(20px, -16px, 0) scale(1.06);
  }
}

@keyframes pmmFitPulse {
  0% {
    opacity: 0;
    transform: scale(.85);
  }
  35% {
    opacity: .55;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@keyframes pmmModalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pmmOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pmmDrawerIn {
  from {
    transform: translateX(36px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pmmGarageIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pmmGaragePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(85, 182, 32, 0.10);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(85, 182, 32, 0.06);
  }
}

@keyframes pmmBadgeFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1280px) {
  body .pmm-premium-catalog-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
  }

  body .pmm-premium-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body .pmm-premium-panel--catalog .pmm-list-card {
    grid-template-columns: 210px minmax(0, 1fr) 170px;
  }
}

@media (max-width: 1200px) {
  body .pmm-hero,
  body .pmm-single-top,
  body .pmm-single-bottom,
  body .pmm-single-wrap,
  body .pmm-list-card {
    grid-template-columns: 1fr;
  }
  body .pmm-single-wrap{
      display:grid;
  }
  
  .pmm-single-gallery-wrap{
      max-width:1000px;
  }
  

  body .pmm-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body .pmm-choice-grid--parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body .pmm-list-card__side {
    align-items: stretch;
  }

  body .pmm-list-card--rich .pmm-price {
    text-align: left;
  }

  body .pmm-checkout-layout,
  body .pmm-premium-catalog-layout,
  body .pmm-single-wrap,
  body .pmm-single-top {
    grid-template-columns: 1fr;
  }

  body .pmm-checkout-sidebar,
  body .pmm-premium-catalog-sidebar {
    position: static;
  }
}

@media (max-width: 1100px) {
  body .pmm-premium-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  body .pmm-garage-bar__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "state"
      "actions";
    align-items: stretch;
  }

  body .pmm-garage-bar__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  body .pmm-container {
    padding: 18px 14px 32px;
  }

  body .pmm-hero {
    padding: 14px;
    border-radius: 24px;
  }

  body .pmm-hero__banner,
  body .pmm-hero__search,
  body .pmm-list-card,
  body .pmm-router-search,
  body .pmm-checkout-step,
  body .pmm-checkout-summary {
    border-radius: 18px;
  }

  body .pmm-hero__search,
  body .pmm-router-search {
    padding: 18px;
  }

  body .pmm-hero__search h3,
  body .pmm-router-search h3 {
    font-size: 21px;
  }

  body .pmm-hero__search input,
  body .pmm-hero__search select,
  body .pmm-router-search input,
  body .pmm-router-search select,
  body .pmm-btn,
  body .pmm-hero__search button,
  body .pmm-router-search button,
  body .pmm-checkout-form input,
  body .pmm-checkout-form select,
  body .pmm-checkout-form button {
    min-height: 52px;
    border-radius: 14px;
  }

  body .pmm-brands__grid,
  body .pmm-choice-grid,
  body .pmm-choice-grid--parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body .pmm-choice-card {
    min-height: 80px;
    padding: 16px;
    border-radius: 18px;
    font-size: 16px;
  }

  body .pmm-single-main h1 {
    font-size: 36px;
  }

  body .pmm-single-meta > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body .pmm-single-actions,
  body .pmm-request-grid,
  body .pmm-cart-item,
  body .pmm-premium-panel--catalog .pmm-list-card {
    grid-template-columns: 1fr;
  }

  body .pmm-cart-box {
    padding: 20px;
    border-radius: 22px;
  }

  body .pmm-checkout-step__head {
    padding: 18px;
  }

  body .pmm-checkout-step__body {
    padding: 0 18px 18px;
  }

  body .pmm-checkout-step__title {
    font-size: 18px;
  }

  body .pmm-premium-chip-grid {
    grid-template-columns: 1fr;
  }

  body .pmm-premium-panel--catalog .pmm-price {
    text-align: left;
  }

  body .pmm-premium-panel--catalog .pmm-list-card__side {
    align-items: stretch;
  }

  body .pmm-sticky-purchase-bar {
    display: flex;
  }

  body .pmm-single-actions {
    padding-bottom: 80px;
  }
}

@media (max-width: 700px) {
  body .pmm-garage-bar {
    padding: 16px;
    border-radius: 20px;
  }

  body .pmm-garage-bar__label strong {
    font-size: 18px;
    line-height: 1.08;
  }

  body .pmm-garage-bar__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  body .pmm-garage-bar__actions .pmm-btn,
  body .pmm-garage-bar__actions a.pmm-btn,
  body .pmm-garage-bar__actions .pmm-btn:last-child,
  body .pmm-garage-bar__actions button:last-child {
    width: 100%;
    opacity: 1;
  }

  body .pmm-phone-field {
    grid-template-columns: 68px 1fr;
  }

  body .pmm-premium-hero {
    padding: 18px;
    border-radius: 22px;
  }

  body .pmm-premium-hero__title {
    font-size: 36px;
  }

  body .pmm-premium-filter-box,
  body .pmm-premium-panel,
  body .pmm-premium-panel--catalog,
  body .pmm-single-purchase-card,
  body .pmm-single-meta-card,
  body .pmm-single-description--premium,
  body .pmm-info-panel {
    padding: 16px 18px;
    border-radius: 18px;
  }

  body .pmm-premium-filter-box__head h3,
  body .pmm-premium-panel__head h2 {
    font-size: 24px;
  }

  body .pmm-single-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body .pmm-contact-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body .pmm-brands__grid,
  body .pmm-choice-grid,
  body .pmm-choice-grid--parts {
    grid-template-columns: 1fr;
  }

  body .pmm-list-card {
    padding: 16px;
    gap: 16px;
  }

  body .pmm-list-card__image img,
  body .pmm-no-image {
    height: 200px;
  }

  body .pmm-list-card__content h3 {
    font-size: 24px;
  }

  body .pmm-car-line {
    font-size: 17px;
  }

  body .pmm-hero__placeholder {
    min-height: 280px;
    padding: 22px;
  }

  body .pmm-cart-drawer__panel {
    width: 100%;
  }

  body .pmm-cart-drawer-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  body .pmm-cart-drawer-item__side {
    grid-column: 2;
    align-items: flex-start;
  }

  body .pmm-single-benefit-card {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }

  body .pmm-single-benefit-card__icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
    border-radius: 14px;
  }

  body .pmm-sticky-purchase-bar {
    flex-direction: column;
    align-items: stretch;
  }

  body .pmm-sticky-purchase-bar .pmm-btn {
    min-width: 100%;
  }
}





/*other*/

/* =========================================================
   SINGLE FILTER TRIGGER
   ========================================================= */
body .pmm-single-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 0 20px;
}

body .pmm-single-filter-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--pmm-border);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  color: var(--pmm-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  box-shadow: var(--pmm-shadow-xs);
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast),
    background var(--pmm-transition-fast);
}

body .pmm-single-filter-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(85,182,32,.22);
  background: #fff;
  box-shadow: var(--pmm-shadow-sm);
}

body .pmm-single-filter-trigger__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(85,182,32,.10);
  color: #3d8d17;
  flex: 0 0 auto;
}

body .pmm-single-filter-trigger__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

body .pmm-single-filter-trigger__text {
  line-height: 1;
  color: black;
}

body .pmm-single-filter-trigger__text:hover {
  color: black !important;
  line-height: 1;
}

@media (max-width: 700px) {
  body .pmm-single-toolbar {
    justify-content: stretch;
    margin: 8px 0 16px;
  }

  body .pmm-single-filter-trigger {
    width: 100%;
    justify-content: center;
  }
}

.pmm-single-bloks{
  display: flex;
  gap: 20px;

}

.pmm-price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.pmm-price-rub {
  color: var(--pmm-text-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.pmm-premium-panel--catalog .pmm-price-box {
  align-items: flex-end;
}

@media (max-width: 1200px) {
  .pmm-price-box,
  .pmm-premium-panel--catalog .pmm-price-box {
    align-items: flex-start;
  }
}




/* garage */

/* =========================================================
   MY GARAGE — PREMIUM ACTIVE STATE
   ======================================================= */

.pmm-garage-bar {
    position: relative;
    overflow: hidden;
    margin: 0 0 28px;
    padding: 22px 28px;
    border-radius: 30px;
    border: 1px solid rgba(151, 181, 132, 0.25);
    background:
        radial-gradient(circle at 0% 50%, rgba(125, 210, 74, 0.10) 0%, rgba(125, 210, 74, 0.00) 20%),
        radial-gradient(circle at 100% 50%, rgba(125, 210, 74, 0.10) 0%, rgba(125, 210, 74, 0.00) 20%),
        linear-gradient(90deg, #f5f8f1 0%, #eef2eb 18%, #f8faf7 50%, #eef2eb 82%, #f5f8f1 100%);
    box-shadow:
        0 10px 30px rgba(54, 72, 41, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.pmm-garage-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 50%, rgba(112, 213, 43, 0.07), transparent 20%),
        radial-gradient(circle at 82% 50%, rgba(112, 213, 43, 0.07), transparent 20%);
    pointer-events: none;
    animation: pmmGarageGlowMove 4.5s ease-in-out infinite;
}

.pmm-garage-bar__main {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.pmm-garage-bar__label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 260px;
    flex: 1 1 320px;
}

.pmm-garage-bar__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8f98b1;
}

.pmm-garage-bar__eyebrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #6fd22b;
    box-shadow:
        0 0 0 6px rgba(111, 210, 43, 0.10),
        0 0 16px rgba(111, 210, 43, 0.35);
    animation: pmmGaragePulseDot 1.8s ease-in-out infinite;
    flex: 0 0 auto;
}

.pmm-garage-bar__label strong {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #11161f;
}

.pmm-garage-bar__state {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.pmm-garage-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 420px;
    flex-wrap: wrap;
}

/* =========================================================
   ACTIVE CHIP
   ======================================================= */

.pmm-garage-bar .pmm-chip--fit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(132, 192, 100, 0.35);
    background: linear-gradient(180deg, #dff0d2 0%, #cfe6be 100%);
    color: #2d7b18;
    font-size: 15px;
    font-weight: 800;
    box-shadow:
        0 6px 20px rgba(92, 170, 49, 0.12),
        inset 0 1px 0 rgba(255,255,255,0.7);
    animation: pmmGaragePulseChip 2.4s ease-in-out infinite;
}

.pmm-garage-bar .pmm-chip--empty-car {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid #dde3ec;
    background: #f4f6fa;
    color: #6b778c;
    font-size: 15px;
    font-weight: 700;
}

/* =========================================================
   BUTTONS
   ======================================================= */

.pmm-garage-bar .pmm-btn {
    min-height: 56px;
    padding: 0 26px;
    border-radius: 18px;
    border: 1px solid #d5dbe4;
    background: #f8f9fb;
    color: #171b23;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.pmm-garage-bar .pmm-btn:hover {
    transform: translateY(-1px);
    border-color: #c9d2de;
    box-shadow: 0 8px 18px rgba(27, 35, 47, 0.08);
}

.pmm-garage-bar .pmm-btn:not(.pmm-btn--ghost) {
    border-color: #6cc631;
    background: linear-gradient(180deg, #72cf37 0%, #63c128 100%);
    color: #fff;
    box-shadow:
        0 14px 26px rgba(102, 193, 40, 0.22),
        0 0 0 1px rgba(255,255,255,0.08) inset;
}

.pmm-garage-bar .pmm-btn:not(.pmm-btn--ghost):hover {
    box-shadow:
        0 16px 30px rgba(102, 193, 40, 0.28),
        0 0 0 1px rgba(255,255,255,0.08) inset;
}

.pmm-garage-bar .pmm-btn--ghost {
    background: #f3f5f8;
    color: #181d25;
}

/* =========================================================
   WHEN ACTIVE CAR EXISTS — extra premium look
   ======================================================= */

.pmm-garage-bar:has(.pmm-chip--fit) {
    border-color: rgba(142, 192, 112, 0.32);
    box-shadow:
        0 18px 40px rgba(56, 78, 38, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.70);
}

.pmm-garage-bar:has(.pmm-chip--fit) .pmm-garage-bar__label strong {
    text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

/* =========================================================
   ANIMATIONS
   ======================================================= */

@keyframes pmmGaragePulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 6px rgba(111, 210, 43, 0.10),
            0 0 16px rgba(111, 210, 43, 0.35);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        box-shadow:
            0 0 0 10px rgba(111, 210, 43, 0.07),
            0 0 22px rgba(111, 210, 43, 0.48);
        opacity: 0.92;
    }
}

@keyframes pmmGaragePulseChip {
    0%, 100% {
        box-shadow:
            0 6px 20px rgba(92, 170, 49, 0.12),
            inset 0 1px 0 rgba(255,255,255,0.7);
    }
    50% {
        box-shadow:
            0 10px 28px rgba(92, 170, 49, 0.20),
            0 0 0 6px rgba(111, 210, 43, 0.06),
            inset 0 1px 0 rgba(255,255,255,0.7);
    }
}

@keyframes pmmGarageGlowMove {
    0%, 100% {
        opacity: 0.65;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(4px);
    }
}

/* =========================================================
   MOBILE
   ======================================================= */

@media (max-width: 900px) {
    .pmm-garage-bar {
        padding: 20px;
        border-radius: 24px;
    }

    .pmm-garage-bar__main {
        flex-direction: column;
        align-items: flex-start;
    }

    .pmm-garage-bar__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .pmm-garage-bar__actions .pmm-btn {
        width: 100%;
    }

    .pmm-garage-bar__label strong {
        font-size: 34px;
    }
}



.pmm-garage-bar__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    flex-wrap: wrap;
}

.pmm-garage-bar__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
    flex: 1 1 420px;
}

.pmm-garage-bar__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #10141c;
}

.pmm-garage-bar__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pmm-garage-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 520px;
    flex-wrap: wrap;
}

.pmm-garage-bar .pmm-btn--primary {
    border-color: #6cc631;
    background: linear-gradient(180deg, #75d13b 0%, #63c128 100%);
    color: #fff;
    box-shadow:
        0 14px 30px rgba(105, 195, 47, 0.22),
        0 0 0 1px rgba(255,255,255,0.10) inset;
}

.pmm-garage-bar .pmm-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 16px 34px rgba(105, 195, 47, 0.28),
        0 0 0 1px rgba(255,255,255,0.10) inset;
}

@media (max-width: 900px) {
    .pmm-garage-bar__hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .pmm-garage-bar__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .pmm-garage-bar__actions .pmm-btn {
        width: 100%;
    }
}


.pmm-garage-bar--page {
    margin: 0 0 28px;
}

.pmm-garage-bar__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
    flex-wrap: wrap;
}

.pmm-garage-bar__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 280px;
    flex: 1 1 420px;
}

.pmm-garage-bar__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #97a0b8;
}

.pmm-garage-bar__eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #75d13b;
    box-shadow: 0 0 0 6px rgba(117, 209, 59, 0.12);
    animation: pmmGaragePulse 2s ease-in-out infinite;
}

.pmm-garage-bar__title {
    margin: 0;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #0d1320;
}

.pmm-garage-bar__badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pmm-garage-bar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1 1 560px;
    flex-wrap: wrap;
}

.pmm-garage-bar {
    position: relative;
    overflow: hidden;
    margin: 18px 0 26px;
    padding: 28px 28px;
    border-radius: 30px;
    border: 1px solid rgba(143, 199, 99, 0.35);
    background:
        radial-gradient(circle at 12% 18%, rgba(123, 212, 66, 0.16), transparent 26%),
        radial-gradient(circle at 84% 76%, rgba(123, 212, 66, 0.12), transparent 24%),
        linear-gradient(135deg, #f4f8ef 0%, #f7f8f7 48%, #eef5e8 100%);
    box-shadow:
        0 20px 50px rgba(74, 104, 44, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.pmm-garage-bar::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(120, 214, 66, 0.18) 0%, rgba(120, 214, 66, 0) 72%);
    filter: blur(10px);
    pointer-events: none;
}

.pmm-garage-bar::after {
    content: "";
    position: absolute;
    inset: auto -6% -80px auto;
    width: 360px;
    height: 220px;
    background: radial-gradient(circle, rgba(120, 214, 66, 0.12) 0%, rgba(120, 214, 66, 0) 74%);
    filter: blur(14px);
    pointer-events: none;
}

.pmm-garage-bar .pmm-chip--fit {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid rgba(130, 187, 84, 0.35);
    background: linear-gradient(180deg, #d7e9c8 0%, #c6dfb3 100%);
    color: #2f7d1f;
    font-size: 17px;
    font-weight: 800;
    box-shadow:
        0 10px 24px rgba(120, 190, 72, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.75);
}

.pmm-garage-bar .pmm-btn {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 800;
}

.pmm-garage-bar .pmm-btn--ghost {
    border: 1px solid #d7dce6;
    background: rgba(255,255,255,0.72);
    color: #161b25;
    box-shadow: none;
}

.pmm-garage-bar .pmm-btn--ghost:hover {
    background: #ffffff;
    border-color: #c9d1dc;
    transform: translateY(-1px);
}

.pmm-garage-bar .pmm-btn--primary {
    border: 1px solid #6dc732;
    background: linear-gradient(180deg, #75d13b 0%, #61bf24 100%);
    color: #fff;
    box-shadow:
        0 18px 34px rgba(108, 198, 49, 0.24),
        0 0 0 1px rgba(255,255,255,0.12) inset;
}

.pmm-garage-bar .pmm-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 20px 38px rgba(108, 198, 49, 0.30),
        0 0 0 1px rgba(255,255,255,0.12) inset;
}

@keyframes pmmGaragePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(117, 209, 59, 0.28);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(117, 209, 59, 0.08);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(117, 209, 59, 0);
    }
}

@media (max-width: 980px) {
    .pmm-garage-bar__hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .pmm-garage-bar__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .pmm-garage-bar__actions .pmm-btn {
        width: 100%;
    }

    .pmm-garage-bar__title {
        font-size: 42px;
    }
}



/* =========================================================
   CATALOG CARD SKELETON
   ========================================================= */

body .pmm-catalog-shell {
  position: relative;
  min-height: 320px;
}

body .pmm-catalog-loading {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: none;
  padding: 0;
  border-radius: 28px;
  background: rgba(244, 246, 248, 0.78);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

body.pmm-page-loading .pmm-catalog-loading {
  display: block;
  animation: pmmFadeUp .18s ease;
}

body.pmm-page-loading .pmm-catalog {
  opacity: .18;
  transition: opacity .18s ease;
}

body .pmm-catalog-loading__inner {
  display: grid;
  gap: 20px;
}

body .pmm-list-card--skeleton {
  pointer-events: none;
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-list-card--skeleton:hover {
  transform: none;
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-list-card--skeleton::before {
  display: none;
}

body .pmm-list-card--skeleton .pmm-list-card__image {
  overflow: hidden;
  border-radius: 18px;
}

body .pmm-skeleton-block,
body .pmm-skeleton-line,
body .pmm-skeleton-btn,
body .pmm-chip--skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f6 0%, #e8edf3 100%);
}

body .pmm-skeleton-block::after,
body .pmm-skeleton-line::after,
body .pmm-skeleton-btn::after,
body .pmm-chip--skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.75) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: pmmSkeletonShimmer 1.15s ease-in-out infinite;
}

body .pmm-skeleton-block--image {
  width: 100%;
  height: 220px;
  border-radius: 18px;
}

body .pmm-list-card--skeleton .pmm-list-card__topline {
  margin-bottom: 14px;
}

body .pmm-chip--skeleton {
  min-height: 32px;
  width: 150px;
  border-radius: 999px;
  border: none;
}

body .pmm-skeleton-line {
  display: block;
  border-radius: 999px;
}

body .pmm-skeleton-line--title {
  width: 82%;
  height: 30px;
  border-radius: 12px;
}

body .pmm-skeleton-line--car {
  width: 72%;
  height: 28px;
  border-radius: 12px;
}

body .pmm-skeleton-line--meta {
  width: 54%;
  height: 16px;
}

body .pmm-skeleton-line--meta-short {
  width: 42%;
  height: 16px;
}

body .pmm-skeleton-line--oem {
  width: 48%;
  height: 16px;
}

body .pmm-skeleton-line--address {
  width: 64%;
  height: 14px;
}

body .pmm-list-card--skeleton .pmm-price-box {
  width: 100%;
  gap: 10px;
}

body .pmm-skeleton-line--price {
  width: 75%;
  height: 38px;
  margin-left: auto;
  border-radius: 14px;
}

body .pmm-skeleton-line--price-sub {
  width: 60%;
  height: 16px;
  margin-left: auto;
}

body .pmm-skeleton-btn {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
}

body .pmm-skeleton-btn--ghost {
  min-height: 56px;
}

body .pmm-skeleton-btn--primary {
  min-height: 56px;
}

@keyframes pmmSkeletonShimmer {
  100% {
    left: 160%;
  }
}

/* premium catalog */
body .pmm-premium-panel--catalog .pmm-list-card--skeleton {
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
}

body .pmm-premium-panel--catalog .pmm-skeleton-block--image {
  height: 180px;
  border-radius: 16px;
}

body .pmm-premium-panel--catalog .pmm-skeleton-line--title {
  height: 24px;
}

body .pmm-premium-panel--catalog .pmm-skeleton-line--car {
  height: 18px;
}

body .pmm-premium-panel--catalog .pmm-skeleton-line--price {
  height: 30px;
}

/* responsive */
@media (max-width: 1200px) {
  body .pmm-list-card--skeleton,
  body .pmm-premium-panel--catalog .pmm-list-card--skeleton {
    grid-template-columns: 1fr;
  }

  body .pmm-skeleton-line--price,
  body .pmm-skeleton-line--price-sub {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  body .pmm-catalog-loading {
    border-radius: 18px;
  }

  body .pmm-list-card--skeleton {
    padding: 16px;
    gap: 16px;
  }

  body .pmm-skeleton-block--image {
    height: 200px;
  }

  body .pmm-skeleton-line--title {
    width: 92%;
    height: 24px;
  }

  body .pmm-skeleton-line--car {
    width: 78%;
    height: 20px;
  }

  body .pmm-chip--skeleton {
    width: 132px;
    min-height: 28px;
  }
}





/* =========================================================
   GARAGE PAGE — NEW LAYOUT
   ========================================================= */
   
   
.pmm-btn.pmm-btn--ghost.pmm-clear-garage-btn:hover {
  color: black;
}

.pmm-btn.pmm-btn--ghost.pmm-clear-garage-btn {
  color: black;
}

body .pmm-container.pmm-garage-page {
  max-width: 1600px;
  padding-top: 18px;
}

body .pmm-garage-hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin: 0 0 28px;
  padding: 30px;
  border: 1px solid var(--pmm-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(85, 182, 32, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.05), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #f3f8ee 100%);
  box-shadow: var(--pmm-shadow-sm);
  overflow: hidden;
}

body .pmm-garage-hero-page__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

body .pmm-garage-hero-page__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(85, 182, 32, 0.10);
  color: #3f8e1d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body .pmm-garage-hero-page__title {
  margin: 0 0 12px;
  color: var(--pmm-text);
  font-size: clamp(40px, 5vw, 66px);
  line-height: .92;
  letter-spacing: -0.05em;
}

body .pmm-garage-hero-page__text {
  max-width: 660px;
  margin: 0 0 20px;
  color: var(--pmm-text-soft);
  font-size: 17px;
  line-height: 1.65;
}

body .pmm-garage-hero-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

body .pmm-garage-stat {
  padding: 16px 18px;
  border: 1px solid var(--pmm-border);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-garage-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pmm-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body .pmm-garage-stat span {
  display: block;
  color: var(--pmm-text-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

body .pmm-garage-hero-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body .pmm-garage-hero-page__visual {
  min-width: 0;
}

body .pmm-garage-visual-card {
  position: relative;
  height: 100%;
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(85, 182, 32, 0.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(85,182,32,.12), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(17,17,17,.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf3 100%);
  box-shadow: var(--pmm-shadow-sm);
  overflow: hidden;
}

body .pmm-garage-visual-card__glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85,182,32,.14) 0%, rgba(85,182,32,0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

body .pmm-garage-visual-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #79d33f 0%, #58b922 100%);
  color: #fff;
  font-size: 52px;
  box-shadow: 0 18px 36px rgba(85,182,32,.24);
}

body .pmm-garage-visual-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

body .pmm-garage-visual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

body .pmm-garage-visual-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pmm-accent);
  box-shadow: 0 0 0 6px rgba(85,182,32,.08);
  flex: 0 0 auto;
}

body .pmm-garage-visual-card__active {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-garage-visual-card__active span {
  display: block;
  margin-bottom: 6px;
  color: var(--pmm-text-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

body .pmm-garage-visual-card__active strong {
  display: block;
  color: var(--pmm-text);
  font-size: 20px;
  line-height: 1.2;
}

body .pmm-garage-page__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

body .pmm-garage-form-panel,
body .pmm-garage-side-panel,
body .pmm-garage-list-panel {
  border-radius: 28px;
}

body .pmm-request-grid--garage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body .pmm-garage-side-panel {
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

body .pmm-garage-benefits {
  display: grid;
  gap: 14px;
}

body .pmm-garage-benefit {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--pmm-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fcfefb 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-garage-benefit__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(85,182,32,.10);
  font-size: 24px;
}

body .pmm-garage-benefit strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pmm-text);
  font-size: 15px;
}

body .pmm-garage-benefit span {
  display: block;
  color: var(--pmm-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

body .pmm-garage-list-panel .pmm-catalog {
  gap: 16px;
}

body .pmm-garage-car-card {
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 18px 20px;
}

body .pmm-garage-car-card .pmm-list-card__content h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2vw, 32px);
}

body .pmm-empty-state--garage {
  padding: 40px 24px;
}

body .pmm-empty-state__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #79d33f 0%, #58b922 100%);
  color: #fff;
  font-size: 42px;
  box-shadow: 0 18px 36px rgba(85,182,32,.20);
}

@media (max-width: 1100px) {
  body .pmm-garage-hero-page,
  body .pmm-garage-page__top-grid {
    grid-template-columns: 1fr;
  }

  body .pmm-garage-hero-page__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body .pmm-container.pmm-garage-page {
    max-width: 100%;
  }

  body .pmm-garage-hero-page {
    padding: 20px;
    border-radius: 22px;
  }

  body .pmm-garage-hero-page__title {
    font-size: 40px;
  }

  body .pmm-garage-visual-card {
    padding: 18px;
    border-radius: 22px;
  }

  body .pmm-request-grid--garage {
    grid-template-columns: 1fr;
  }

  body .pmm-garage-car-card {
    grid-template-columns: 1fr;
  }
}








/* =========================================================
   PMM NEWS PAGE
   ========================================================= */

body .pmm-news-page {
  max-width: 1600px;
  padding-top: 18px;
}

body .pmm-news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  margin: 0 0 28px;
  padding: 30px;
  border: 1px solid var(--pmm-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(85, 182, 32, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.05), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #f3f8ee 100%);
  box-shadow: var(--pmm-shadow-sm);
  overflow: hidden;
}

body .pmm-news-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

body .pmm-news-hero__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(85, 182, 32, 0.10);
  color: #3f8e1d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body .pmm-news-hero__title {
  margin: 0 0 12px;
  color: var(--pmm-text);
  font-size: clamp(40px, 5vw, 66px);
  line-height: .92;
  letter-spacing: -0.05em;
}

body .pmm-news-hero__text {
  max-width: 660px;
  margin: 0 0 20px;
  color: var(--pmm-text-soft);
  font-size: 17px;
  line-height: 1.65;
}

body .pmm-news-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body .pmm-news-stat {
  padding: 16px 18px;
  border: 1px solid var(--pmm-border);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-news-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pmm-text);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body .pmm-news-stat span {
  display: block;
  color: var(--pmm-text-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

body .pmm-news-hero__visual {
  min-width: 0;
}

body .pmm-news-visual-card {
  position: relative;
  height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(85, 182, 32, 0.16);
  background:
    radial-gradient(circle at 20% 20%, rgba(85,182,32,.12), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(17,17,17,.05), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf3 100%);
  box-shadow: var(--pmm-shadow-sm);
  overflow: hidden;
}

body .pmm-news-visual-card__glow {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85,182,32,.14) 0%, rgba(85,182,32,0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

body .pmm-news-visual-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #79d33f 0%, #58b922 100%);
  color: #fff;
  font-size: 52px;
  box-shadow: 0 18px 36px rgba(85,182,32,.24);
}

body .pmm-news-visual-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

body .pmm-news-visual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pmm-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

body .pmm-news-visual-item__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pmm-accent);
  box-shadow: 0 0 0 6px rgba(85,182,32,.08);
  flex: 0 0 auto;
}

body .pmm-news-visual-card__active {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-news-visual-card__active span {
  display: block;
  margin-bottom: 6px;
  color: var(--pmm-text-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

body .pmm-news-visual-card__active strong {
  display: block;
  color: var(--pmm-text);
  font-size: 20px;
  line-height: 1.2;
}

body .pmm-news-list-panel {
  border-radius: 28px;
}

body .pmm-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body .pmm-news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pmm-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
  box-shadow: var(--pmm-shadow-xs);
  transition:
    transform var(--pmm-transition-fast),
    box-shadow var(--pmm-transition-fast),
    border-color var(--pmm-transition-fast);
}

body .pmm-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pmm-shadow-hover);
  border-color: rgba(85,182,32,.18);
}

body .pmm-news-card__image {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

body .pmm-news-card__image img,
body .pmm-news-card__placeholder {
  width: 100%;
  height: 240px;
}

body .pmm-news-card__image img {
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}

body .pmm-news-card:hover .pmm-news-card__image img {
  transform: scale(1.04);
}

body .pmm-news-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 28%),
    linear-gradient(135deg, #f2f5f0 0%, #edf3e8 100%);
  color: #5d6b58;
  font-size: 52px;
}

body .pmm-news-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  height: 100%;
}

body .pmm-news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

body .pmm-news-card__date {
  color: var(--pmm-text-soft);
  font-size: 13px;
  font-weight: 700;
}

body .pmm-news-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(85,182,32,.10);
  color: #3f8e1d;
  font-size: 12px;
  font-weight: 800;
}

body .pmm-news-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body .pmm-news-card__title a {
  color: var(--pmm-text);
  text-decoration: none;
}

body .pmm-news-card__title a:hover {
  color: var(--pmm-accent);
}

body .pmm-news-card__excerpt {
  color: var(--pmm-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

body .pmm-news-card__actions {
  margin-top: auto;
}

body .pmm-empty-state--news {
  padding: 42px 24px;
}

@media (max-width: 1100px) {
  body .pmm-news-hero {
    grid-template-columns: 1fr;
  }

  body .pmm-news-hero__stats {
    grid-template-columns: 1fr;
  }

  body .pmm-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body .pmm-news-page {
    max-width: 100%;
  }

  body .pmm-news-hero {
    padding: 20px;
    border-radius: 22px;
  }

  body .pmm-news-hero__title {
    font-size: 40px;
  }

  body .pmm-news-visual-card {
    padding: 18px;
    border-radius: 22px;
  }

  body .pmm-news-grid {
    grid-template-columns: 1fr;
  }

  body .pmm-news-card__image img,
  body .pmm-news-card__placeholder {
    height: 220px;
  }
}




/* =========================================================
   PMM NEWS SINGLE
   ========================================================= */

body .pmm-news-single-page {
  max-width: 1240px;
  padding-top: 18px;
}

body .pmm-news-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  margin: 0 0 28px;
  padding: 30px;
  border: 1px solid var(--pmm-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(85, 182, 32, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.05), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #f3f8ee 100%);
  box-shadow: var(--pmm-shadow-sm);
}

body .pmm-news-single-hero__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .pmm-news-single-hero__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(85, 182, 32, 0.10);
  color: #3f8e1d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

body .pmm-news-single-hero__title {
  margin: 0 0 14px;
  color: var(--pmm-text);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: .96;
  letter-spacing: -0.05em;
}

body .pmm-news-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

body .pmm-news-single-hero__meta-item {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17,17,17,.05);
  color: var(--pmm-text-soft);
  font-size: 13px;
  font-weight: 700;
}

body .pmm-news-single-hero__excerpt {
  margin-bottom: 20px;
  color: var(--pmm-text-soft);
  font-size: 17px;
  line-height: 1.7;
}

body .pmm-news-single-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

body .pmm-news-single-hero__image,
body .pmm-news-single-hero__placeholder {
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
  min-height: 360px;
  border: 1px solid var(--pmm-border);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-news-single-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body .pmm-news-single-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(85,182,32,.10), transparent 28%),
    linear-gradient(135deg, #f2f5f0 0%, #edf3e8 100%);
  color: #5d6b58;
  font-size: 70px;
}

body .pmm-news-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

body .pmm-news-single-content {
  min-width: 0;
  border: 1px solid var(--pmm-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: var(--pmm-shadow-xs);
}

body .pmm-news-single-content__inner {
  padding: 28px;
  color: var(--pmm-text);
  font-size: 17px;
  line-height: 1.85;
}

body .pmm-news-single-content__inner h2,
body .pmm-news-single-content__inner h3,
body .pmm-news-single-content__inner h4 {
  color: var(--pmm-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body .pmm-news-single-content__inner h2 {
  margin: 28px 0 14px;
  font-size: 32px;
}

body .pmm-news-single-content__inner h3 {
  margin: 24px 0 12px;
  font-size: 26px;
}

body .pmm-news-single-content__inner p {
  margin: 0 0 16px;
}

body .pmm-news-single-content__inner ul,
body .pmm-news-single-content__inner ol {
  margin: 0 0 18px 22px;
}

body .pmm-news-single-content__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  margin: 18px 0;
  box-shadow: var(--pmm-shadow-sm);
}

body .pmm-news-single-sidebar {
  position: sticky;
  top: 24px;
}

body .pmm-news-sidebar-links {
  display: grid;
  gap: 10px;
}

body .pmm-news-related-panel {
  border-radius: 28px;
}

@media (max-width: 1100px) {
  body .pmm-news-single-hero,
  body .pmm-news-single-layout {
    grid-template-columns: 1fr;
  }

  body .pmm-news-single-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  body .pmm-news-single-hero {
    padding: 20px;
    border-radius: 22px;
  }

  body .pmm-news-single-hero__title {
    font-size: 36px;
  }

  body .pmm-news-single-content__inner {
    padding: 18px;
    font-size: 16px;
  }

  body .pmm-news-single-hero__image,
  body .pmm-news-single-hero__placeholder {
    min-height: 240px;
  }
}

.cookieadmin_re_consent {
    display: none !important;
}


.pmm-checkout-consents {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 10px;
}

.pmm-checkout-switch {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	user-select: none;
	padding: 14px 16px;
	border-radius: 18px;
	background: linear-gradient(135deg, #f8fbf6, #ffffff);
	border: 1px solid rgba(123, 177, 100, 0.10);
	box-shadow:
		0 10px 24px rgba(25, 40, 20, 0.04),
		inset 0 1px 0 rgba(255,255,255,0.9);
	transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.pmm-checkout-switch:hover {
	border-color: rgba(111, 177, 83, 0.18);
	box-shadow:
		0 14px 28px rgba(25, 40, 20, 0.06),
		0 0 0 1px rgba(145, 210, 114, 0.04);
}

.pmm-checkout-switch input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.pmm-checkout-switch__ui {
	position: relative;
	flex: 0 0 auto;
	width: 46px;
	height: 28px;
	border-radius: 999px;
	background: linear-gradient(135deg, #e4ebe0, #dfe7db);
	border: 1px solid rgba(120, 150, 110, 0.20);
	box-shadow:
		inset 0 2px 4px rgba(0,0,0,0.05),
		0 2px 8px rgba(60, 90, 50, 0.05);
	transition: all .22s ease;
	margin-top: 1px;
}

.pmm-checkout-switch__ui::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffffff, #f7faf5);
	box-shadow:
		0 4px 10px rgba(0,0,0,0.12),
		inset 0 1px 0 rgba(255,255,255,0.95);
	transition: all .22s ease;
}

.pmm-checkout-switch input:checked + .pmm-checkout-switch__ui {
	background: linear-gradient(135deg, #93df52, #63cd2b);
	border-color: rgba(96, 180, 56, 0.35);
	box-shadow:
		0 8px 18px rgba(101, 200, 53, 0.22),
		inset 0 1px 0 rgba(255,255,255,0.18);
}

.pmm-checkout-switch input:checked + .pmm-checkout-switch__ui::after {
	left: 21px;
	background: linear-gradient(135deg, #ffffff, #fdfefd);
}

.pmm-checkout-switch__text {
	display: block;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 500;
	color: #435240;
	padding-top: 1px;
}

.pmm-checkout-switch input:focus-visible + .pmm-checkout-switch__ui {
	box-shadow:
		0 0 0 4px rgba(120, 200, 90, 0.12),
		0 8px 18px rgba(101, 200, 53, 0.12);
}

.pmm-checkout-switch.is-error {
	animation: pmmCheckoutShake .36s ease;
	border-color: rgba(214, 92, 92, 0.35);
	box-shadow:
		0 10px 24px rgba(160, 60, 60, 0.06),
		0 0 0 1px rgba(214, 92, 92, 0.08);
}

.pmm-checkout-switch.is-error .pmm-checkout-switch__ui {
	border-color: rgba(214, 92, 92, 0.38);
}

@keyframes pmmCheckoutShake {
	0% { transform: translateX(0); }
	20% { transform: translateX(-4px); }
	40% { transform: translateX(4px); }
	60% { transform: translateX(-3px); }
	80% { transform: translateX(3px); }
	100% { transform: translateX(0); }
}

@media (max-width: 768px) {
	.pmm-checkout-switch {
		padding: 12px 14px;
		border-radius: 16px;
	}

	.pmm-checkout-switch__text {
		font-size: 14px;
	}
}



.pmm-checkout-bubble {
	position: absolute;
	z-index: 9999;
	max-width: 260px;
	padding: 12px 14px;
	border-radius: 14px;
	background: linear-gradient(135deg, #1f2a1d, #2c3b28);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	box-shadow:
		0 18px 34px rgba(20, 30, 18, 0.22),
		0 8px 16px rgba(80, 126, 60, 0.10);
	opacity: 0;
	transform: translateY(8px) scale(0.98);
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease;
}

.pmm-checkout-bubble::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -7px;
	width: 14px;
	height: 14px;
	background: #253222;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 2px;
}

.pmm-checkout-bubble.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes pmmCheckoutBtnShake {
	0% { transform: translateX(0); }
	20% { transform: translateX(-3px); }
	40% { transform: translateX(3px); }
	60% { transform: translateX(-2px); }
	80% { transform: translateX(2px); }
	100% { transform: translateX(0); }
}

.pmm-btn.is-shake {
	animation: pmmCheckoutBtnShake .32s ease;
}



:root {
  --zap-header-offset: 150px;
}

.zap-premium-header {
  position: sticky;
  top: 0;
  z-index: 5000;
}

body .pmm-premium-catalog-sidebar {
  position: sticky;
  top: calc(var(--zap-header-offset) + 12px) !important;
  z-index: 10;
}

body .pmm-premium-filter-box {
  max-height: calc(100vh - var(--zap-header-offset) - 24px);
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  body .pmm-premium-catalog-sidebar {
    position: static;
    top: auto !important;
  }

  body .pmm-premium-filter-box {
    max-height: none;
    overflow: visible;
  }
}

/* =========================
   HEADER CART
========================= */

.zap-premium-header__top-actions,
.zap-premium-header__bottom-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zap-premium-header .pmm-cart-trigger,
.zap-mobile-drawer .pmm-cart-trigger {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;

    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #101512 0%, #1a2417 100%);
    color: #ffffff;
    box-shadow:
        0 14px 24px rgba(17, 24, 19, 0.22),
        0 0 20px rgba(113, 206, 56, 0.10);
    transition: transform .22s ease, box-shadow .22s ease;
}

.zap-premium-header .pmm-cart-trigger:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 28px rgba(17, 24, 19, 0.28),
        0 0 24px rgba(113, 206, 56, 0.14);
}

/* desktop cart near call button */
.zap-premium-header__bottom-actions .pmm-cart-trigger {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
}

/* mobile cart near burger */
.zap-premium-header__top-actions .pmm-cart-trigger {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
}

.zap-premium-header .pmm-cart-trigger__icon {
    font-size: 20px;
    line-height: 1;
}

.zap-premium-header .pmm-cart-trigger__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7dde38;
    color: #10200e;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(125, 222, 56, 0.30);
}

/* desktop/mobile visibility */
.zap-premium-header__top-actions .pmm-cart-trigger {
    display: none;
}

.zap-premium-header__bottom-actions .pmm-cart-trigger {
    display: inline-flex;
}

/* корзина поверх всей страницы */
.pmm-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.pmm-cart-drawer[hidden] {
    display: none !important;
}

.pmm-cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 10, 0.28);
    backdrop-filter: blur(5px);
}

.pmm-cart-drawer__panel {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(460px, calc(100vw - 24px));
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, #eef8e7 0%, transparent 26%),
        linear-gradient(135deg, #f8fcf6 0%, #ffffff 48%, #f5faf2 100%);
    border: 1px solid #dbe8d3;
    box-shadow:
        0 28px 60px rgba(20, 31, 17, 0.18),
        0 10px 24px rgba(85, 133, 62, 0.08);
    display: flex;
    flex-direction: column;
    animation: pmmCartDrawerIn .24s ease;
}

.pmm-cart-drawer__head {
    padding: 18px 18px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(112, 165, 92, 0.10);
}

.pmm-cart-drawer__head h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    font-weight: 500;
    color: #182116;
}

.pmm-cart-drawer__close {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 14px;
    background: #0f1210;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.pmm-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 14px 18px;
}

.pmm-cart-drawer__footer {
    padding: 16px 18px 18px;
    border-top: 1px solid rgba(112, 165, 92, 0.10);
    background: rgba(255,255,255,0.78);
}

@media (max-width: 768px) {
    .zap-premium-header__bottom-actions {
        display: none;
    }

    .zap-premium-header__top-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .zap-premium-header__top-actions .pmm-cart-trigger {
        display: inline-flex;
    }

    .zap-premium-header__top-actions .pmm-cart-trigger__icon {
        font-size: 18px;
    }

    .pmm-cart-drawer__panel {
        top: 10px;
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: auto;
        border-radius: 22px;
    }

    .pmm-cart-drawer__head h3 {
        font-size: 26px;
    }
}

@keyframes pmmCartDrawerIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* корзина внутри header, а не floating */
.zap-premium-header .pmm-cart-trigger {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 0 !important;

    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #101512 0%, #1a2417 100%);
    box-shadow:
        0 14px 24px rgba(17, 24, 19, 0.22),
        0 0 20px rgba(113, 206, 56, 0.10);
    cursor: pointer;
    z-index: 1 !important;
}

.zap-premium-header .pmm-cart-trigger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

.zap-premium-header .pmm-cart-trigger__icon img,
.zap-premium-header .pmm-cart-trigger__icon .emoji {
    width: 20px;
    height: 20px;
}

.zap-premium-header .pmm-cart-trigger__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7dde38;
    color: #10200e;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(125, 222, 56, 0.30);
}


/* по умолчанию (desktop) скрываем mobile-actions */
.zap-premium-header__top-actions {
    display: none;
}

/* мобилка */
@media (max-width: 768px) {

    /* скрываем нижний блок (где сейчас корзина + бургер) */
    .zap-premium-header__bottom-actions {
        display: none;
    }

    /* показываем mobile-actions */
    .zap-premium-header__top-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.pmm-checkout-success {
  grid-column: 1 / -1;
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15,23,42,.06);
}

.pmm-checkout-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  font-weight: 900;
}

.pmm-checkout-success h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #0f172a;
}

.pmm-checkout-success p {
  margin: 0 0 10px;
  color: #475569;
  font-size: 16px;
}

.pmm-checkout-success .pmm-btn {
  margin-top: 18px;
}





.pmm-single-wrap--three {
    display: grid;
    grid-template-columns: minmax(420px, 560px) minmax(260px, 320px) minmax(300px, 360px);
    gap: 24px;
    align-items: start;
}

.pmm-single-wrap--three .pmm-single-gallery-main {
    height: auto;
}

.pmm-single-wrap--three .pmm-single-gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pmm-single-wrap--three .pmm-single-info,
.pmm-single-wrap--three .pmm-single-meta-card {
    min-width: 0;
}

.pmm-single-wrap--three .pmm-single-purchase-card {
    width: 100%;
}

.pmm-single-wrap--three .pmm-single-benefit-card {
    display: flex;
    grid-template-columns: 36px 1fr;
    gap: 10px;
}

.pmm-single-wrap--three .pmm-single-benefit-card__content span {
    font-size: 12px;
    line-height: 1.35;
}



@media (max-width: 1180px) {
    .pmm-single-wrap--three {
        grid-template-columns: minmax(360px, 1fr) minmax(300px, 380px);
    }

    .pmm-single-wrap--three .pmm-single-meta-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .pmm-container {
        max-width: 100%;
    }

    .pmm-single-wrap--three {
        grid-template-columns: 1fr;
    }

    .pmm-single-wrap--three .pmm-single-meta-card {
        grid-column: auto;
    }
}


.pmm-lightbox__dialog {
    position: relative;
}

.pmm-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 0;
    cursor: pointer;
}

.pmm-lightbox__arrow::before {
    font-size: 30px;
    line-height: 1;
    display: block;
    transform: translateY(-2px);
}

.pmm-lightbox__arrow--prev::before {
    content: "‹";
}

.pmm-lightbox__arrow--next::before {
    content: "›";
}

.pmm-lightbox__arrow--prev {
    left: 18px;
}

.pmm-lightbox__arrow--next {
    right: 18px;
}

.pmm-lightbox__arrow:hover {
    background: #fff;
}

@media (max-width: 760px) {
    .pmm-lightbox__arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .pmm-lightbox__arrow--prev {
        left: 8px;
    }

    .pmm-lightbox__arrow--next {
        right: 8px;
    }
}

.pmm-lightbox__arrow:hover{
    color:black;
    
}


.pmm-single-price-sub-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #697386;
    font-weight: 700;
}

.pmm-single-price-sub-row {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    color: #6b7280;
}

.pmm-price-sub-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    color: #64748b;
    font-weight: 700;
}

.pmm-single-contact-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.pmm-single-contact-mini__phone {
    font-size: 18px;
    font-weight: 900;
    color: #111827;
    text-decoration: none;
}

.pmm-single-contact-mini__socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pmm-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.pmm-social--wa {
    background-color: #25D366;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M16.01 3C8.84 3 3 8.73 3 15.78c0 2.25.6 4.45 1.74 6.38L3 29l7.03-1.82A13.2 13.2 0 0 0 16.01 28C23.18 28 29 22.27 29 15.22 29 8.17 23.18 3 16.01 3zm0 22.8c-1.9 0-3.75-.5-5.38-1.45l-.39-.23-4.17 1.08 1.11-4.01-.26-.41a10.33 10.33 0 0 1-1.6-5.55c0-5.76 4.8-10.43 10.69-10.43 5.88 0 10.68 4.67 10.68 10.43S21.89 25.8 16.01 25.8zm5.86-7.82c-.32-.16-1.9-.92-2.19-1.03-.29-.1-.5-.16-.71.16-.21.31-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.35-.49-2.57-1.55-.95-.83-1.59-1.85-1.78-2.16-.18-.31-.02-.48.14-.64.14-.14.32-.37.48-.55.16-.18.21-.31.32-.52.11-.21.05-.39-.03-.55-.08-.16-.71-1.68-.98-2.3-.26-.6-.52-.52-.71-.53h-.61c-.21 0-.55.08-.84.39-.29.31-1.1 1.05-1.1 2.56 0 1.5 1.13 2.96 1.29 3.16.16.21 2.22 3.33 5.38 4.67.75.32 1.34.51 1.8.65.76.24 1.45.2 2 .12.61-.09 1.9-.76 2.17-1.5.27-.73.27-1.36.19-1.5-.08-.13-.29-.21-.61-.37z'/%3E%3C/svg%3E");
}

.pmm-social--viber {
    background-color: #7360F2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M24.7 6.8C22.4 4.6 18.9 4 16 4s-6.4.6-8.7 2.8C5.1 9 4.5 12.1 4.5 15.1c0 2.7.5 5.4 2.2 7.5.6.7 1.3 1.2 2.1 1.6v3.2c0 .5.6.8 1 .5l3.4-2.5c.9.1 1.8.2 2.8.2 2.9 0 6.4-.6 8.7-2.8 2.2-2.2 2.8-5.4 2.8-8.4s-.6-5.4-2.8-7.6zM16 23.4c-.9 0-1.8-.1-2.7-.2l-.4-.1-2.1 1.5v-2l-.5-.2c-.8-.4-1.5-.8-2-1.5-1.2-1.5-1.6-3.7-1.6-5.9 0-2.5.5-5.1 2.1-6.7C10.5 6.7 13.4 6.2 16 6.2s5.5.5 7.2 2.1c1.6 1.6 2.1 4.2 2.1 6.7s-.5 5.1-2.1 6.7c-1.7 1.6-4.6 1.7-7.2 1.7zm5.1-5.5c-.3-.2-1.7-.9-2-.9-.3-.1-.5-.1-.7.2-.2.3-.8.9-.9 1.1-.2.2-.3.2-.6.1-.3-.2-1.2-.4-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.2-.7-1.7-1-2.3-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.4s1 2.8 1.2 3c.2.2 2 3.1 4.9 4.3.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.7-.7 2-1.4.2-.7.2-1.2.2-1.4-.1-.1-.2-.2-.5-.3z'/%3E%3C/svg%3E");
}

.pmm-social--tg {
    background-color: #229ED9;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M27.8 5.2 3.9 14.4c-1.6.6-1.6 1.5-.3 1.9l6.1 1.9 2.4 7.4c.3.8.1 1.1.9 1.1.6 0 .9-.3 1.3-.6l3.1-3 6.4 4.7c1.2.7 2 .3 2.3-1.1l4.2-19.8c.4-1.7-.7-2.4-1.9-1.9zm-4.3 4.6L13.2 19.1l-.4 4.2-1.6-5.4 12.3-8.1z'/%3E%3C/svg%3E");
}


.pmm-single-wrap--three {
    align-items: flex-start;
}

.pmm-single-delivery-info[open] .pmm-single-delivery-info__body {
    box-sizing: border-box;
}

.pmm-single-delivery-info {
    position: relative;
}

.pmm-single-delivery-info[open] .pmm-single-delivery-info__body {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 5;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pmm-single-delivery-info summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

/* убираем дефолтную стрелку */
.pmm-single-delivery-info summary::-webkit-details-marker {
    display: none;
}

.pmm-single-delivery-info summary::before {
    content: "🚚";
    font-size: 16px;
}

.pmm-single-delivery-info summary::after {
    content: "⌄";
    margin-left: auto;
    transition: 0.2s;
}

.pmm-single-delivery-info[open] summary::after {
    transform: rotate(180deg);
}

.pmm-single-delivery-info__body {
    margin-top: 6px;
    color: #7a8494;
    line-height: 1.45;
}

.pmm-progressive-img {
    filter: blur(8px);
    transform: scale(1.03);
    transition: filter .35s ease, transform .35s ease, opacity .35s ease;
    background: #eef2f6;
}

.pmm-progressive-img.is-loaded {
    filter: blur(0);
    transform: scale(1);
}

.pmm-sticky-purchase-bar__mobile-meta {
    display: none;
}

@media (max-width: 768px) {
    .body .pmm-oem{
        border-top: none;
    }
    .pmm-sticky-purchase-bar__mobile-meta {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-top: 4px;
        font-size: 11px;
        line-height: 1.2;
    }

    .pmm-sticky-art {
        color: #6b7280;
        font-weight: 800;
        white-space: nowrap;
    }

    .pmm-sticky-phone {
        color: #111827;
        font-weight: 900;
        text-decoration: none;
        white-space: nowrap;
    }

    .pmm-sticky-purchase-bar__price {
        min-width: 0;
    }

    .pmm-sticky-purchase-bar .pmm-btn {
        flex-shrink: 0;
    }
}


.pmm-list-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

.pmm-list-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pmm-price-request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 7px 10px;
    text-align: center;
    white-space: nowrap;
}

/* Другие запчасти: 2 колонки */
.pmm-other-parts .pmm-catalog--compact {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* Карточка компактная: фото слева, текст по центру, цена/кнопки справа */
.pmm-other-parts .pmm-list-card--single-related {
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) 118px;
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    border-radius: 14px;
    min-width: 0;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-list-card__image {
    width: 92px;
    min-width: 92px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-list-card__image img {
    width: 92px;
    height: 74px;
    object-fit: cover;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-list-card__content {
    min-width: 0;
}

.pmm-other-parts .pmm-list-card--single-related h3 {
    margin: 2px 0 5px;
    font-size: 14px;
    line-height: 1.2;
}

.pmm-other-parts .pmm-list-card--single-related h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Строка авто */
.pmm-other-parts .pmm-list-card--single-related .pmm-car-line {
    font-size: 11px;
    line-height: 1.25;
}

/* Строка двигатель / топливо / коробка / кузов */
.pmm-other-parts .pmm-list-card--single-related .pmm-card-spec-line {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.25;
}

/* OEM / Артикул */
.pmm-other-parts .pmm-list-card--single-related .pmm-card-codes-line {
    margin-top: 4px;
    gap: 4px;
    font-size: 10px;
}

/* Чипы */
.pmm-other-parts .pmm-list-card--single-related .pmm-list-card__topline {
    gap: 4px;
    margin-bottom: 4px;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-chip {
    padding: 3px 6px;
    font-size: 9px;
    line-height: 1;
}

/* Цена и кнопки НЕ улетают вниз */
.pmm-other-parts .pmm-list-card--single-related .pmm-list-card__side {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 118px;
    min-width: 118px;
    align-self: stretch;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-price-box {
    margin: 0;
    text-align: right;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-price {
    font-size: 15px;
    line-height: 1.1;
    white-space: nowrap;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-price--request {
    font-size: 12px !important;
    line-height: 1.15;
    white-space: normal;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-price-sub-row {
    font-size: 10px;
    gap: 3px;
    justify-content: flex-end;
}

.pmm-other-parts .pmm-list-card--single-related .pmm-btn {
    width: 100%;
    min-height: 32px;
    padding: 7px 8px;
    font-size: 11px;
    border-radius: 9px;
}

/* На средних экранах лучше одна колонка */
@media (max-width: 1100px) {
    .pmm-other-parts .pmm-catalog--compact {
        grid-template-columns: 1fr;
    }
}

/* Телефон */
@media (max-width: 640px) {
    .pmm-other-parts .pmm-catalog--compact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pmm-other-parts .pmm-list-card--single-related {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        grid-template-areas:
            "image content"
            "image side";
        gap: 8px 10px;
        align-items: start;
        padding: 10px;
        border-radius: 16px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-list-card__image {
        grid-area: image;
        width: 82px;
        min-width: 82px;
        height: 82px;
        border-radius: 12px;
        overflow: hidden;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-list-card__image img {
        width: 82px;
        height: 82px;
        object-fit: cover;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-list-card__content {
        grid-area: content;
        min-width: 0;
        padding: 0;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-list-card__side {
        grid-area: side;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "price price"
            "details cart";
        gap: 6px;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
        align-self: start;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-price-box {
        grid-area: price;
        width: 100%;
        margin: 0;
        padding: 0;
        align-items: flex-start;
        text-align: left;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-price {
        margin: 0;
        padding: 0;
        font-size: 15px;
        line-height: 1.1;
        text-align: left;
        white-space: nowrap;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-price--request {
        display: inline-flex;
        width: fit-content;
        max-width: 100%;
        padding: 5px 8px;
        border-radius: 999px;
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        color: #64748b;
        font-size: 11px;
        line-height: 1.15;
        font-weight: 800;
        white-space: normal;
        text-align: left;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-price-sub-row {
        justify-content: flex-start;
        gap: 5px;
        margin-top: 2px;
        font-size: 10px;
        line-height: 1.2;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-btn--ghost {
        grid-area: details;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-add-to-cart {
        grid-area: cart;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        min-height: 34px;
        padding: 7px 6px;
        border-radius: 10px;
        font-size: 11px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .pmm-other-parts .pmm-list-card--single-related h3 {
        margin: 0 0 3px;
        font-size: 13px;
        line-height: 1.18;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-car-line {
        margin: 0 0 3px;
        font-size: 11px;
        line-height: 1.2;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-card-spec-line {
        margin: 0 0 3px;
        font-size: 10.5px;
        line-height: 1.2;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-card-codes-line {
        margin-top: 4px;
        font-size: 10.5px;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-oem {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-list-card__topline {
        gap: 4px;
        margin-bottom: 4px;
    }

    .pmm-other-parts .pmm-list-card--single-related .pmm-chip {
        min-height: 22px;
        padding: 3px 6px;
        font-size: 9px;
        line-height: 1;
    }
}

.pmm-single-price-main--empty {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #64748b !important;
    line-height: 1.2 !important;
}

.pmm-premium-chip-card.is-hidden-choice,
.pmm-brand.is-hidden-brand {
    display: none;
}

.pmm-premium-chip-card.is-hidden-choice.is-choice-visible {
    display: flex;
}

.pmm-brand.is-hidden-brand.is-brand-visible {
    display: flex;
}