﻿/* DTD Auto â€” Modern Homepage CSS
   Converted from Claude Design JSX inline styles
   ------------------------------------------------ */

/* â”€â”€ RESET & ROOT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #E47911;
  --orange-dark:   #c96a0d;
  --orange-rgb:    228, 121, 17;
  --radius:        12px;

  /* light mode */
  --bg:            #F7F7F6;
  --surface:       #FFFFFF;
  --surface2:      #F0F0EF;
  --border:        #E4E4E2;
  --text:          #111110;
  --text-muted:    #6B6B68;
  --text-faint:    #C4C4C0;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.04);
}

html.dark {
  --bg:            #0F0F0E;
  --surface:       #171716;
  --surface2:      #1F1F1E;
  --border:        #2A2A28;
  --text:          #F4F3F0;
  --text-muted:    #8A8A85;
  --text-faint:    #3A3A37;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

#modern-homepage {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

#modern-homepage.mh-is-account {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

#modern-homepage *, #modern-homepage *::before, #modern-homepage *::after {
  text-wrap: pretty;
}

#modern-homepage input,
#modern-homepage select,
#modern-homepage button,
#modern-homepage textarea {
  font-family: inherit;
}

#modern-homepage input:focus {
  outline: none;
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.15) !important;
}

#modern-homepage select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

#modern-homepage a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar */
#modern-homepage ::-webkit-scrollbar { width: 6px; height: 6px; }
#modern-homepage ::-webkit-scrollbar-track { background: transparent; }
#modern-homepage ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
#modern-homepage ::-webkit-scrollbar-thumb:hover { background: var(--text-faint); }

/* Select option colors */
#modern-homepage select option { background: var(--surface); color: var(--text); }

/* Animations */
@keyframes mh-fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mh-animate-in { animation: mh-fadeUp 0.45s ease both; }

/* Responsive helpers */
@media (max-width: 768px)  { .mh-hide-mobile { display: none !important; } }
@media (min-width: 769px)  { .mh-show-mobile { display: none !important; } }
@media (max-width: 1024px) { .mh-hide-tablet { display: none !important; } }

/* â”€â”€ TOP BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 7px 24px;
}
html.dark .mh-topbar { background: #0A0A09; }

.mh-topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  gap: 12px;
  flex-wrap: wrap;
}

.mh-topbar-left { display: flex; gap: 20px; align-items: center; }
.mh-topbar-right { display: flex; gap: 16px; align-items: center; }
.mh-topbar-right a { color: var(--text-muted); transition: color 0.15s; }
.mh-topbar-right a:hover { color: var(--orange); }

.mh-topbar-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.mh-header-wrap.scrolled {
  background: rgba(247,247,246,0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
html.dark .mh-header-wrap.scrolled {
  background: rgba(13,17,23,0.92);
}

.mh-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.mh-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
  flex-shrink: 0;
}
.mh-logo-dtd  { font-size: 24px; font-weight: 800; color: var(--orange); letter-spacing: -0.04em; }
.mh-logo-auto { font-size: 24px; font-weight: 700; color: var(--text); letter-spacing: -0.04em; }
.mh-logo-ro   { font-size: 14px; font-weight: 500; color: var(--text-muted); margin-bottom: 1px; letter-spacing: -0.02em; }

/* Nav */
.mh-nav {
  display: flex;
  gap: 2px;
  margin-left: 8px;
}
.mh-nav a {
  padding: 7px 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
}
.mh-nav a:hover {
  color: var(--text);
  background: var(--surface2);
}

/* Search */
.mh-search-wrap {
  flex: 1;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.mh-search-icon-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
}
.mh-search-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 40px 9px 40px;
  font-size: 13px;
  color: var(--text);
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.mh-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  border: none;
  border-radius: 7px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header actions */
.mh-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.mh-icon-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  position: relative;
}
.mh-icon-btn:hover { background: var(--surface2); color: var(--text); }

.mh-lang-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 10px;
  height: 34px;
  cursor: pointer;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s;
}
.mh-lang-btn:hover { background: var(--surface2); }

.mh-cart-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.15s;
}
.mh-cart-btn.has-items {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.mh-cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.mh-wishlist-btn { position: relative; }
.mh-wishlist-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

/* Mobile nav */
.mh-mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 12px 24px 16px;
  display: none;
}
.mh-mobile-nav.open { display: block; }
.mh-mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-hero {
  background: #0D1117;
  position: relative;
  overflow: hidden;
  padding: 88px 24px 96px;
}

.mh-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.mh-hero-glow-bottom {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 360px;
  background: radial-gradient(ellipse at center, rgba(228,121,17,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.mh-hero-glow-side {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228,121,17,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mh-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.mh-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(228,121,17,0.12);
  border: 1px solid rgba(228,121,17,0.25);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 13px;
  color: #E47911;
  font-weight: 600;
  margin-bottom: 28px;
}

.mh-hero h1 {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 800;
  color: #F4F3F0;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.mh-hero h1 span { color: #E47911; }

.mh-hero-sub {
  font-size: 17px;
  color: #8A9CB0;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.6;
}

/* Vehicle selector box */
.mh-vs-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px 20px 16px;
}

.mh-vs-selects {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch; /* toate câmpurile pe aceeași înălțime de rând */
  margin-bottom: 12px;
}

.mh-vs-field {
  flex: 1;
  min-width: 130px;
  position: relative;
}

.mh-vs-field { display: flex; } /* select-ul umple câmpul pe înălțime => casete egale */

.mh-vs-select {
  width: 100%;
  min-height: 48px;        /* baza egală + touch target ≥44px; crește egal cu rândul */
  box-sizing: border-box;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 36px 8px 16px;
  color: #8A9CB0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.15s ease;
  /* text-ul lung (ex. motorizare) rămâne integral, pe max 2 rânduri,
     în interiorul casetei — fără să iasă peste border (cum o face <select> cu height fix). */
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mh-vs-select.active {
  background: rgba(228,121,17,0.12);
  border-color: rgba(228,121,17,0.5);
  color: #F4F3F0;
}
.mh-vs-select:disabled { opacity: 0.4; cursor: not-allowed; }
.mh-vs-select option { background: #1a1a1a; color: #F4F3F0; }

.mh-vs-chevron {
  position: absolute;
  right: 10px;
  top: 16px;               /* ancorat sus, aliniat cu primul rând de text (nu plutește dacă o casetă crește) */
  color: #8A9CB0;
  pointer-events: none;
  display: flex;
}

.mh-vs-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.2px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mh-vs-submit:disabled {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: #8A9CB0;
  cursor: not-allowed;
}
.mh-vs-submit:not(:disabled):hover { background: var(--orange-dark); }

/* â”€â”€ EXPAND GRID (Categorii + Cataloage accordion) â”€â”€ */

/* â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.mh-section-heading-text h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.mh-section-heading-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
}
#modern-homepage .mh-section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}
#modern-homepage .mh-section-link:hover { opacity: 0.8; }

.mh-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* â”€â”€ CATEGORIES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-categories-section {
  padding: 80px 24px 48px;
  background: var(--bg);
}

/* â”€â”€ CATALOAGE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-catalogs-section {
  padding: 0 24px 80px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.mh-catalogs-section .mh-container { padding-top: 48px; }

/* â”€â”€ EXPAND GRID shared â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-expand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 14px;
}

#mhCatGrid {
  grid-template-columns: repeat(6, 1fr);
}

.mh-expand-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.mh-expand-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(228,121,17,0.15);
}
.mh-expand-card.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,121,17,0.15);
  transform: none;
}

.mh-expand-icon-area {
  padding: 36px 12px 30px;
  background: var(--surface2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
  overflow: hidden;
}
.mh-expand-card:hover .mh-expand-icon-area,
.mh-expand-card.active .mh-expand-icon-area {
  background: rgba(228,121,17,0.07);
  color: var(--orange);
}
.mh-expand-icon-area--img {
  padding: 0;
  height: 130px;
}
.mh-expand-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-expand-name-bar {
  padding: 10px 10px 13px;
  border-top: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.2s;
}
.mh-expand-card.active .mh-expand-name-bar { border-color: rgba(228,121,17,0.1); }
.mh-expand-name-bar span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: block;
  transition: color 0.2s;
}
.mh-expand-card:hover .mh-expand-name-bar span,
.mh-expand-card.active .mh-expand-name-bar span { color: var(--orange); }

/* Panel wrap â€” full-width grid cell */
.mh-expand-panel-wrap {
  grid-column: 1 / -1;
}

.mh-expand-panel {
  background: rgba(228,121,17,0.03);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 20px;
  animation: mhFadeUp 0.2s ease both;
}

@keyframes mhFadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mh-expand-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
}
.mh-expand-panel-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mh-expand-panel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mh-expand-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: -0.1px;
}
.mh-expand-page-btn:hover { background: var(--orange); color: #fff; }
.mh-expand-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
}
.mh-expand-close-btn:hover { color: var(--text); }

.mh-expand-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px;
}
.mh-expand-sub-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.mh-expand-sub-tile:hover {
  background: rgba(228,121,17,0.05);
  border-color: var(--orange);
}
.mh-expand-sub-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: repeating-linear-gradient(45deg, var(--surface2) 0, var(--surface2) 4px, var(--border) 4px, var(--border) 4.5px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mh-expand-sub-thumb--img {
  background: var(--surface2);
}
.mh-expand-sub-thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mh-expand-sub-initials {
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}
.mh-expand-sub-tile:hover .mh-expand-sub-initials { color: var(--orange); }
.mh-expand-sub-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  transition: color 0.15s;
}
.mh-expand-sub-tile:hover .mh-expand-sub-name { color: var(--orange); }

/* â”€â”€ PROMO SLIDER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-promo-section {
  padding: 0 24px 80px;
  background: var(--bg);
}

.mh-promo-slide {
  border-radius: 20px;
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
  height: 320px;
  display: flex;
  align-items: center;
  transition: background 0.5s ease;
}

.mh-promo-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.mh-promo-glow {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 500px;
  height: 500px;
  pointer-events: none;
  transition: all 0.5s ease;
}
.mh-promo-corner {
  position: absolute;
  right: 52px;
  top: 40px;
  opacity: 0.06;
  pointer-events: none;
}

.mh-promo-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%);
}
@media (max-width: 768px) {
  .mh-promo-image { display: none; }
}

.mh-promo-body {
  position: relative;
  z-index: 1;
  flex: 1;
}
.mh-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 100px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.mh-promo-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #F4F3F0;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.mh-promo-sub {
  font-size: 15px;
  color: #8A9CB0;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.mh-promo-cta {
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  letter-spacing: -0.2px;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}
.mh-promo-cta:hover { opacity: 0.85; color: #fff; }

.mh-promo-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.mh-promo-arrow {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mh-promo-arrow:hover { background: rgba(255,255,255,0.16); }
.mh-promo-dots { display: flex; gap: 6px; align-items: center; }
.mh-promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}
.mh-promo-dot.active {
  width: 22px;
  background: var(--orange);
}

/* â”€â”€ CAR BRANDS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-carbrands-section {
  padding: 72px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mh-carbrands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 10px;
}

.mh-carbrand-chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.mh-carbrand-chip:hover {
  background: rgba(228,121,17,0.05);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228,121,17,0.11);
}
.mh-carbrand-monogram {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.mh-carbrand-chip:hover .mh-carbrand-monogram {
  background: rgba(228,121,17,0.1);
  border-color: rgba(228,121,17,0.25);
}
.mh-carbrand-initials {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.3px;
  transition: color 0.18s;
}
.mh-carbrand-chip:hover .mh-carbrand-initials { color: var(--orange); }
.mh-carbrand-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.mh-carbrand-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  transition: color 0.18s;
  letter-spacing: -0.1px;
}
.mh-carbrand-chip:hover .mh-carbrand-name { color: var(--orange); }

/* â”€â”€ FEATURED PRODUCTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-featured-section {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mh-featured-catalog-group {
  margin-bottom: 48px;
}
.mh-featured-catalog-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
}
.mh-featured-carousel-wrapper {
  position: relative;
}
.mh-featured-carousel-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mh-featured-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.mh-featured-carousel .mh-product-card {
  flex: 0 0 calc(20% - 13px);
  min-width: 0;
}
.mh-carousel-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 52px;
  border: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
}
.mh-carousel-prev { left: 0; background: linear-gradient(to right, var(--surface) 0%, transparent 100%); }
.mh-carousel-next { right: 0; background: linear-gradient(to left, var(--surface) 0%, transparent 100%); }
.mh-carousel-arrow svg {
  width: 28px;
  height: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 4px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.mh-carousel-arrow:hover svg { background: var(--orange); color: #fff; border-color: var(--orange); }
.mh-carousel-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

.mh-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.mh-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mh-product-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.mh-product-img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: var(--surface2);
  display: block;
}
.mh-product-img-placeholder {
  width: 100%;
  height: 190px;
  background: var(--surface2);
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 9px, rgba(0,0,0,.015) 9px, rgba(0,0,0,.015) 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-faint);
  font-size: 11px;
}
.mh-product-ph-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(var(--orange-rgb), .07);
  border: 1.5px solid rgba(var(--orange-rgb), .2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-product-ph-box span {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  font-family: ui-monospace, monospace;
}

.mh-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 9px;
  border-radius: 6px;
}
.mh-product-badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}

.mh-product-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.mh-product-brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.mh-product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}
.mh-product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.mh-product-price-old {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
  letter-spacing: 0;
}
.mh-product-offer-link {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.mh-product-footer {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.mh-btn-cart {
  flex: 1;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mh-btn-cart:hover { background: var(--orange-dark); }
.mh-btn-offer {
  flex: 1;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-btn-offer:hover { border-color: var(--orange); color: var(--orange); }

/* â”€â”€ TRUST BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-trust-section {
  padding: 72px 24px;
  background: var(--bg);
}

.mh-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mh-trust-item {
  background: var(--surface);
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mh-trust-icon {
  color: var(--orange);
  background: rgba(228,121,17,0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
}
.mh-trust-stat {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
}
.mh-trust-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* â”€â”€ BRANDS SECTION (parteneri) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-brands-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}

.mh-brands-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.mh-brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.mh-brand-chip {
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.mh-brand-chip:hover { transform: scale(1.08); }
.mh-brand-chip-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-faint);
  transition: color 0.2s;
}
.mh-brand-chip:hover .mh-brand-chip-name { color: var(--orange); }

/* partner image variant */
.mh-brand-chip-img {
  height: 36px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.2s;
}
.mh-brand-chip:hover .mh-brand-chip-img { filter: grayscale(0%) opacity(1); }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-footer {
  background: #0D1117;
  color: #8A9CB0;
  padding: 64px 24px 32px;
}

.mh-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mh-footer-logo-wrap { }
.mh-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 210px;
  color: #8A9CB0;
}

.mh-footer-social { display: flex; gap: 8px; }
.mh-footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8A9CB0;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.15s;
}
.mh-footer-social a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.mh-footer-col h4 {
  color: #F4F3F0;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mh-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mh-footer-links a {
  display: block;
  padding: 4px 0;
  margin: -4px 0;
  font-size: 14px;
  color: #8A9CB0;
  transition: color 0.15s;
}
.mh-footer-links a:hover { color: var(--orange); }

.mh-footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mh-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.mh-footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

.mh-footer-newsletter { margin-top: 28px; }
.mh-footer-newsletter p {
  font-size: 13px;
  font-weight: 600;
  color: #F4F3F0;
  margin-bottom: 10px;
}
.mh-newsletter-form { display: flex; gap: 6px; }
.mh-newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13px;
  color: #F4F3F0;
}
.mh-newsletter-btn {
  background: var(--orange);
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.mh-newsletter-btn:hover { background: var(--orange-dark); }

.mh-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.mh-footer-bottom-right { color: rgba(255,255,255,0.25); }

/* â”€â”€ CART DRAWER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mh-cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mh-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 95vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -16px 0 48px rgba(0,0,0,0.16);
}
.mh-cart-panel.open { transform: translateX(0); }

.mh-cart-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.mh-cart-header h3 {
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.mh-cart-header span {
  font-size: 12px;
  color: var(--text-muted);
}

.mh-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
}

.mh-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
  padding-bottom: 40px;
}
.mh-cart-empty svg { opacity: 0.2; }
.mh-cart-empty p:first-of-type { font-weight: 600; font-size: 15px; }
.mh-cart-empty p:last-of-type { font-size: 13px; }

.mh-cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.mh-cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}
.mh-cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.mh-cart-item-body { flex: 1; min-width: 0; }
.mh-cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.mh-cart-item-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mh-cart-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin: 2px 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mh-cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mh-qty-controls { display: flex; align-items: center; gap: 8px; }
.mh-qty-btn {
  width: 26px;
  height: 26px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  padding: 0;
}
.mh-qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.mh-qty-value { font-weight: 700; color: var(--text); font-size: 14px; min-width: 16px; text-align: center; }
.mh-cart-item-price { font-weight: 800; color: var(--orange); font-size: 16px; }
.mh-cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  padding: 3px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.mh-cart-item-remove:hover { color: #dc2626; background: rgba(220,38,38,0.08); }

.mh-cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mh-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.mh-cart-subtotal-label { font-weight: 600; font-size: 15px; color: var(--text); }
.mh-cart-subtotal-value { font-weight: 800; font-size: 22px; color: var(--orange); letter-spacing: -0.5px; }
.mh-btn-checkout {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.15s;
}
.mh-btn-checkout:hover { background: var(--orange-dark); color: #fff; }
.mh-btn-continue {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s;
}
.mh-btn-continue:hover { border-color: var(--orange); }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .mh-hero { padding: 60px 16px 72px; }
  .mh-hero h1 { letter-spacing: -0.5px; }
  .mh-hero-sub { font-size: 15px; margin-bottom: 32px; }
  .mh-vs-selects { gap: 8px; }
  .mh-vs-field { min-width: 100%; flex: none; }

  .mh-promo-slide { padding: 36px 24px; height: 260px; }
  .mh-promo-title { font-size: 24px; }
  .mh-categories-section { padding: 48px 16px; }
  .mh-carbrands-section { padding: 48px 16px; }
  .mh-featured-section { padding: 48px 16px; }
  .mh-featured-carousel .mh-product-card { flex: 0 0 calc(50% - 8px); }
  .mh-trust-section { padding: 48px 16px; }
  .mh-brands-section { padding: 40px 16px; }
  .mh-footer { padding: 48px 16px 24px; }
  .mh-footer-grid { gap: 32px; }
  .mh-header-inner { padding: 0 16px; }
  .mh-search-wrap { max-width: 100%; }
}

@media (max-width: 480px) {
  .mh-carbrands-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .mh-featured-carousel .mh-product-card { flex: 0 0 calc(100% - 0px); }
  .mh-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* â”€â”€ BRANDS PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-brands-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mh-brands-breadcrumb .mh-container { display: flex; align-items: center; gap: 8px; }
.mh-bc-link { color: var(--text-muted); transition: color 0.15s; }
.mh-bc-link:hover { color: var(--orange); }
.mh-bc-current { color: var(--text); font-weight: 600; }

.mh-brands-main { background: var(--bg); min-height: 70vh; padding: 28px 24px 60px; }

.mh-brands-hero { margin-bottom: 20px; }
.mh-brands-title { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--text); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 6px; }
.mh-brands-subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 520px; }

/* Pills */
.mh-brands-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.mh-brands-pill {
  padding: 8px 16px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.15s ease; text-decoration: none;
}
.mh-brands-pill:hover { border-color: var(--orange); color: var(--text); }
.mh-brands-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.mh-brands-pill-count {
  font-size: 11px; font-weight: 700; border-radius: 100px; padding: 1px 6px;
  background: rgba(0,0,0,0.1); color: inherit; transition: all 0.15s;
}
.mh-brands-pill.active .mh-brands-pill-count { background: rgba(255,255,255,0.25); }

/* Section bar */
.mh-brands-section-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mh-brands-section-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }
.mh-brands-section-count { font-size: 12px; color: var(--text-faint); }

/* Featured grid */
.mh-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}
.mh-brand-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 8px 14px;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.15s;
}
.mh-brand-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(228,121,17,0.16);
}
.mh-brand-card-logo {
  width: 100%; height: 62px;
  background: var(--surface2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: background 0.18s;
}
.mh-brand-card:hover .mh-brand-card-logo { background: rgba(228,121,17,0.06); }
.mh-brand-card-img { max-height: 48px; max-width: 80%; object-fit: contain; }
.mh-brand-card-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.mh-brand-card:hover .mh-brand-card-ring { border-color: rgba(228,121,17,0.35); background: rgba(228,121,17,0.08); transform: scale(1.06); }
.mh-brand-card-initials { font-size: 17px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-muted); transition: color 0.15s; }
.mh-brand-card:hover .mh-brand-card-initials { color: var(--orange); }
.mh-brand-card-name {
  font-size: 11px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.3px;
  text-align: center; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.15s;
}
.mh-brand-card:hover .mh-brand-card-name { color: var(--orange); }

.mh-brands-empty { text-align: center; padding: 64px 0; color: var(--text-muted); font-size: 15px; }

/* Toggle button */
.mh-brands-toggle-wrap { text-align: center; margin: 40px 0 0; }
.mh-brands-toggle-btn {
  background: var(--orange); color: #fff; border: none;
  border-radius: 14px; padding: 15px 36px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: -0.2px; transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(228,121,17,0.3);
}
.mh-brands-toggle-btn:hover { background: #cf6d10; }
.mh-brands-toggle-icon { transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }

/* All brands section */
.mh-all-brands-inner { padding-top: 40px; }
.mh-all-brands-divider { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.mh-divider-line { flex: 1; height: 1px; background: var(--border); }
.mh-divider-label { font-size: 12px; font-weight: 800; color: var(--text); letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }

.mh-all-brands-search-row { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.mh-all-brands-search-wrap { position: relative; flex: 1; min-width: 200px; max-width: 360px; }
.mh-all-brands-search-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.mh-all-brands-search-input {
  width: 100%; background: var(--surface);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 36px 10px 36px; font-size: 13px; color: var(--text);
  box-sizing: border-box;
}
.mh-all-brands-search-input:focus { outline: none; border-color: var(--orange); }
.mh-all-brands-search-clear { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--text-muted); display: flex; padding: 2px; }
.mh-all-brands-count { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mh-all-brands-noresult { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 14px; }

/* Alphabet groups */
.mh-brands-letter-group { margin-bottom: 28px; }
.mh-brands-letter { font-size: 12px; font-weight: 800; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.mh-brands-letter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.mh-brands-list-item {
  padding: 9px 14px; font-size: 13px; font-weight: 500;
  color: var(--text-muted); display: block;
  border-bottom: 1px solid var(--border);
  transition: color 0.12s, background 0.12s, padding-left 0.12s;
  text-decoration: none;
}
.mh-brands-list-item:hover { color: var(--orange); background: rgba(228,121,17,0.04); padding-left: 20px; }

/* Collapse button */
.mh-brands-collapse-wrap { text-align: center; padding-top: 16px; padding-bottom: 8px; }
.mh-brands-collapse-btn {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 12px 28px; font-size: 13px; font-weight: 700;
  cursor: pointer; color: var(--text);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.15s;
}
.mh-brands-collapse-btn:hover { border-color: var(--orange); color: var(--orange); }

@media (max-width: 768px) {
  .mh-brands-main { padding: 20px 16px 48px; }
  .mh-brands-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
}
@media (max-width: 480px) {
  .mh-brands-letter-grid { grid-template-columns: 1fr 1fr; }
}

/* â”€â”€ CATALOG CATEGORY PAGES (Ulei, Lichide, Electrice) â”€â”€ */

/* Tab-bar */
.mh-catalog-tabbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.mh-catalog-tabs {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
}
.mh-catalog-tab {
  padding: 16px 24px;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.mh-catalog-tab.active {
  border-bottom-color: var(--orange);
  color: var(--orange);
  font-weight: 700;
}
.mh-catalog-tab:hover:not(.active) { color: var(--text); }

/* Page layout */
.mh-catpage-main { background: var(--bg); min-height: 65vh; }
.mh-catpage-container { max-width: 1240px; margin: 0 auto; padding: 40px 24px 80px; }

/* Heading */
.mh-catpage-heading { margin-bottom: 32px; }
.mh-catpage-heading h1 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.mh-catpage-heading p { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

/* Cards grid */
.mh-catpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* Card */
.mh-catpage-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.15s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.mh-catpage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.mh-catpage-card-img {
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-catpage-card-img img { width: 100%; height: 100%; object-fit: cover; }
.mh-catpage-card-footer {
  padding: 14px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mh-catpage-card-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.35; }
.mh-catpage-card-arrow {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.mh-catpage-card:hover .mh-catpage-card-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Descriptive block */
.mh-catpage-desc {
  margin-top: 64px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.mh-catpage-desc h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.mh-catpage-desc p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.mh-catpage-desc ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.mh-catpage-desc ul li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.mh-catpage-desc ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 640px) {
  .mh-catpage-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .mh-catpage-desc { padding: 24px; }
  .mh-catpage-desc ul { grid-template-columns: 1fr; }
}

/* â”€â”€ CONTACT PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Hero */
.mh-contact-hero {
  background: #0D1117;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}
.mh-contact-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.mh-contact-hero-glow {
  position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 320px;
  background: radial-gradient(ellipse at center, rgba(228,121,17,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.mh-contact-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(228,121,17,0.12); border: 1px solid rgba(228,121,17,0.25);
  border-radius: 100px; padding: 5px 16px 5px 12px;
  font-size: 12px; color: #E47911; font-weight: 600; margin-bottom: 22px;
}
.mh-contact-hero-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; color: #F4F3F0;
  letter-spacing: -1.5px; line-height: 1.12; margin-bottom: 14px;
}
.mh-contact-hero-sub {
  font-size: 16px; color: #8A9CB0;
  max-width: 500px; margin: 0 auto; line-height: 1.7;
}

/* Info cards */
.mh-contact-cards-wrap {
  background: var(--bg);
  padding: 0 24px;
}
.mh-contact-cards {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  transform: translateY(-44px);
}
.mh-contact-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.15s;
}
.mh-contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 10px 36px rgba(228,121,17,0.13);
}
.mh-contact-card-icon {
  color: var(--orange);
  background: rgba(228,121,17,0.08);
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(228,121,17,0.15);
}
.mh-contact-card-label {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.2px;
}
.mh-contact-card-primary { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.mh-contact-card-secondary { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.mh-contact-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--orange);
  text-decoration: none; margin-top: 4px;
}

/* Main 2-col layout */
.mh-contact-main { padding: 0 24px 80px; background: var(--bg); }
.mh-contact-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 28px; align-items: start;
}

/* Form */
.mh-contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.mh-contact-form-title { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 6px; }
.mh-contact-form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.mh-contact-form { display: flex; flex-direction: column; gap: 18px; }
.mh-contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.mh-contact-field { display: flex; flex-direction: column; gap: 6px; }
.mh-contact-label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px;
}
.mh-contact-input {
  width: 100%;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px; font-family: inherit; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.mh-contact-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,121,17,0.14);
}
.mh-input-error { border-color: #ef4444 !important; }
.mh-contact-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.mh-contact-error { font-size: 11px; color: #ef4444; }
.mh-contact-checks { display: flex; flex-direction: column; gap: 10px; }
.mh-contact-form-footer {
  display: flex; align-items: center; gap: 14px; padding-top: 4px; flex-wrap: wrap;
}
.mh-contact-submit {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 10px; padding: 14px 32px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; letter-spacing: -0.2px; transition: opacity 0.15s;
}
.mh-contact-submit:hover { opacity: 0.9; }
.mh-contact-required-note { font-size: 12px; color: var(--text-faint); }
.mh-contact-alert {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 500; margin-bottom: 16px;
}
.mh-contact-alert-error { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }

/* Sidebar */
.mh-contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* WhatsApp card */
.mh-contact-wa {
  display: block; text-decoration: none;
  background: #25D366; border-radius: var(--radius);
  padding: 26px 24px; cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.15s;
}
.mh-contact-wa:hover {
  background: #1ebe5d;
  box-shadow: 0 14px 44px rgba(37,211,102,0.4);
  transform: translateY(-3px);
}
.mh-contact-wa-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.mh-contact-wa-icon { color: #fff; flex-shrink: 0; }
.mh-contact-wa-title { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.4px; }
.mh-contact-wa-sub { font-size: 12px; color: rgba(255,255,255,0.78); margin-top: 2px; }
.mh-contact-wa-text { font-size: 13px; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 18px; }
.mh-contact-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px; padding: 12px 18px;
  font-size: 14px; font-weight: 700; color: #fff;
}

/* Schedule card */
.mh-contact-schedule-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.mh-contact-schedule-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.mh-contact-schedule-head h4 { font-size: 14px; font-weight: 700; color: var(--text); margin: 0; }
.mh-contact-schedule-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
  flex-shrink: 0;
}
.mh-contact-schedule-rows { display: flex; flex-direction: column; }
.mh-contact-schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.mh-contact-schedule-row:last-child { border-bottom: none; }
.mh-contact-schedule-day { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mh-contact-schedule-hours { font-size: 13px; font-weight: 700; color: var(--text); }
.mh-schedule-closed { color: var(--text-faint); }
.mh-contact-schedule-content { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Map card */
.mh-contact-map-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mh-contact-map-embed iframe,
.mh-contact-map-embed > * { display: block; width: 100%; height: 190px; border: 0; }
.mh-contact-map-footer {
  padding: 14px 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.mh-contact-map-footer span { font-size: 13px; color: var(--text); font-weight: 500; flex: 1; }
.mh-contact-map-link {
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-decoration: none; white-space: nowrap;
}

/* Brands strip */
.mh-contact-brands {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 24px;
}
.mh-contact-brands-label {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 32px;
}
.mh-contact-brands-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 4px;
  max-width: 1240px; margin: 0 auto;
}
.mh-contact-brand-item {
  padding: 12px 28px; cursor: default;
  font-size: 18px; font-weight: 800; letter-spacing: -0.5px;
  color: var(--text-faint); transition: color 0.2s, transform 0.2s;
}
.mh-contact-brand-item:hover { color: var(--orange); transform: scale(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .mh-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mh-contact-form-row { grid-template-columns: 1fr; }
  .mh-contact-form-wrap { padding: 24px 18px; }
  .mh-contact-hero { padding: 40px 16px 60px; }
  .mh-contact-cards { transform: translateY(-28px); }
}

/* â”€â”€ CHECKOUT PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-checkout-main { background: var(--bg); padding: 36px 0 80px; min-height: 60vh; }
.mh-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.mh-checkout-left { min-width: 0; }
.mh-checkout-sidebar-wrap { position: sticky; top: 88px; }
.mh-checkout-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* Section card */
.mh-checkout-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.mh-checkout-section-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.mh-checkout-section-head h2 {
  font-size: 17px; font-weight: 800; color: var(--text);
  letter-spacing: -0.3px; margin: 0;
}
.mh-checkout-num {
  width: 30px; height: 30px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

/* Empty cart state */
.mh-checkout-empty { background: var(--bg); min-height: 50vh; }
.mh-checkout-empty-icon {
  width: 110px; height: 110px;
  margin: 0 auto 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
}
.mh-checkout-empty-title {
  font-size: 24px; font-weight: 800; color: var(--text);
  margin-bottom: 8px;
}
.mh-checkout-empty-text { font-size: 14px; color: var(--text-muted); }

/* Cart list */
.mh-cart-list { display: flex; flex-direction: column; }
.mh-cart-row {
  display: grid;
  grid-template-columns: 70px 1fr 120px 110px 36px;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mh-cart-row:first-child { padding-top: 0; }
.mh-cart-row:last-child { border-bottom: none; padding-bottom: 0; }
.mh-cart-img {
  width: 70px; height: 70px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mh-cart-img img { width: 100%; height: 100%; object-fit: contain; }
.mh-cart-info { min-width: 0; }
.mh-cart-brand {
  font-size: 11px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.mh-cart-name {
  font-size: 13px; font-weight: 600;
  color: var(--text); text-decoration: none;
  line-height: 1.4;
  display: block;
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}
.mh-cart-name:hover { color: var(--orange); }
.mh-cart-price-unit {
  font-size: 12px; color: var(--text-muted); margin-top: 4px;
}
.mh-cart-price-unit span { color: var(--text-faint); }
.mh-cart-qty-cell { display: flex; justify-content: center; }
.mh-cart-qty-controls {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}
.mh-qty-btn {
  width: 26px; height: 26px;
  background: transparent; border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s;
}
.mh-qty-btn:hover { background: var(--surface); }
.mh-qty-input {
  width: 38px; height: 28px;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  font-family: inherit;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
.mh-qty-input::-webkit-outer-spin-button,
.mh-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mh-cart-subtotal {
  text-align: right;
  font-size: 15px; font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.3px;
}
.mh-cart-subtotal span { font-size: 12px; font-weight: 500; color: var(--text-muted); }
.mh-cart-remove {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.mh-cart-remove:hover {
  background: #fef2f2; color: #ef4444; border-color: #fca5a5;
}

.mh-cart-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; gap: 12px; flex-wrap: wrap;
}
.mh-cart-saving {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-muted);
}
.mh-cart-saving svg { animation: mh-spin 0.8s linear infinite; }
@keyframes mh-spin { to { transform: rotate(360deg); } }
.mh-cart-continue {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.mh-cart-continue:hover { color: var(--orange); }

/* Account toggle */
.mh-account-toggle {
  background: var(--surface2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
#modern-homepage a.mh-account-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  padding: 5px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
#modern-homepage a.mh-account-link:hover {
  background: rgba(228,121,17,0.12);
  color: var(--orange);
}
.mh-account-passwords {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* Form fields */
.mh-checkout-field { display: flex; flex-direction: column; gap: 6px; }
.mh-checkout-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mh-label-optional {
  font-size: 10px; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--text-faint);
}
.mh-field-hint {
  font-size: 12px; color: var(--text-muted);
  margin-top: 6px; line-height: 1.5;
}
.mh-vin-counter {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px; font-weight: 700;
  color: var(--text-faint);
  pointer-events: none;
}

/* Radio pills (gender, invoice type) */
.mh-radio-row { display: flex; gap: 8px; }
.mh-radio-pill {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.mh-radio-pill input[type="radio"] { accent-color: var(--orange); }
.mh-radio-pill span { font-size: 14px; font-weight: 600; color: var(--text); }
.mh-radio-pill.active {
  background: rgba(228,121,17,0.08);
  border-color: var(--orange);
}
.mh-radio-pill.active span { color: var(--orange); }

/* Checkboxes (mh-check) */
.mh-check-row {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer;
  position: relative;
}
.mh-check-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 18px; height: 18px;
  margin: 0;
  cursor: pointer;
}
.mh-check-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 2px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
  margin-top: 1px;
}
.mh-check-row input[type="checkbox"]:checked + .mh-check-box {
  background: var(--orange);
  border-color: var(--orange);
}
.mh-check-row input[type="checkbox"]:checked + .mh-check-box::after {
  content: '';
  position: absolute;
  left: 4px; top: 0;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.mh-check-error { border-color: #ef4444; }
.mh-check-label {
  font-size: 13px; color: var(--text-muted); line-height: 1.55;
}
#modern-homepage .mh-check-label a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#modern-homepage .mh-check-label a:hover { color: var(--orange-dark); }

/* Company fields */
.mh-company-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
  padding: 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* Summary card */
.mh-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mh-summary-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.mh-summary-head h3 {
  font-size: 15px; font-weight: 800; color: var(--text);
  letter-spacing: -0.3px; margin: 0;
}
.mh-summary-items {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}
.mh-summary-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 8px;
}
.mh-summary-item-info { flex: 1; min-width: 0; }
.mh-summary-item-name {
  font-size: 12px; font-weight: 600; color: var(--text);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mh-summary-item-meta {
  font-size: 11px; color: var(--text-muted); margin-top: 1px;
}
.mh-summary-item-price {
  font-size: 13px; font-weight: 700; color: var(--text);
  flex-shrink: 0;
}
.mh-summary-totals { padding: 14px 20px; }
.mh-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 8px;
}
.mh-summary-value { font-weight: 600; color: var(--text); }
.mh-summary-total {
  padding: 14px 0 0;
  border-top: 2px solid var(--border);
  margin-top: 6px;
}
.mh-summary-total span:first-child { font-size: 16px; font-weight: 800; color: var(--text); }
.mh-summary-final {
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.5px;
}
.mh-summary-cur { font-size: 14px; font-weight: 500; }
.mh-summary-note {
  font-size: 11px; color: var(--text-muted);
  margin-top: 6px;
}

/* Sidebar cards (transport, payment, GDPR) */
.mh-side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.mh-side-title {
  font-size: 13px; font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 14px;
}

/* Transport options */
.mh-transport-options { display: flex; flex-direction: column; gap: 8px; }
.mh-transport-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.mh-transport-pill input[type="radio"] { display: none; }
.mh-transport-pill.active {
  background: rgba(228,121,17,0.07);
  border-color: var(--orange);
}
.mh-transport-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.mh-transport-pill.active .mh-transport-radio { border-color: var(--orange); }
.mh-transport-pill.active .mh-transport-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.mh-transport-icon {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.15s;
}
.mh-transport-pill.active .mh-transport-icon { color: var(--orange); }
.mh-transport-text { flex: 1; min-width: 0; }
.mh-transport-label {
  font-size: 13px; font-weight: 700; color: var(--text);
  transition: color 0.15s;
}
.mh-transport-pill.active .mh-transport-label { color: var(--orange); }

/* Payment options */
.mh-payment-options { display: flex; flex-direction: column; gap: 6px; }
.mh-payment-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
}
.mh-payment-row input[type="radio"] { display: none; }
.mh-payment-row.active {
  background: rgba(228,121,17,0.07);
  border-color: var(--orange);
}
.mh-payment-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.mh-payment-row.active .mh-payment-radio { border-color: var(--orange); }
.mh-payment-row.active .mh-payment-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.mh-payment-icon { color: var(--text-muted); flex-shrink: 0; }
.mh-payment-row.active .mh-payment-icon { color: var(--orange); }
.mh-payment-label {
  font-size: 13px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.mh-payment-row.active .mh-payment-label { color: var(--orange); }
.mh-payment-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.mh-payment-badge {
  font-size: 10px; font-weight: 700;
  background: var(--surface2);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.mh-payment-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.mh-payment-disabled:hover { background: transparent; border-color: var(--border); }

/* GDPR + Submit */
.mh-gdpr-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.mh-checkout-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px; font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  letter-spacing: -0.3px;
  transition: all 0.15s;
  box-shadow: 0 6px 20px rgba(228,121,17,0.3);
}
.mh-checkout-submit:hover { opacity: 0.95; }
.mh-checkout-disclaimer {
  font-size: 11px; color: var(--text-muted);
  text-align: center; margin-top: 10px; line-height: 1.5;
}

/* Responsive */
@media (max-width: 980px) {
  .mh-checkout-grid { grid-template-columns: 1fr; }
  .mh-checkout-sidebar-wrap { position: static; }
}
@media (max-width: 640px) {
  .mh-checkout-section { padding: 22px 18px 18px; }
  .mh-checkout-form-row { grid-template-columns: 1fr; }
  .mh-company-fields { grid-template-columns: 1fr; padding: 14px; }
  .mh-account-passwords { grid-template-columns: 1fr; }
  .mh-cart-row {
    grid-template-columns: 60px 1fr 32px;
    grid-template-areas:
      "img info remove"
      "img qty  qty"
      "img sub  sub";
    gap: 8px;
  }
  .mh-cart-img { grid-area: img; width: 60px; height: 60px; }
  .mh-cart-info { grid-area: info; }
  .mh-cart-qty-cell { grid-area: qty; justify-content: flex-start; padding-top: 4px; }
  .mh-cart-subtotal { grid-area: sub; text-align: left; padding-top: 2px; }
  .mh-cart-remove { grid-area: remove; }
}


/* â”€â”€ AUTH PAGES (Login & Register) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.mh-auth-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: var(--bg);
}

.mh-auth-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
}

.mh-auth-card--wide {
  max-width: 560px;
}

.mh-auth-head {
  text-align: center;
  margin-bottom: 28px;
}

.mh-auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin: 0 0 6px 0;
}

.mh-auth-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.mh-auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.mh-auth-alert--error {
  background: #fff1f0;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

.mh-auth-alert svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.mh-auth-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mh-auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mh-auth-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.mh-auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.mh-auth-input-wrap .mh-auth-input {
  padding-right: 42px;
}
.mh-pw-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  line-height: 1;
}
.mh-pw-toggle:hover {
  color: var(--orange);
}
/* Suppress native browser password reveal button (Edge ::-ms-reveal, Chrome autofill) */
.mh-auth-input--pw::-ms-reveal,
.mh-auth-input--pw::-ms-clear {
  display: none;
}
.mh-auth-input--pw::-webkit-credentials-auto-fill-button,
.mh-auth-input--pw::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
}

.mh-auth-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#modern-homepage .mh-auth-input:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(228, 121, 17, 0.14) !important;
}

.mh-auth-select-wrap {
  position: relative;
}

.mh-auth-select {
  width: 100%;
  padding: 11px 36px 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

#modern-homepage .mh-auth-select:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(228, 121, 17, 0.14) !important;
}

.mh-auth-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.mh-auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mh-auth-field-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

.mh-forgot-link {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}

#modern-homepage a.mh-forgot-link:hover {
  text-decoration: underline;
  color: var(--orange);
}

.mh-auth-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, opacity 0.15s;
  margin-top: 4px;
}

.mh-auth-submit:hover:not(:disabled) {
  background: var(--orange-dark);
}

.mh-auth-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mh-auth-agreements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.mh-auth-agreement-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
}

.mh-auth-cb {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

#modern-homepage .mh-auth-agreements a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

#modern-homepage .mh-auth-agreements a:hover {
  text-decoration: underline;
  color: var(--orange);
}

.mh-auth-card-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0 20px;
}

.mh-auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

#modern-homepage .mh-auth-footer a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

#modern-homepage .mh-auth-footer a:hover {
  text-decoration: underline;
  color: var(--orange);
}

.mh-auth-required-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

@media (max-width: 600px) {
  .mh-auth-card {
    padding: 28px 20px;
  }
  .mh-auth-form-row {
    grid-template-columns: 1fr;
  }
}


/* â”€â”€ WISHLIST / FAVORITES PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Empty state */
.mh-wishlist-empty {
  min-height: 55vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--bg);
}
.mh-wishlist-empty-icon {
  width: 100px; height: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  margin: 0 auto 24px;
}
.mh-wishlist-empty-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); margin: 0 0 10px;
}
.mh-wishlist-empty-text {
  font-size: 14px; color: var(--text-muted); margin: 0 0 28px;
}
.mh-wishlist-empty-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  border-radius: 10px; padding: 13px 28px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity 0.15s;
}
.mh-wishlist-empty-btn:hover { opacity: 0.85; color: #fff; }

/* Main wrapper */
.mh-wishlist-main {
  background: var(--bg);
  padding: 0 0 80px;
  min-height: 50vh;
}
.mh-wishlist-main .mh-container {
  max-width: 1300px;
  padding-left: 40px;
  padding-right: 40px;
}

/* Toolbar */
.mh-wishlist-toolbar {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.mh-wishlist-title {
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -0.4px; margin: 0;
}
.mh-wishlist-count {
  font-size: 14px; font-weight: 400;
  color: var(--text-muted); margin-left: 8px;
}
.mh-wishlist-controls {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
}

/* Sort dropdown */
.mh-wishlist-sort-wrap {
  position: relative;
  display: flex; align-items: center;
}
.mh-wishlist-sort-select {
  appearance: none; -webkit-appearance: none;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 8px 38px 8px 14px;
  font-size: 13px; font-weight: 600;
  font-family: inherit; color: var(--text);
  cursor: pointer; outline: none;
  transition: border-color 0.15s;
}
.mh-wishlist-sort-select:focus { border-color: var(--orange); }
.mh-wishlist-sort-arrow {
  position: absolute; right: 12px;
  pointer-events: none; color: var(--text-muted);
}

/* View toggle */
.mh-view-toggle {
  display: flex;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9px; padding: 3px; gap: 2px;
}
.mh-view-btn {
  background: transparent; border: none;
  border-radius: 7px; padding: 6px 10px;
  display: flex; align-items: center;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.15s;
}
.mh-view-btn.active {
  background: var(--surface); color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Bulk action buttons */
.mh-wishlist-bulk-cart {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 9px;
  padding: 9px 16px;
  font-size: 13px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: opacity 0.15s; white-space: nowrap;
}
.mh-wishlist-bulk-cart:hover { opacity: 0.85; }
.mh-wishlist-bulk-cart:disabled { opacity: 0.5; cursor: not-allowed; }
.mh-wishlist-bulk-del {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 9px; padding: 9px 16px;
  font-size: 13px; font-weight: 600;
  font-family: inherit; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.mh-wishlist-bulk-del:hover {
  background: #fef2f2; color: #ef4444; border-color: #fca5a5;
}
.mh-wishlist-bulk-del:disabled { opacity: 0.5; cursor: not-allowed; }

/* Product grid */
.mh-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* â”€â”€ GRID CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-wishlist-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius, 14px); overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, opacity 0.3s;
  box-shadow: var(--shadow-sm);
}
.mh-wishlist-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(228,121,17,0.12);
}
.mh-wishlist-removing {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}

/* Heart button â€” top right, grid only */
.mh-wishlist-heart-btn {
  position: absolute; top: 6px; right: 6px; z-index: 2;
  width: 30px; height: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
  color: var(--orange);
}
.mh-wishlist-heart-btn:hover {
  background: #fff5f5; border-color: #ef4444; color: #ef4444;
}
.mh-wishlist-heart-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Card image â€” grid */
.mh-wishlist-img-wrap {
  display: block;
  height: 160px;
  background: var(--surface2);
  overflow: hidden; flex-shrink: 0;
}
.mh-wishlist-img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.mh-wishlist-card:hover .mh-wishlist-img { transform: scale(1.04); }

/* Card body â€” grid */
.mh-wishlist-info {
  padding: 12px 14px 14px;
  flex: 1; display: flex; flex-direction: column; gap: 5px;
}
.mh-wishlist-brand {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--orange);
}
.mh-wishlist-name {
  font-size: 13px; font-weight: 500;
  color: var(--text); text-decoration: none; line-height: 1.4;
  flex: 1; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.mh-wishlist-name:hover { color: var(--orange); }

/* Grid: price + cart btn side by side */
.mh-wishlist-grid-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  margin-top: 8px;
}
.mh-wishlist-price {
  font-size: 18px; font-weight: 800;
  color: var(--orange); letter-spacing: -0.4px;
  white-space: nowrap;
}
.mh-wishlist-price-currency {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted); margin-left: 2px;
}

/* Grid cart button */
.mh-wishlist-cart-btn {
  display: flex; align-items: center;
  justify-content: center; gap: 5px;
  background: var(--surface2); color: var(--text);
  border: 1px solid var(--border);
  border-radius: 7px; padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.mh-wishlist-card:hover .mh-wishlist-cart-btn {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.mh-wishlist-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Grid: hide list-only elements */
.mh-wishlist-actions { display: none; }
.mh-wishlist-price-wrap { display: none; }

/* â”€â”€ LIST VIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-wishlist-list-view {
  grid-template-columns: 1fr !important;
  gap: 10px;
}
.mh-wishlist-list-view .mh-wishlist-card {
  flex-direction: row; align-items: center;
  gap: 16px;
  padding: 14px 18px 14px 16px;
  border-radius: var(--radius, 14px);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  overflow: visible;
  box-shadow: var(--shadow-sm);
}
.mh-wishlist-list-view .mh-wishlist-card:hover {
  border-left-color: var(--orange);
  transform: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Hide heart button in list, show del-btn */
.mh-wishlist-list-view .mh-wishlist-heart-btn { display: none; }
.mh-wishlist-list-view .mh-wishlist-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: 8px;
}

/* List image */
.mh-wishlist-list-view .mh-wishlist-img-wrap {
  width: 72px; height: 72px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px; flex-shrink: 0;
  overflow: hidden;
}

/* List info column */
.mh-wishlist-list-view .mh-wishlist-info {
  flex: 1; min-width: 0;
  padding: 0; gap: 4px;
  flex-direction: column; align-items: flex-start;
}
.mh-wishlist-list-view .mh-wishlist-brand {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--orange);
}
.mh-wishlist-list-view .mh-wishlist-name {
  font-size: 14px; font-weight: 500;
  -webkit-line-clamp: 1; flex: unset;
}
.mh-wishlist-subcategory {
  font-size: 11px; color: var(--text-muted); font-weight: 500;
}

/* List price block â€” separate from info, right-aligned */
.mh-wishlist-list-view .mh-wishlist-price-wrap {
  display: block;
  flex-shrink: 0; text-align: right; margin-left: 8px;
}
.mh-wishlist-list-view .mh-wishlist-grid-foot { display: none; }
.mh-wishlist-price-main {
  font-size: 20px; font-weight: 800;
  color: var(--orange); letter-spacing: -0.5px; display: block;
}
.mh-wishlist-price-vat {
  font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px;
}

/* List cart button */
.mh-wishlist-list-view .mh-wishlist-cart-btn {
  background: var(--orange); color: #fff;
  border: 1px solid var(--orange);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 600;
}
.mh-wishlist-list-view .mh-wishlist-card:hover .mh-wishlist-cart-btn {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* List del button */
.mh-wishlist-del-btn {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s;
}
.mh-wishlist-del-btn:hover {
  background: #fff5f5; color: #ef4444; border-color: #ef4444;
}
.mh-wishlist-del-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Bottom bar */
.mh-wishlist-bottom-bar {
  display: flex; align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 28px;
  gap: 16px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.mh-wishlist-bottom-info {
  display: flex; flex-direction: column; gap: 4px;
}
.mh-wishlist-bottom-title {
  font-size: 16px; font-weight: 800; color: var(--text);
}
.mh-wishlist-bottom-meta {
  font-size: 13px; color: var(--text-muted);
}
.mh-wishlist-total-orange {
  color: var(--orange); font-weight: 700;
}

/* Toast */
.mh-toast-container {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column;
  gap: 10px; pointer-events: none;
}
.mh-toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 18px;
  font-size: 13px; font-weight: 600; color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 300px;
}
.mh-toast.show { opacity: 1; transform: translateY(0); }
.mh-toast--success { border-left: 3px solid #22c55e; }
.mh-toast--error   { border-left: 3px solid #ef4444; }

/* Responsive */
@media (max-width: 800px) {
  .mh-wishlist-toolbar { flex-direction: column; align-items: flex-start; }
  .mh-wishlist-controls { width: 100%; justify-content: flex-start; }
  .mh-wishlist-bottom-bar { flex-direction: column; align-items: flex-start; }
  .mh-wishlist-bottom-bar .mh-wishlist-bulk-cart { width: 100%; justify-content: center; }
  .mh-wishlist-list-view .mh-wishlist-price-wrap { display: none; }
  .mh-wishlist-list-view .mh-wishlist-grid-foot { display: flex !important; }
}
@media (max-width: 480px) {
  .mh-wishlist-list-view .mh-wishlist-card { gap: 10px; padding: 10px 12px; }
  .mh-toast-container { bottom: 16px; right: 12px; left: 12px; }
  .mh-toast { max-width: 100%; }
}

/* â”€â”€ OFERTE & REDUCERI â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mh-offers-section {
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mh-offers-wrap {
  position: relative;
}
.mh-offers-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mh-offers-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.mh-product-card--offer {
  flex: 0 0 calc(20% - 13px);
  min-width: 0;
  position: relative;
}

.mh-offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  pointer-events: none;
}

.mh-offers-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 52px;
  border: none;
  background: transparent;
  color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
}
.mh-offers-prev { left: 0; background: linear-gradient(to right, var(--surface) 0%, transparent 100%); }
.mh-offers-next { right: 0; background: linear-gradient(to left, var(--surface) 0%, transparent 100%); }
.mh-offers-arrow svg {
  width: 28px;
  height: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 4px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.mh-offers-arrow:hover svg { background: var(--orange); color: #fff; border-color: var(--orange); }
.mh-offers-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

@media (max-width: 1024px) {
  #mhCatGrid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  #mhCatGrid { grid-template-columns: repeat(2, 1fr); }
  .mh-expand-sub-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CONTUL MEU — identic cu Claude Design
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper ─────────────────────────────────────────────── */
.mh-account-wrap {
  display: flex;
  flex: 1;
  min-height: 0;
}

/* ── SIDEBAR — dark permanent (#0D1117) ──────────────────── */
.mh-account-sidebar {
  width: 256px;
  flex-shrink: 0;
  background: #0D1117;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.mh-account-sidebar-user {
  padding: 24px 18px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mh-account-sidebar-user-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mh-account-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.mh-account-sidebar-name {
  font-size: 13px;
  font-weight: 700;
  color: #F4F3F0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mh-account-sidebar-email {
  font-size: 11px;
  color: #8A9CB0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 1px;
}

.mh-account-nav {
  flex: 1;
  padding: 10px 8px;
  color: #8A9CB0;
}

.mh-account-nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #8A9CB0 !important;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  margin-bottom: 1px;
  cursor: pointer;
  text-align: left;
  text-decoration: none !important;
  transition: all 0.15s;
}
.mh-account-nav-item:hover {
  background: rgba(255,255,255,0.04);
  color: #D0D8E4 !important;
}
.mh-account-nav-item.active {
  background: rgba(228,121,17,0.15);
  color: var(--orange) !important;
  border-left-color: var(--orange);
  font-weight: 600;
}
.mh-account-nav-item--subtle { color: #4A5568 !important; }
.mh-account-nav-item--subtle:hover { color: #8A9CB0 !important; }
.mh-account-nav-item--subtle.active { color: var(--orange) !important; }

.mh-account-nav-badge {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 100px;
  margin-left: auto;
}

.mh-account-sidebar-footer {
  padding: 8px 8px 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mh-account-logout {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #6B7280 !important;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: none !important;
  transition: all 0.15s;
}
.mh-account-logout:hover {
  background: rgba(239,68,68,0.08);
  color: #ef4444 !important;
}

/* ── MAIN CONTENT ────────────────────────────────────────── */
.mh-account-main {
  flex: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

.mh-account-breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 13px 36px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.mh-account-breadcrumb a { text-decoration: none; }
.mh-account-breadcrumb a:hover { text-decoration: underline; }

/* ── PAGE ────────────────────────────────────────────────── */
.mh-acct-page {
  flex: 1;
  padding: 36px;
  width: 100%;
}

.mh-acct-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.mh-acct-subtitle { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.mh-acct-heading { margin-bottom: 28px; }

.mh-acct-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CARD ────────────────────────────────────────────────── */
.mh-acct-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mh-acct-list { display: flex; flex-direction: column; gap: 10px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.mh-acct-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: -0.2px;
}
.mh-acct-btn-primary:hover { background: var(--orange-dark); color: #fff; }

.mh-acct-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.mh-acct-btn-sm:hover { border-color: var(--orange); color: var(--orange); background: var(--surface2); }

.mh-acct-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.mh-acct-btn-ghost:hover { color: var(--text); }

.mh-acct-btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,0.06);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.mh-acct-btn-danger:hover { background: rgba(239,68,68,0.12); }

.mh-acct-btn-danger-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239,68,68,0.06);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}
.mh-acct-btn-danger-sm:hover { background: rgba(239,68,68,0.12); }
.mh-acct-btn-danger-sm form,
.mh-acct-btn-danger-sm button,
.mh-acct-btn-danger-sm input[type="submit"] {
  background: none; border: none; color: inherit; font: inherit; cursor: pointer; padding: 0; margin: 0;
}

/* ── STATUS BADGE ────────────────────────────────────────── */
.mh-acct-status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.mh-acct-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-muted);
}
.mh-acct-empty-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--surface2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--text-faint);
}
.mh-acct-empty-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.mh-acct-empty-sub { font-size: 14px; margin-bottom: 22px; }

/* ── DASHBOARD ───────────────────────────────────────────── */
.mh-acct-dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.mh-acct-dash-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--text);
  text-align: left;
  width: 100%;
}
.mh-acct-dash-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,121,17,0.12);
}
.mh-acct-dash-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--text-muted); transition: all 0.2s;
}
.mh-acct-dash-card:hover .mh-acct-dash-icon { background: rgba(228,121,17,0.1); color: var(--orange); }
.mh-acct-dash-body { flex: 1; }
.mh-acct-dash-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; transition: color 0.2s; }
.mh-acct-dash-sub { font-size: 12px; color: var(--text-muted); }
.mh-acct-dash-card:hover .mh-acct-dash-label { color: var(--orange); }
.mh-acct-dash-arrow { color: var(--text-faint); transition: all 0.2s; flex-shrink: 0; }
.mh-acct-dash-card:hover .mh-acct-dash-arrow { color: var(--orange); transform: translateX(3px); }

/* Last order */
.mh-acct-last-order {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mh-acct-section-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 14px 20px 10px; border-bottom: 1px solid var(--border);
}

/* ── ORDERS ──────────────────────────────────────────────── */
.mh-acct-order-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 16px 20px;
}
.mh-acct-order-num {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--text-muted); flex-shrink: 0;
}
.mh-acct-order-info { flex: 1; min-width: 140px; }
.mh-acct-order-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 300px; }
.mh-acct-order-date { font-size: 12px; color: var(--text-muted); }
.mh-acct-order-total { font-size: 17px; font-weight: 800; color: var(--orange); letter-spacing: -0.3px; }
.mh-acct-order-total small { font-size: 12px; font-weight: 600; }
.mh-acct-order-transport { font-size: 11px; color: var(--text-muted); display: block; }
.mh-acct-order-total-col { text-align: right; flex-shrink: 0; }
.mh-acct-orders-list { display: flex; flex-direction: column; gap: 10px; }
.mh-acct-order-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.mh-acct-order-card-main { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 16px 20px; }
.mh-acct-toggle-icon { transition: transform 0.2s; }
.mh-acct-order-details { border-top: 1px solid var(--border); padding: 16px 20px; background: var(--bg); }
.mh-acct-order-details-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 12px; }
.mh-acct-order-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.mh-acct-order-item:last-child { border-bottom: none; }
.mh-acct-order-item-thumb { width: 38px; height: 38px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text-faint); }
.mh-acct-order-item-name { font-size: 13px; color: var(--text); flex: 1; }
.mh-acct-order-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* ── PROFILE card ────────────────────────────────────────── */
.mh-acct-profile-header {
  background: linear-gradient(135deg, #0D1117 0%, #1a2332 100%);
  padding: 30px 26px;
  display: flex; align-items: center; gap: 18px;
}
.mh-acct-profile-avatar {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--orange); border: 3px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.mh-acct-profile-name { font-size: 19px; font-weight: 800; color: #F4F3F0; letter-spacing: -0.3px; }
.mh-acct-profile-since { font-size: 12px; color: #8A9CB0; margin-top: 4px; }
.mh-acct-info-rows { display: flex; flex-direction: column; }
.mh-acct-info-row { display: flex; justify-content: space-between; align-items: center; padding: 15px 26px; border-bottom: 1px solid var(--border); }
.mh-acct-info-row:last-child { border-bottom: none; }
.mh-acct-info-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mh-acct-info-value { font-size: 14px; font-weight: 600; color: var(--text); }

/* ── EDIT FORM ───────────────────────────────────────────── */
.mh-acct-form { width: 100%; }
.mh-acct-form-section-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.mh-acct-field-group { margin-bottom: 14px; }
.mh-acct-field-group--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mh-acct-field { display: flex; flex-direction: column; gap: 6px; }
.mh-acct-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.7px; display: block; margin-bottom: 6px; }
.mh-acct-input { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 14px; font-size: 14px; color: var(--text); font-family: inherit; outline: none; transition: all 0.15s; }
.mh-acct-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,121,17,0.12); }
.mh-acct-error { font-size: 12px; color: #ef4444; }
.mh-acct-divider { height: 1px; background: var(--border); margin: 10px 0 26px; }
.mh-acct-form-actions { display: flex; gap: 10px; margin-top: 8px; }

/* ── ADDRESSES ───────────────────────────────────────────── */
.mh-acct-address-card { display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px; }
.mh-acct-address-icon { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.mh-acct-address-body { flex: 1; }
.mh-acct-address-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.mh-acct-address-detail { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.mh-acct-address-actions { display: flex; gap: 7px; flex-shrink: 0; flex-wrap: wrap; align-items: flex-start; }

/* ── CARS ────────────────────────────────────────────────── */
.mh-acct-car-card { display: flex; align-items: center; gap: 18px; padding: 20px 22px; }
.mh-acct-car-badge {
  width: 54px; height: 54px; border-radius: 14px;
  background: #0D1117; border: 2px solid rgba(228,121,17,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: -0.5px; flex-shrink: 0;
}
.mh-acct-car-body { flex: 1; min-width: 0; }
.mh-acct-car-title { font-weight: 800; font-size: 16px; color: var(--text); margin-bottom: 4px; letter-spacing: -0.3px; }
.mh-acct-car-sub { font-size: 13px; color: var(--text-muted); }
.mh-acct-car-vin { font-size: 11px; color: var(--text-faint); margin-top: 3px; }
.mh-acct-car-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }

/* ── MODELS PAGE (selectează modelul) ──────────────────────── */
.mh-models-main { background: var(--bg); min-height: 72vh; }

.mh-models-hero {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.mh-models-brand-badge {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  background: var(--surface); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mh-models-brand-img { width: 44px; height: 44px; object-fit: contain; }
.mh-models-brand-monogram { font-size: 14px; font-weight: 800; letter-spacing: -0.5px; color: var(--orange); }
.mh-models-hero-text { min-width: 0; }
.mh-models-title { font-size: clamp(22px,3vw,30px); font-weight: 800; color: var(--text); letter-spacing: -0.8px; line-height: 1.1; }
.mh-models-subtitle { font-size: 13.5px; color: var(--text-muted); line-height: 1.4; margin-top: 2px; }

.mh-models-search-row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 18px;
}
.mh-models-search-wrap {
  position: relative; flex: 1 1 320px; max-width: 480px;
}
.mh-models-search-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.mh-models-search-input {
  width: 100%; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 40px 11px 40px; font-size: 14px;
  color: var(--text); font-family: inherit; outline: none;
  box-shadow: var(--shadow-sm); transition: border-color 0.15s, box-shadow 0.15s;
}
.mh-models-search-input:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,121,17,0.15);
}
.mh-models-search-clear {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  background: var(--surface2); border: none; border-radius: 6px; cursor: pointer;
  color: var(--text-muted); display: flex; padding: 5px;
}
.mh-models-count {
  font-size: 12.5px; color: var(--text-faint); white-space: nowrap;
}

/* Grid */
.mh-models-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(244px, 1fr)); gap: 10px;
}

/* Model card — horizontal: photo left (full height) + fade right + text right */
.mh-model-card {
  cursor: pointer; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.18s, transform 0.15s;
  display: flex; flex-direction: row; align-items: stretch;
  height: 100px; overflow: hidden; position: relative;
}
.mh-model-card:hover {
  border-color: var(--orange); box-shadow: 0 6px 20px rgba(228,121,17,0.13);
  transform: translateY(-2px);
}
.mh-model-card.active {
  border-color: var(--orange); box-shadow: 0 6px 20px rgba(228,121,17,0.13);
  transform: none; z-index: 60;
}

/* Photo wrap — left side, fixed width, full card height */
.mh-model-card-img-wrap {
  position: relative; width: 160px; flex-shrink: 0;
  background: var(--surface2); overflow: hidden;
}
.mh-model-card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.3s ease;
}
.mh-model-card:hover .mh-model-card-img { transform: scale(1.06); }
.mh-model-card-img-empty {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}

/* Fade — right edge of photo → surface */
.mh-model-card-fade {
  position: absolute; top: 0; right: 0; bottom: 0; width: 48px;
  background: linear-gradient(to right, transparent, var(--surface));
  pointer-events: none;
}

/* Text + chevron — right side */
.mh-model-card-footer {
  flex: 1; min-width: 0; padding: 0 12px 0 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: var(--surface);
}
.mh-model-card-text { flex: 1; min-width: 0; }
.mh-model-card-name {
  font-size: 15px; font-weight: 800; letter-spacing: -0.3px;
  color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.15s;
}
.mh-model-card:hover .mh-model-card-name,
.mh-model-card.active .mh-model-card-name { color: var(--orange); }
.mh-model-card-sub { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.mh-model-card-chevron {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 7px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.15s;
}
.mh-model-card:hover .mh-model-card-chevron,
.mh-model-card.active .mh-model-card-chevron {
  border-color: var(--orange); color: var(--orange);
}
.mh-model-chevron-icon { transition: transform 0.25s ease; }

/* Popover — generations */
.mh-model-popover {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 62;
  background: var(--surface); border: 1.5px solid var(--orange); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  animation: mhGenIn 0.18s ease both;
}
@keyframes mhGenIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.mh-model-popover-header {
  padding: 9px 13px; border-bottom: 1px solid var(--border);
  background: var(--surface2);
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); display: flex; align-items: center; gap: 7px;
}
.mh-model-popover-list { max-height: 248px; overflow-y: auto; padding: 4px; }
.mh-model-gen-row {
  display: flex; align-items: center; gap: 10px; border-radius: 8px;
  padding: 9px 11px; cursor: pointer; transition: background 0.12s;
  text-decoration: none; color: inherit;
}
.mh-model-gen-row:hover { background: rgba(228,121,17,0.07); }
.mh-model-gen-code {
  flex: 1; font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mh-model-gen-years { font-size: 11.5px; color: var(--text-muted); flex-shrink: 0; }

@media (max-width: 600px) {
  .mh-models-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .mh-models-search-wrap { max-width: 100%; }
}

/* ── TYPES PAGE (selectează motorizarea) ───────────────────── */

/* Main layout */
.mh-types-main { background: var(--bg); min-height: 72vh; padding: 18px 24px 56px; }
.mh-types-container { /* inherits max-width:1240px and margin:0 auto from mh-container */ }
@media (max-width: 600px) { .mh-types-main { padding: 12px 16px 40px; } }

/* Fuel color tokens */
:root {
  --mh-fuel-petrol:  oklch(0.58 0.12 150);
  --mh-fuel-diesel:  oklch(0.56 0.12 250);
  --mh-fuel-hybrid:  oklch(0.60 0.12 300);
  --mh-fuel-electric:oklch(0.62 0.14 200);
  --mh-fuel-gpl:     oklch(0.62 0.12  85);
}
html.dark {
  --mh-fuel-petrol:  oklch(0.72 0.13 150);
  --mh-fuel-diesel:  oklch(0.70 0.12 250);
  --mh-fuel-hybrid:  oklch(0.74 0.12 300);
  --mh-fuel-electric:oklch(0.76 0.14 200);
  --mh-fuel-gpl:     oklch(0.76 0.12  85);
}

/* Hero — light surface so white-bg car photos blend in naturally */
.mh-types-hero {
  position: relative; border-radius: calc(var(--radius) + 4px); overflow: hidden;
  background: linear-gradient(115deg, #FFFFFF 0%, #FAFAF9 52%, #FBF4EC 100%);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-md); margin-bottom: 18px;
}
html.dark .mh-types-hero {
  background: linear-gradient(115deg, #1C1C1A 0%, #1A1A18 52%, #211C16 100%);
  border-color: var(--border);
}
.mh-types-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
}
.mh-types-hero-glow--orange { background: radial-gradient(120% 140% at 88% 28%, rgba(228,121,17,0.13), transparent 56%); }
.mh-types-hero-glow--white  { background: radial-gradient(80% 120% at 8% 100%, rgba(228,121,17,0.05), transparent 60%); }
.mh-types-hero-road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(17,17,16,0.022) 60px 64px);
  mask-image: linear-gradient(to top, #000, transparent);
  -webkit-mask-image: linear-gradient(to top, #000, transparent);
}
html.dark .mh-types-hero-road {
  background: repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.025) 60px 64px);
}
.mh-types-hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 1.15fr;
  gap: 16px; align-items: center; padding: 30px; min-height: 236px;
}
@media (max-width: 720px) {
  .mh-types-hero-grid { grid-template-columns: 1fr; }
  .mh-types-hero-right { display: none; }
}

/* Hero left */
.mh-types-hero-left { min-width: 0; z-index: 2; }
.mh-types-hero-step {
  display: flex; align-items: center; gap: 9px; margin-bottom: 12px;
  animation: mhWordUp 0.5s ease both;
}
@keyframes mhWordUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform:none; } }
.mh-types-hero-brand-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  font-size: 10px; font-weight: 800; color: var(--text); letter-spacing: -0.5px;
}
.mh-types-hero-step-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--orange);
}
.mh-types-hero-title {
  font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--text);
  letter-spacing: -1.4px; line-height: 0.98;
  animation: mhWordUp 0.55s ease both 0.06s;
}
.mh-types-hero-subtitle {
  font-size: clamp(15px, 2vw, 19px); font-weight: 600;
  color: var(--text-muted); margin-top: 5px; letter-spacing: -0.3px;
  animation: mhWordUp 0.55s ease both 0.12s;
}
.mh-types-hero-meta {
  display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px;
  animation: mhWordUp 0.55s ease both 0.20s;
}
.mh-types-hero-chip {
  font-size: 12px; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 12px; box-shadow: var(--shadow-sm);
}
.mh-types-hero-hint {
  font-size: 13.5px; color: var(--text-muted); margin-top: 16px;
  max-width: 340px; line-height: 1.5; animation: mhWordUp 0.55s ease both 0.28s;
}

/* Hero right — car image */
.mh-types-hero-right {
  position: relative; height: 200px;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
/* Soft contact shadow under car — subtle on light bg */
.mh-types-hero-shadow {
  position: absolute; bottom: 22px; left: 14%; right: 12%; height: 18px;
  border-radius: 50%;
  background: radial-gradient(50% 60% at 50% 50%, rgba(17,17,16,0.16), transparent 72%);
  filter: blur(7px);
  animation: mhShadowIn 0.9s cubic-bezier(0.16,0.84,0.3,1) both 0.1s;
}
html.dark .mh-types-hero-shadow {
  background: radial-gradient(50% 60% at 50% 50%, rgba(0,0,0,0.5), transparent 75%);
}
@keyframes mhShadowIn {
  0%   { opacity:0; transform: translateX(100px) scaleX(0.5); }
  55%  { opacity:0.5; transform: translateX(-6px) scaleX(1.04); }
  100% { opacity:0.55; transform: translateX(0) scaleX(1); }
}
/* Car wrapper — 3D perspective for drive-in */
.mh-types-hero-car {
  position: relative; width: 100%; max-width: 500px;
  perspective: 1100px;
  background: none; border: none; overflow: visible;
}

/* The image — white-bg photo blended onto light hero via multiply.
   multiply makes the white background disappear while keeping the car's
   real colors. In dark mode the wrapper gets a light plate (below) so the
   multiply still has a white substrate to blend against. */
.mh-types-hero-car-img {
  width: 100%; height: auto; display: block;
  mix-blend-mode: multiply;
  animation: mhCarDrive 1.4s cubic-bezier(0.2,0.75,0.3,1) both;
  transform-origin: 70% 75%;
  will-change: transform, opacity;
}
/* Dark mode: light rounded plate behind car so the white-bg photo reads
   like a showroom spotlight instead of a black box. */
html.dark .mh-types-hero-car {
  background: linear-gradient(160deg, #FFFFFF, #ECECEA);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  padding: 6px;
}
@keyframes mhCarDrive {
  0%   {
    opacity: 0;
    transform: translate3d(180px, -46px, 0) rotateY(-30deg) rotateX(4deg) scale(0.6);
  }
  50%  {
    opacity: 1;
  }
  72%  {
    transform: translate3d(-14px, 6px, 0) rotateY(5deg) rotateX(0deg) scale(1.04);
  }
  88%  {
    transform: translate3d(6px, -2px, 0) rotateY(-1.5deg) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateY(0deg) rotateX(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mh-types-hero-car-img { animation: mhCarFade 0.4s ease both; }
  @keyframes mhCarFade { from { opacity: 0; } to { opacity: 1; } }
}
.mh-types-hero-car-empty {
  width: 100%; height: 170px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border-radius: 10px;
}

/* Speed streaks */
.mh-types-streak {
  position: absolute; right: 8%; height: 2.5px; border-radius: 2px;
  transform-origin: right center; pointer-events: none;
}
.mh-types-streak--1 { top: 30%; width: 130px; background: linear-gradient(90deg, transparent, rgba(228,121,17,0.55)); animation: mhStreak 0.9s ease-out 0.05s both; }
.mh-types-streak--2 { top: 46%; width: 200px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40)); animation: mhStreak 0.9s ease-out 0.12s both; }
.mh-types-streak--3 { top: 62%; width: 160px; background: linear-gradient(90deg, transparent, rgba(228,121,17,0.35)); animation: mhStreak 0.9s ease-out 0.20s both; }
.mh-types-streak--4 { top: 74%; width:  96px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25)); animation: mhStreak 0.9s ease-out 0.28s both; }
@keyframes mhStreak {
  0%   { opacity:0; transform: translateX(40px) scaleX(0.3); }
  35%  { opacity:0.9; }
  100% { opacity:0; transform: translateX(-180px) scaleX(1.4); }
}

/* Toolbar */
.mh-types-toolbar {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 12px;
}
.mh-types-search-wrap { position: relative; flex: 1 1 300px; max-width: 420px; }
.mh-types-search-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.mh-types-search-input {
  width: 100%; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 38px 11px 40px; font-size: 14px;
  color: var(--text); font-family: inherit; outline: none;
  box-shadow: var(--shadow-sm); transition: border-color 0.15s, box-shadow 0.15s;
}
.mh-types-search-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,121,17,0.15); }
.mh-types-search-clear {
  position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
  background: var(--surface2); border: none; border-radius: 6px;
  cursor: pointer; color: var(--text-muted); display: flex; padding: 5px;
}
.mh-types-sort-wrap {
  display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.mh-types-sort-select {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 32px 10px 12px; font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; appearance: none; font-family: inherit; outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center;
}
.mh-types-sort-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,121,17,0.15); }

/* Fuel pills */
.mh-types-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.mh-types-pill {
  padding: 8px 15px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--surface);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
  display: flex; align-items: center; gap: 6px;
}
.mh-types-pill.active { border-color: transparent; background: var(--orange); color: #fff; }
.mh-types-pill-count {
  font-size: 11px; font-weight: 700; border-radius: 100px; padding: 1px 6px;
  background: var(--surface2); color: var(--text-faint);
}
.mh-types-pill.active .mh-types-pill-count { background: rgba(255,255,255,0.22); color: #fff; }

/* ── FILTER PANEL (2 rânduri) ────────────────────────────── */
.mh-fp {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

/* Rând 1: Search + controls */
.mh-fp-row1 {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
}

/* Search */
.mh-fp-search {
  position: relative; flex: 1 1 160px; min-width: 130px;
}
.mh-fp-search-icon {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  color: var(--text-faint); pointer-events: none;
}
.mh-fp-search-input {
  width: 100%; border: none; background: transparent; outline: none;
  padding: 7px 32px 7px 32px; font-size: 13px; color: var(--text);
}
.mh-fp-search-input::placeholder { color: var(--text-faint); }
.mh-fp-search-clear {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: var(--surface2); border: none; border-radius: 5px;
  cursor: pointer; color: var(--text-muted); display: flex; padding: 4px;
  transition: background 0.15s;
}
.mh-fp-search-clear:hover { background: var(--border); }

/* Dreapta rând 1 */
.mh-fp-row1-right {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}

/* Chip select (Capacitate + Sort) */
.mh-fp-chip-select {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px; border-radius: 8px; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface);
  transition: background 0.15s, border-color 0.15s;
  color: var(--text-muted);
}
.mh-fp-chip-select:hover { background: var(--surface2); border-color: var(--orange); color: var(--text); }
.mh-fp-select-native {
  border: none; background: transparent; outline: none;
  font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; -webkit-appearance: none; appearance: none;
}

/* HP range inline */
.mh-fp-hp {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.mh-fp-hp:hover { border-color: var(--orange); }
.mh-fp-hp-label {
  font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; min-width: 86px;
}

/* Dual range track (shared) */
.mh-filter-range-track {
  position: relative; width: 100px; height: 4px;
  background: var(--border); border-radius: 4px; flex-shrink: 0;
}
.mh-filter-range-fill {
  position: absolute; top: 0; height: 4px;
  background: var(--orange); border-radius: 4px; pointer-events: none;
}
.mh-filter-range {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; height: 4px; margin: 0; padding: 0;
  background: transparent; border: none; outline: none;
  -webkit-appearance: none; appearance: none; pointer-events: none;
}
.mh-filter-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--surface);
  box-shadow: 0 1px 4px rgba(228,121,17,0.4);
  cursor: pointer; pointer-events: all; transition: transform 0.15s;
}
.mh-filter-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.mh-filter-range::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--surface);
  cursor: pointer; pointer-events: all;
}

/* Rând 2: Combustibili */
.mh-fp-row2 {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  flex-wrap: wrap;
}
.mh-fp-fuel-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.7px;
  text-transform: uppercase; color: var(--text-faint);
  flex-shrink: 0; white-space: nowrap;
}
.mh-fp-fuel-pills {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}

/* Pill individual */
.mh-fp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all 0.15s ease; white-space: nowrap;
}
.mh-fp-pill:hover {
  border-color: var(--fc, var(--orange));
  background: color-mix(in srgb, var(--fc, var(--orange)) 8%, var(--surface));
  color: var(--text);
}
.mh-fp-pill.active {
  border-color: var(--fc, var(--orange));
  background: color-mix(in srgb, var(--fc, var(--orange)) 14%, var(--surface));
  color: var(--text);
}
.mh-fp-pill[data-fuel="Toate"].active {
  border-color: var(--orange);
  background: rgba(228,121,17,0.1);
  color: var(--orange);
}
.mh-fp-pill-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.mh-fp-pill-name { line-height: 1; }
.mh-fp-pill-count {
  font-size: 10px; font-weight: 700;
  background: rgba(0,0,0,0.07); border-radius: 20px;
  padding: 1px 5px; color: inherit; opacity: 0.75;
}
html.dark .mh-fp-pill-count { background: rgba(255,255,255,0.1); }
.mh-fp-pill.active .mh-fp-pill-count { opacity: 1; }

/* Legacy compat — .mh-filter-fuel-count folosit în JS */
.mh-filter-fuel-count { /* intentionally empty — styled via mh-fp-pill-count */ }

/* Reset button */
.mh-fp-reset-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 11px; border-radius: 8px;
  border: 1.5px solid var(--border); background: transparent;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
  flex-shrink: 0;
}
.mh-fp-reset-btn:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(228,121,17,0.06);
}

@media (max-width: 768px) {
  .mh-fp-row1 { flex-wrap: wrap; }
  .mh-fp-row1-right { flex-wrap: wrap; }
  .mh-fp-hp { width: 100%; }
  .mh-filter-range-track { width: 100%; flex: 1; }
}

/* Count bar */
.mh-types-count-bar {
  display: flex; justify-content: space-between; align-items: center; margin: 14px 0 8px;
}
.mh-types-count-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.mh-types-count-val { font-size: 12.5px; color: var(--text-faint); }

/* Table */
.mh-types-table {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden;
}
.mh-types-row {
  display: grid;
  grid-template-columns: minmax(210px, 2.4fr) 96px 92px 132px minmax(118px, 1fr) 128px 34px;
  align-items: center; gap: 14px; padding: 11px 16px;
}
.mh-types-row--header {
  background: var(--surface2);
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-muted);
}
.mh-types-row--header span:nth-child(6) { text-align: right; }
.mh-types-row--data {
  border-top: 1px solid var(--border); text-decoration: none; color: inherit;
  box-shadow: inset 3px 0 0 transparent;
  transition: background 0.13s, box-shadow 0.13s;
  animation: mhRowIn 0.25s ease both;
}
@keyframes mhRowIn { from { opacity:0; transform: translateY(4px); } to { opacity:1; transform:none; } }
.mh-types-row--data:hover {
  background: rgba(228,121,17,0.05);
  box-shadow: inset 3px 0 0 var(--orange);
}

/* Cells */
.mh-types-cell { display: flex; align-items: center; font-size: 13px; color: var(--text-muted); }
.mh-types-cell strong { font-weight: 600; color: var(--text); margin-right: 2px; }
.mh-types-cell-name { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.mh-types-engine-name {
  font-size: 16px; font-weight: 800; letter-spacing: -0.3px; color: var(--text);
  white-space: nowrap; transition: color 0.13s;
}
.mh-types-row--data:hover .mh-types-engine-name { color: var(--orange); }
.mh-types-engine-code {
  font-size: 10.5px; font-weight: 700; color: var(--text-muted);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 6px; padding: 1px 6px; letter-spacing: 0.3px; white-space: nowrap;
}
.mh-types-fuel-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 9px; border-radius: 100px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.mh-types-fuel-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mh-types-cell-power { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.mh-types-power-val { font-size: 16px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.mh-types-power-unit { font-size: 11px; font-weight: 700; color: var(--orange); }
.mh-types-power-kw { font-size: 11px; color: var(--text-faint); }
.mh-types-cell-arrow {
  display: flex; justify-content: flex-end;
  color: var(--text-faint); transition: color 0.13s;
}
.mh-types-row--data:hover .mh-types-cell-arrow { color: var(--orange); }

/* Empty + reset */
.mh-types-empty { text-align: center; padding: 56px 0; color: var(--text-muted); font-size: 15px; }
.mh-types-reset-btn {
  margin-top: 10px; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 9px 18px; font-size: 13px; font-weight: 600;
  cursor: pointer; color: var(--text); font-family: inherit;
}

/* Footer hint */
.mh-types-hint-footer {
  font-size: 12px; color: var(--text-faint); margin-top: 12px;
  display: flex; align-items: center; gap: 6px;
}

/* Responsive: scroll table on mobile */
@media (max-width: 860px) {
  .mh-types-table { overflow-x: auto; }
  .mh-types-row  { min-width: 760px; }
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.mh-acct-review-card { padding: 18px 22px; }
.mh-acct-review-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.mh-acct-review-title { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.mh-acct-review-stars { display: flex; gap: 2px; }
.mh-acct-review-content { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.mh-acct-review-actions { display: flex; gap: 8px; }

/* ── COMPANIES ───────────────────────────────────────────── */
.mh-acct-company-card { display: flex; align-items: flex-start; gap: 14px; padding: 20px 22px; }
.mh-acct-company-icon { width: 44px; height: 44px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; }
.mh-acct-company-body { flex: 1; min-width: 0; }
.mh-acct-company-name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 8px; }
.mh-acct-company-rows { display: flex; flex-direction: column; gap: 3px; }
.mh-acct-company-detail { font-size: 12px; color: var(--text-muted); }
.mh-acct-company-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; align-items: flex-start; }

/* ── INVOICES ────────────────────────────────────────────── */
.mh-acct-invoice-card { display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.mh-acct-invoice-icon { width: 42px; height: 42px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; }
.mh-acct-invoice-body { flex: 1; }
.mh-acct-invoice-num { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
.mh-acct-invoice-detail { font-size: 12px; color: var(--text-muted); }
.mh-acct-invoice-date { font-size: 12px; color: var(--text-muted); }

/* ── WARRANTIES ──────────────────────────────────────────── */
.mh-acct-warranty-card { display: flex; align-items: center; gap: 14px; padding: 18px 22px; }
.mh-acct-warranty-icon { flex-shrink: 0; }
.mh-acct-warranty-body { flex: 1; }
.mh-acct-warranty-name { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 5px; }
.mh-acct-warranty-dates { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }

/* ── PAGINATION ──────────────────────────────────────────── */
.mh-acct-pagination { margin-top: 20px; }
.mh-acct-pagination .pagination { display: flex; gap: 4px; list-style: none; padding: 0; flex-wrap: wrap; }
.mh-acct-pagination .page-item .page-link { display: flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 8px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 13px; font-weight: 500; text-decoration: none; transition: all 0.15s; }
.mh-acct-pagination .page-item .page-link:hover { border-color: var(--orange); color: var(--orange); }
.mh-acct-pagination .page-item.active .page-link { background: var(--orange); border-color: var(--orange); color: #fff; }
.mh-acct-pagination .page-item.disabled .page-link { opacity: 0.4; pointer-events: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .mh-account-sidebar { width: 220px; }
}

@media (max-width: 768px) {
  .mh-account-wrap { flex-direction: column; }
  .mh-account-sidebar { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mh-account-nav { display: flex; overflow-x: auto; padding: 8px; gap: 2px; }
  .mh-account-nav-item { flex-shrink: 0; border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .mh-account-nav-item.active { border-left-color: transparent; border-bottom-color: var(--orange); }
  .mh-account-sidebar-footer { display: none; }
  .mh-acct-page { padding: 16px; }
  .mh-acct-dash-grid { grid-template-columns: 1fr; }
  .mh-acct-field-group--2col { grid-template-columns: 1fr; }
  .mh-acct-car-card, .mh-acct-address-card, .mh-acct-company-card { flex-wrap: wrap; }
  .mh-acct-car-actions, .mh-acct-address-actions, .mh-acct-company-actions { width: 100%; }
}

/* ── ALL CATEGORIES PAGE ─────────────────────────────────────── */

.mh-allcat-heading {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 20px;
}
.mh-allcat-heading-inner { max-width: 1240px; margin: 0 auto; }

.mh-allcat-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted); margin-bottom: 10px;
}
.mh-allcat-breadcrumb a { color: var(--orange); font-weight: 500; text-decoration: none; }
.mh-allcat-breadcrumb a:hover { text-decoration: underline; }

.mh-allcat-heading-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px;
}
.mh-allcat-h1 {
  font-size: clamp(18px,2.5vw,24px); font-weight: 800; color: var(--text);
  letter-spacing: -0.4px; line-height: 1.2; margin-bottom: 3px;
}
.mh-allcat-subtitle { font-size: 13px; color: var(--text-muted); }

.mh-allcat-search-wrap {
  position: relative; width: 100%; max-width: 400px;
}
.mh-allcat-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.mh-allcat-search-input {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 11px 44px; font-size: 14px; color: var(--text);
  outline: none; transition: all 0.15s; font-family: inherit;
}
.mh-allcat-search-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(228,121,17,0.12); }
.mh-allcat-search-clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  display: flex; padding: 4px;
}

/* Tabs */
.mh-allcat-tabs-wrap {
  background: var(--surface); border-bottom: 1px solid var(--border); padding: 0 24px;
  overflow-x: auto; scrollbar-width: none;
}
.mh-allcat-tabs-wrap::-webkit-scrollbar { display: none; }
.mh-allcat-tabs-inner {
  max-width: 1240px; margin: 0 auto; display: flex; gap: 2px; padding: 10px 0;
}
.mh-allcat-tab {
  flex-shrink: 0; padding: 7px 16px; border-radius: 8px;
  font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
  background: transparent; color: var(--text-muted); border: none;
  transition: all 0.15s; font-family: inherit;
}
.mh-allcat-tab:hover { background: var(--surface2); color: var(--text); }
.mh-allcat-tab.active { background: var(--orange); color: #fff; }

/* Main area */
.mh-allcat-main { flex: 1; padding: 48px 24px 80px; background: var(--bg); }
.mh-allcat-container { max-width: 1240px; margin: 0 auto; }

/* Search count */
.mh-allcat-search-count { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

/* Empty state */
.mh-allcat-empty { text-align: center; padding: 80px 0; }
.mh-allcat-empty-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--surface2);
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; color: var(--text-faint);
}
.mh-allcat-empty-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.mh-allcat-empty-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.mh-allcat-empty-btn {
  background: var(--orange); color: #fff; border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit;
  text-decoration: none; display: inline-block;
}

/* Back button in subcategories heading */
.mh-subcat-back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--surface);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.mh-subcat-back-btn:hover {
  border-color: var(--orange); color: var(--orange);
  background: rgba(228,121,17,0.05);
}

/* Subcategory grid — cards sunt <a>, nu <div> */
.mh-subcat-grid { margin-top: 8px; }
.mh-subcat-card {
  text-decoration: none;
  display: flex; flex-direction: column;
}
.mh-subcat-card:hover { text-decoration: none; }

/* Section */
.mh-allcat-section { margin-bottom: 56px; }
.mh-allcat-section-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.mh-allcat-section-title {
  font-size: 15px; font-weight: 800; color: var(--text);
  letter-spacing: -0.3px; white-space: nowrap;
}
.mh-allcat-section-line { flex: 1; height: 1px; background: var(--border); }
.mh-allcat-section-count {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap;
}

/* Grid */
.mh-allcat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1024px) { .mh-allcat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .mh-allcat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Card */
.mh-allcat-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.mh-allcat-card:hover {
  transform: translateY(-4px); border-color: var(--orange);
  box-shadow: 0 10px 32px rgba(228,121,17,0.14);
}
.mh-allcat-card.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(228,121,17,0.15);
}
.mh-allcat-card-img-area {
  aspect-ratio: 1 / 1; height: auto; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: background 0.2s;
}
.mh-allcat-card:hover .mh-allcat-card-img-area,
.mh-allcat-card.active .mh-allcat-card-img-area { background: rgba(228,121,17,0.07); }
.mh-allcat-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-allcat-card-footer {
  padding: 12px 14px 16px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  transition: border-color 0.2s;
}
.mh-allcat-card.active .mh-allcat-card-footer,
.mh-allcat-card:hover .mh-allcat-card-footer { border-color: rgba(228,121,17,0.15); }
.mh-allcat-card-name {
  font-size: 13px; font-weight: 700; color: var(--text);
  line-height: 1.35; transition: color 0.2s;
}
.mh-allcat-card:hover .mh-allcat-card-name,
.mh-allcat-card.active .mh-allcat-card-name { color: var(--orange); }
.mh-allcat-card-chev {
  color: var(--text-faint); flex-shrink: 0; transition: transform 0.25s ease, color 0.2s;
}
.mh-allcat-card.active .mh-allcat-card-chev { color: var(--orange); }

/* Panel row — spans full grid width */
.mh-allcat-panel-row { grid-column: 1 / -1; }
.mh-allcat-panel {
  background: rgba(228,121,17,0.03); border: 1.5px solid var(--orange);
  border-radius: var(--radius); padding: 18px 20px;
  animation: mhFadeUp 0.2s ease both;
}
@keyframes mhFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mh-allcat-panel-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
}
.mh-allcat-panel-label {
  font-size: 11px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1px;
}
.mh-allcat-panel-close {
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  display: flex; padding: 4px; border-radius: 6px;
}
.mh-allcat-panel-close:hover { color: var(--text); background: var(--surface2); }

/* Sub grid — L2 grupuri una sub alta */
.mh-allcat-sub-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Tile grid — toate L2 sunt frunze, același layout ca L3 */
.mh-allcat-sub-grid--tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px 8px;
}
/* L2 leaf tile — same compact link style as L3 items */
.mh-allcat-sub-tile {
  display: flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 3px 6px;
  border-radius: 6px; text-decoration: none;
  color: var(--text-muted); font-size: 13px; cursor: pointer;
  transition: color 0.15s, background-color 0.15s;
}
.mh-allcat-sub-tile:hover { color: var(--orange); background-color: rgba(228, 121, 17, 0.07); }

/* L2 group (has L3 children) inside expand panel */
.mh-allcat-sub-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mh-allcat-sub-group-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  padding: 0 6px 8px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 4px;
  line-height: 1.4;
}
/* L3 linkuri in grid cu coloane egale */
.mh-allcat-sub-group-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2px 8px;
}
.mh-allcat-sub-group-link {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 4px 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background-color 0.15s;
}
.mh-allcat-sub-group-link:hover {
  color: var(--orange);
  background-color: rgba(228, 121, 17, 0.07);
}
.mh-allcat-sub-group-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  /* transparent: pozele de subcategorii sunt PNG fără fundal, le lăsăm pe
     fundalul paginii ca să nu apară pătratul gri (--surface2) care nu se
     potrivea cu restul temei. */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-allcat-sub-group-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── Search dropdown ──────────────────────────────────────────── */
/* ── Search dropdown ──────────────────────────────────────────── */
.mh-allcat-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: calc(100vh - 230px);
  overflow-y: auto;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.07);
  z-index: 120;
  padding: 6px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.mh-allcat-dropdown::-webkit-scrollbar { width: 5px; }
.mh-allcat-dropdown::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.mh-allcat-dropdown-count {
  font-size: 11px; color: var(--text-faint); padding: 3px 10px 6px;
  border-bottom: 1px solid var(--border); margin-bottom: 2px;
}
.mh-allcat-dropdown-empty {
  font-size: 13px; color: var(--text-muted); text-align: center; padding: 16px 0;
}

/* ── Search results rows ──────────────────────────────────────── */
.mh-allcat-sr {
  display: flex; align-items: center; gap: 11px;
  padding: 7px 8px; border-radius: 7px;
  text-decoration: none; color: var(--text); cursor: pointer;
  transition: background-color 0.15s;
}
.mh-allcat-sr:hover { background: rgba(228,121,17,0.07); }
.mh-allcat-sr-img {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 5px; overflow: hidden; background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.mh-allcat-sr-img img { width: 100%; height: 100%; object-fit: contain; }
.mh-allcat-sr-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mh-allcat-sr-crumb { font-size: 11px; color: var(--text-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mh-allcat-sr-name { font-size: 13.5px; font-weight: 500; color: var(--text); }
.mh-allcat-sr:hover .mh-allcat-sr-name { color: var(--orange); }
.mh-allcat-sr-mark { background: rgba(228,121,17,0.18); color: var(--orange); border-radius: 2px; font-weight: 700; font-style: normal; }

/* Responsive */
@media (max-width: 768px) {
  .mh-allcat-heading { padding: 14px 16px 16px; }
  .mh-allcat-heading-row { flex-direction: column; align-items: flex-start; }
  .mh-allcat-search-wrap { max-width: 100%; }
  .mh-allcat-main { padding: 32px 16px 60px; }
  .mh-allcat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .mh-allcat-sub-group-links { grid-template-columns: 1fr 1fr; }
  .mh-allcat-section { margin-bottom: 36px; }
}

/* ════════════════════════════════════════════════════════════════
   Parts Products Page  (mhpp-)
   ════════════════════════════════════════════════════════════════ */

/* Utility: show/hide per breakpoint */
.mhpp-d-only { display: block; }
.mhpp-m-only { display: none; }
@media (max-width: 900px) {
  .mhpp-d-only { display: none !important; }
  .mhpp-m-only { display: flex !important; }
}

/* Breadcrumb bar */
.mhpp-breadcrumb-bar {
  background: var(--surface); border-bottom: 1px solid var(--border); padding: 9px 0;
}
.mhpp-breadcrumb-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 5px;
  font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap;
}
.mhpp-breadcrumb-inner a { color: var(--text-muted); transition: color .15s; text-decoration: none; }
.mhpp-breadcrumb-inner a:hover { color: var(--orange); }
.mhpp-breadcrumb-inner span { color: var(--text); font-weight: 700; }
.mhpp-breadcrumb-inner svg { opacity: .3; flex-shrink: 0; }

/* Hero */
.mhpp-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 0; }
.mhpp-hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.mhpp-hero-title {
  font-size: clamp(26px,4vw,40px); font-weight: 900; color: var(--text);
  letter-spacing: -1px; line-height: 1.1;
}
.mhpp-hero-sub { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

/* Car card */
.mhpp-car-card {
  background: linear-gradient(135deg,#0D1117 0%,#1a2030 100%);
  border: 1px solid #2a3040; border-radius: 12px;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.mhpp-car-initial {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(228,121,17,.15); border: 2px solid rgba(228,121,17,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 22px; font-weight: 900; color: var(--orange); letter-spacing: -2px;
}
.mhpp-car-info { min-width: 0; }
.mhpp-car-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1.1px; margin-bottom: 3px; }
.mhpp-car-name { font-size: 14.5px; font-weight: 800; color: #fff; letter-spacing: -.2px; line-height: 1.2; }
.mhpp-car-detail { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 2px; }
.mhpp-car-change {
  display: flex; align-items: center; gap: 6px;
  background: rgba(228,121,17,.15); border: 1px solid rgba(228,121,17,.35);
  color: var(--orange); border-radius: 8px; padding: 8px 13px;
  font-size: 12.5px; font-weight: 700; white-space: nowrap; transition: background .15s;
  flex-shrink: 0; text-decoration: none;
}
.mhpp-car-change:hover { background: rgba(228,121,17,.28); }

/* Main layout */
.mhpp-bg { background: var(--bg); min-height: 70vh; }
.mhpp-main-wrap { max-width: 1320px; margin: 0 auto; padding: 22px 20px 80px; }
.mhpp-layout { display: flex; gap: 20px; align-items: flex-start; }

/* Sidebar */
.mhpp-sidebar { width: 268px; flex-shrink: 0; }
.mhpp-filters-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.mhpp-filters-header { padding: 11px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mhpp-filters-title { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 800; color: var(--text); }
.mhpp-filter-badge { font-size: 11px; font-weight: 800; background: var(--orange); color: #fff; border-radius: 100px; padding: 1px 7px; }
.mhpp-clear-all { background: none; border: none; cursor: pointer; font-size: 12px; color: var(--orange); font-weight: 700; padding: 0; font-family: inherit; }

/* Filter section */
.mhpp-fs { border-bottom: 1px solid var(--border); }
.mhpp-fs:last-child { border-bottom: none; }
.mhpp-fs-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; background: none; border: none; cursor: pointer; color: var(--text); font-family: inherit; }
.mhpp-fs-title { font-size: 13px; font-weight: 700; }
.mhpp-fs-chev { color: var(--text-muted); transition: transform .2s; flex-shrink: 0; }
.mhpp-fs-body { padding: 2px 16px 12px; }
.mhpp-fs-search-wrap { padding: 4px 0 8px; }
.mhpp-fs-search {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 6px 10px; font-size: 12.5px; color: var(--text);
  outline: none; font-family: inherit; transition: border-color .15s;
}
.mhpp-fs-search:focus { border-color: var(--orange); }

/* Price range widget */
.mhpp-price-range-row { display: flex; align-items: center; gap: 6px; padding: 4px 0 4px; }
.mhpp-price-input-wrap { flex: 1; display: flex; align-items: center; gap: 4px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 5px 8px; transition: border-color .15s; }
.mhpp-price-input-wrap:focus-within { border-color: var(--orange); }
.mhpp-price-input { flex: 1; background: none; border: none; outline: none; font-size: 13px; color: var(--text); font-family: inherit; width: 0; min-width: 0; -moz-appearance: textfield; }
.mhpp-price-input::-webkit-outer-spin-button,
.mhpp-price-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.mhpp-price-input::placeholder { color: var(--text-faint); }
.mhpp-price-input-unit { font-size: 11px; color: var(--text-faint); font-weight: 600; flex-shrink: 0; }
.mhpp-price-range-sep { font-size: 13px; color: var(--text-faint); flex-shrink: 0; }
.mhpp-price-apply-btn {
  width: 100%; margin-top: 8px; background: var(--orange); color: #fff;
  border: none; border-radius: 8px; padding: 8px 0; font-size: 13px;
  font-weight: 600; cursor: pointer; font-family: inherit; transition: background .15s;
}
.mhpp-price-apply-btn:hover { background: var(--orange-dark, #c96a0e); }

/* Pagination */
.mhpp-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 16px 0 4px; flex-wrap: wrap;
}
.mhpp-page-btn {
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.mhpp-page-btn:hover:not(.disabled):not(.active) { border-color: rgba(228,121,17,.45); color: var(--orange); background: rgba(228,121,17,.06); }
.mhpp-page-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; cursor: default; }
.mhpp-page-btn.disabled { opacity: .35; cursor: not-allowed; }
.mhpp-page-dots { font-size: 13px; color: var(--text-faint); padding: 0 4px; line-height: 36px; }

/* Checkbox */
.mhpp-cb { display: flex; align-items: center; gap: 9px; padding: 5px 0; cursor: pointer; user-select: none; }
.mhpp-cb-box { width: 16px; height: 16px; border-radius: 4px; border: 2px solid var(--border); background: transparent; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .12s; }
.mhpp-cb-box.checked { border-color: var(--orange); background: var(--orange); }
.mhpp-cb-box.checked::after { content: ''; display: block; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(1px,-1px); }
.mhpp-cb-label { font-size: 13px; color: var(--text); font-weight: 400; flex: 1; transition: color .12s; }
.mhpp-cb-label.active { color: var(--orange); font-weight: 600; }
.mhpp-cb-count { font-size: 11.5px; color: var(--text-faint); font-weight: 500; }

/* Content area */
.mhpp-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }

/* Partea de montare */
.mhpp-mount-section {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.mhpp-mount-label {
  font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap;
}
.mhpp-mount-options { display: flex; gap: 8px; flex-wrap: wrap; }
.mhpp-mount-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg); cursor: pointer; text-decoration: none;
  color: var(--text-muted); transition: border-color .15s, background .15s, color .15s;
}
.mhpp-mount-btn:hover { border-color: var(--orange); color: var(--text); }
.mhpp-mount-btn.active { border-color: var(--orange); background: rgba(228,121,17,.08); color: var(--orange); }
.mhpp-mount-img-wrap { width: 72px; height: 52px; display: flex; align-items: center; justify-content: center; }
.mhpp-mount-img-wrap img { width: 72px; height: 52px; object-fit: contain; opacity: .7; }
.mhpp-mount-btn.active .mhpp-mount-img-wrap img { opacity: 1; }
.mhpp-mount-placeholder { width: 72px; height: 52px; align-items: center; justify-content: center; color: currentColor; }
.mhpp-mount-name { font-size: 11px; font-weight: 600; white-space: nowrap; }

/* Toolbar */
.mhpp-toolbar {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  position: sticky; top: 72px; z-index: 50;
}
.mhpp-count { font-size: 13.5px; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.mhpp-count strong { color: var(--text); font-weight: 900; }

/* Mobile filter button */
.mhpp-mob-filter-btn {
  align-items: center; gap: 6px; padding: 7px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text-muted); cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.mhpp-mob-filter-btn.has-filters { border-color: rgba(228,121,17,.45); background: rgba(228,121,17,.09); color: var(--orange); }

/* Sort */
.mhpp-sort-wrap { position: relative; flex-shrink: 0; }
.mhpp-sort-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.mhpp-sort-chev { position: absolute; right: 9px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.mhpp-sort-select {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 7px 30px 7px 30px; font-size: 13px; color: var(--text); cursor: pointer;
  appearance: none; font-family: inherit; transition: border-color .15s;
}
.mhpp-sort-select:focus { outline: none; border-color: var(--orange); }

/* View toggle */
.mhpp-view-toggle { display: flex; gap: 3px; flex-shrink: 0; }
.mhpp-view-btn {
  width: 33px; height: 33px; border-radius: 7px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s; background: var(--surface);
  border: 1.5px solid var(--border); color: var(--text-muted);
}
.mhpp-view-btn.active { background: rgba(228,121,17,.1); border-color: rgba(228,121,17,.45); color: var(--orange); }

/* Chips */
.mhpp-chips { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; padding: 4px 0; }
.mhpp-chips-label { font-size: 12px; color: var(--text-muted); font-weight: 500; flex-shrink: 0; }
.mhpp-chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(228,121,17,.1); border: 1px solid rgba(228,121,17,.25);
  border-radius: 100px; padding: 3px 10px 3px 12px;
  font-size: 12.5px; font-weight: 600; color: var(--orange);
}
.mhpp-chip-x { background: none; border: none; cursor: pointer; color: var(--orange); display: flex; padding: 0; opacity: .65; margin-left: 2px; }
.mhpp-chips-clear { font-size: 12.5px; color: var(--text-muted); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; font-family: inherit; }

/* Product list */
.mhpp-list { display: flex; flex-direction: column; gap: 10px; }

/* Product row */
.mhpp-row {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px;
  display: flex; align-items: stretch; overflow: hidden;
  transition: border-color .15s, box-shadow .18s;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.mhpp-row:hover { border-color: rgba(228,121,17,.4); box-shadow: 0 4px 24px rgba(228,121,17,.08); }
.mhpp-row-img { width: 148px; flex-shrink: 0; border-right: 1px solid var(--border); }
.mhpp-row-brand-bar { padding: 7px 10px; border-top: 1px solid var(--border); background: var(--surface2); text-align: center; font-size: 11px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .6px; }
.mhpp-row-info { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.mhpp-row-code-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mhpp-code-badge { font-size: 11px; font-family: ui-monospace,monospace; font-weight: 700; color: var(--text-muted); background: var(--surface2); border: 1px solid var(--border); border-radius: 5px; padding: 2px 8px; letter-spacing: .4px; }
.mhpp-row-title { font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.25; transition: color .15s; text-decoration: none; }
.mhpp-row:hover .mhpp-row-title { color: var(--orange); }
.mhpp-row-price-col { width: 180px; flex-shrink: 0; border-left: 1px solid var(--border); display: flex; flex-direction: column; transition: background .15s; }
.mhpp-row:hover .mhpp-row-price-col { background: rgba(228,121,17,.02); }
.mhpp-row-stock { padding: 12px 16px 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 7px; }
.mhpp-stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mhpp-stock-label { font-size: 12.5px; font-weight: 700; }
.mhpp-row-price-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 16px; gap: 10px; }
.mhpp-price-big { font-size: 30px; font-weight: 900; color: var(--orange); letter-spacing: -1.5px; line-height: 1; }
.mhpp-price-unit { font-size: 12.5px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.mhpp-price-request { font-size: 13px; color: var(--text-muted); font-weight: 600; text-align: center; }
.mhpp-price-request-sub { font-size: 11.5px; color: var(--text-faint); margin-top: 2px; text-align: center; }

/* CTA button */
.mhpp-cta-btn {
  width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 9px;
  padding: 11px 0; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background .15s; font-family: inherit;
}
.mhpp-cta-btn:hover { background: var(--orange-dark, #c96a0e); }
.mhpp-cta-btn:disabled { opacity: .6; cursor: not-allowed; }

.mhpp-details-link { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; transition: color .15s; text-decoration: none; }
.mhpp-details-link:hover { color: var(--orange); }

/* Wishlist button */
/* Part image placeholder */
.mhpp-part-img {
  width: 100%; background: var(--surface2);
  background-image: repeating-linear-gradient(45deg,transparent 0,transparent 9px,rgba(0,0,0,.015) 9px,rgba(0,0,0,.015) 10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.mhpp-part-img-box {
  width: 46px; height: 46px; border-radius: 11px;
  background: rgba(228,121,17,.07); border: 1.5px solid rgba(228,121,17,.2);
  display: flex; align-items: center; justify-content: center;
}
.mhpp-part-img-box span { font-size: 11px; font-weight: 800; color: var(--orange); font-family: ui-monospace,monospace; }
.mhpp-part-img-txt { font-size: 9.5px; color: var(--text-faint); font-weight: 500; }

/* Imagine reala produs catalog (uleiuri, lichide) — fundal alb, contain, zoom la hover */
.mhpp-cat-img-link {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 148px; background: #fff;
  overflow: hidden; text-decoration: none;
}
.mhpp-cat-img {
  max-width: 88%; max-height: 88%; width: auto; height: auto; object-fit: contain;
  transition: transform .25s ease;
}
.mhpp-card .mhpp-cat-img-link { min-height: 180px; border-radius: 14px 14px 0 0; }
.mhpp-card:hover .mhpp-cat-img,
.mhpp-row:hover .mhpp-cat-img { transform: scale(1.06); }

.mhpp-wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); transition: all .15s;
  z-index: 2;
}
.mhpp-wishlist-btn:hover { border-color: rgba(228,121,17,.5); color: var(--orange); }

/* ── COOKIE CONSENT ─────────────────────────────────── */
.mhcc-banner {
  position: fixed; bottom: 16px; left: 16px; z-index: 1100;
  max-width: 400px; padding: 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.mhcc-banner.mhcc-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mhcc-banner-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--text); margin-bottom: 8px;
}
.mhcc-banner-head svg { color: var(--orange); flex-shrink: 0; }
.mhcc-banner-text { font-size: 13px; line-height: 1.55; color: var(--text-muted); margin: 0 0 14px; }
.mhcc-banner-text a { color: var(--orange); text-decoration: underline; }
.mhcc-banner-text a:hover { color: var(--orange-dark); }
.mhcc-banner-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.mhcc-btn {
  padding: 9px 14px; border-radius: 8px; border: 1px solid transparent;
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all .15s;
}
.mhcc-btn-primary { background: var(--orange); color: #fff; }
.mhcc-btn-primary:hover { background: var(--orange-dark); }
.mhcc-btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.mhcc-btn-ghost:hover { border-color: var(--text-muted); }
.mhcc-btn-link { background: transparent; color: var(--text-muted); text-decoration: underline; padding: 9px 6px; }
.mhcc-btn-link:hover { color: var(--text); }
.mhcc-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.mhcc-backdrop {
  position: fixed; inset: 0; z-index: 1105; background: rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s;
}
.mhcc-backdrop.mhcc-visible { opacity: 1; visibility: visible; }

.mhcc-panel {
  position: fixed; top: 50%; left: 50%; z-index: 1110;
  width: 520px; max-width: calc(100vw - 32px); max-height: 85vh; overflow-y: auto;
  padding: 22px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translate(-50%, -47%);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.mhcc-panel.mhcc-visible { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.mhcc-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mhcc-panel-head h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; }
.mhcc-panel-close {
  width: 30px; height: 30px; border-radius: 8px;
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s;
}
.mhcc-panel-close:hover { color: var(--text); border-color: var(--text-muted); }
.mhcc-panel-intro { font-size: 13px; line-height: 1.55; color: var(--text-muted); margin: 0 0 14px; }
.mhcc-panel-intro a { color: var(--orange); text-decoration: underline; }

.mhcc-cat {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 0; border-top: 1px solid var(--border);
}
.mhcc-cat-title { font-size: 14px; font-weight: 600; color: var(--text); }
.mhcc-cat-desc { font-size: 12.5px; line-height: 1.5; color: var(--text-muted); margin-top: 3px; }
.mhcc-always {
  flex-shrink: 0; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  background: rgba(var(--orange-rgb), .12); color: var(--orange);
}

.mhcc-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.mhcc-switch input { opacity: 0; width: 0; height: 0; }
.mhcc-slider {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--border); cursor: pointer; transition: background .15s;
}
.mhcc-slider::before {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm); transition: transform .15s;
}
.mhcc-switch input:checked + .mhcc-slider { background: var(--orange); }
.mhcc-switch input:checked + .mhcc-slider::before { transform: translateX(18px); }
.mhcc-switch input:focus-visible + .mhcc-slider { outline: 2px solid var(--orange); outline-offset: 2px; }

.mhcc-panel-actions {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}

.mh-footer-cookie-btn {
  background: none; border: none; padding: 0; font-family: inherit; font-size: 13px;
  color: rgba(255,255,255,0.45); text-decoration: underline dotted; cursor: pointer; transition: color .15s;
}
.mh-footer-cookie-btn:hover { color: var(--orange); }

@media (max-width: 540px) {
  .mhcc-banner { left: 10px; right: 10px; bottom: 10px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mhcc-banner, .mhcc-panel, .mhcc-backdrop, .mhcc-slider, .mhcc-slider::before { transition: none; }
}

/* ── PAGINI DB (legale/informative) ─────────────────── */
.mhpg-wrap { padding: 40px 0 64px; background: var(--bg); }
.mhpg-card {
  max-width: 860px; margin: 0 auto; padding: 36px 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.mhpg-title { font-size: 26px; font-weight: 800; color: var(--text); margin: 0 0 6px; letter-spacing: -0.02em; }
.mhpg-caption { font-size: 14px; color: var(--text-muted); margin: 0 0 4px; }
.mhpg-content { font-size: 14.5px; line-height: 1.7; color: var(--text); }
.mhpg-content h2 { font-size: 20px; font-weight: 700; color: var(--text); margin: 26px 0 12px; }
.mhpg-content h3 { font-size: 16.5px; font-weight: 700; color: var(--text); margin: 22px 0 10px; }
.mhpg-content h4 { font-size: 14.5px; font-weight: 600; color: var(--text); margin: 18px 0 8px; }
.mhpg-content p { margin: 10px 0; }
.mhpg-content ul, .mhpg-content ol { margin: 10px 0; padding-left: 22px; }
.mhpg-content li { margin: 5px 0; }
.mhpg-content a { color: var(--orange); text-decoration: underline; }
.mhpg-content a:hover { color: var(--orange-dark); }
.mhpg-content em { color: var(--text-muted); }
.mhpg-content table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13.5px; }
.mhpg-content th, .mhpg-content td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; vertical-align: top; }
.mhpg-content th { background: var(--bg); font-weight: 600; }

@media (max-width: 640px) {
  .mhpg-card { padding: 22px 18px; }
  .mhpg-title { font-size: 22px; }
  .mhpg-content table { display: block; overflow-x: auto; }
}
.mhpp-wishlist-btn.saved { border-color: var(--orange); color: var(--orange); }
.mhpp-wishlist-btn.saved svg { fill: var(--orange); }

/* Specs table */
.mhpp-specs-table { border-collapse: collapse; width: 100%; }
.mhpp-spec-key { padding: 3px 12px 3px 0; font-size: 12.5px; color: var(--text-muted); white-space: nowrap; width: 22%; border-bottom: 1px solid var(--surface2); }
.mhpp-spec-val { padding: 3px 24px 3px 0; font-size: 13px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--surface2); }
.mhpp-spec-more { font-size: 11px; color: var(--text-faint); padding-top: 3px; }
.mhpp-spec-more a { color: var(--text-muted); font-weight: 600; text-decoration: none; transition: color .15s; }
.mhpp-spec-more a:hover { color: var(--orange); }
.mhpp-row-specs { margin-top: 4px; }

/* Product grid */
.mhpp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 780px) { .mhpp-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .mhpp-grid-3 { grid-template-columns: 1fr; } }

/* Product card */
.mhpp-card {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .2s, transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
.mhpp-card:hover { border-color: rgba(228,121,17,.4); box-shadow: 0 8px 28px rgba(228,121,17,.1); transform: translateY(-4px); }
.mhpp-card-stock-badge {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 3px 9px; border: 1px solid;
}
.mhpp-card-brand-bar { padding: 12px 14px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface2); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mhpp-card-brand { font-size: 11.5px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .7px; }
.mhpp-card-code { font-size: 10.5px; font-family: ui-monospace,monospace; color: var(--text-muted); font-weight: 600; }
.mhpp-card-info { padding: 13px 14px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.mhpp-card-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; transition: color .15s; text-decoration: none; }
.mhpp-card:hover .mhpp-card-title { color: var(--orange); }
.mhpp-card-bottom { padding: 10px 14px 14px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.mhpp-card-price { font-size: 22px; font-weight: 900; color: var(--orange); letter-spacing: -.7px; }
.mhpp-card-price-request { font-size: 13px; color: var(--text-muted); font-style: italic; }

/* Empty state */
.mhpp-empty { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 80px 24px; text-align: center; }
.mhpp-empty svg { color: var(--text-faint); margin: 0 auto 14px; display: block; }
.mhpp-empty-title { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.mhpp-empty-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; }
.mhpp-empty-btn { background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 10px 24px; font-size: 13.5px; font-weight: 700; cursor: pointer; font-family: inherit; }

/* Mobile drawer */
.mhpp-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; }
.mhpp-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(88vw, 340px);
  background: var(--surface); z-index: 201;
  transform: translateX(-105%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mhpp-drawer.open { transform: translateX(0); }
.mhpp-drawer-header { padding: 14px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--surface); z-index: 1; }
.mhpp-drawer-title { font-size: 15px; font-weight: 800; }
.mhpp-drawer-close { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); }
.mhpp-drawer-body { flex: 1; }
.mhpp-drawer-footer { padding: 12px 16px; border-top: 1px solid var(--border); position: sticky; bottom: 0; background: var(--surface); }
.mhpp-drawer-apply { width: 100%; background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 12px 0; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; }

/* Toast */
.mhpp-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 600;
  background: #111110; color: #F4F3F0; border-radius: 12px; padding: 12px 20px;
  font-size: 13.5px; font-weight: 600; box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; gap: 10px;
  animation: mhppSlideUp .2s ease; white-space: nowrap; cursor: pointer;
}
.mhpp-toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes mhppSlideUp { from { opacity: 0; transform: translateX(-50%) translateY(6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* Responsive adjustments */
@media (max-width: 900px) {
  .mhpp-layout { flex-direction: column; }
  .mhpp-row-img { width: 80px; }
  .mhpp-row-price-col { width: 150px; }
}
@media (max-width: 600px) {
  .mhpp-row-img { display: none; }
  .mhpp-row-specs { display: none; }
  .mhpp-car-card { width: 100%; }
}

/* ──────────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE (mhpd-)
   ────────────────────────────────────────────────────────────── */
.mhpd-main { background: var(--bg); }
.mhpd-container { max-width: 1320px; margin: 0 auto; padding: 32px 20px 0; }

/* ── Car context banner ── */
.mhpd-carbar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
.mhpd-carbar-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.mhpd-carbar-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mhpd-carbar-card { background: linear-gradient(135deg, #0D1117, #1a2030); border: 1px solid #2a3040; border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; gap: 12px; }
.mhpd-carbar-badge { width: 36px; height: 36px; border-radius: 8px; background: rgba(var(--orange-rgb), .15); border: 2px solid rgba(var(--orange-rgb), .4); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: var(--orange); letter-spacing: -1px; flex-shrink: 0; }
.mhpd-carbar-eyebrow { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.mhpd-carbar-name { font-size: 13.5px; font-weight: 800; color: #fff; letter-spacing: -.2px; }
.mhpd-carbar-sub { font-size: 11.5px; color: rgba(255,255,255,.5); }
.mhpd-carbar-ok { display: flex; align-items: center; gap: 6px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 8px; padding: 7px 12px; font-size: 12.5px; font-weight: 700; color: #15803D; }
html.dark .mhpd-carbar-ok { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.3); color: #4ade80; }
.mhpd-carbar-change { display: flex; align-items: center; gap: 6px; background: rgba(var(--orange-rgb), .08); border: 1px solid rgba(var(--orange-rgb), .25); color: var(--orange); border-radius: 8px; padding: 8px 14px; font-size: 12.5px; font-weight: 700; transition: background .15s; }
.mhpd-carbar-change:hover { background: rgba(var(--orange-rgb), .16); }

/* ── Breadcrumb ── */
.mhpd-breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 9px 0; }
.mhpd-breadcrumb-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; }
.mhpd-breadcrumb-inner a { color: var(--text-muted); transition: color .15s; }
.mhpd-breadcrumb-inner a:hover { color: var(--orange); }
.mhpd-bc-sep { opacity: .3; flex-shrink: 0; }
.mhpd-bc-current { color: var(--text); font-weight: 700; }

/* ── Hero layout ── */
.mhpd-hero { display: flex; gap: 40px; align-items: flex-start; }
.mhpd-gallery-col { flex: 0 0 480px; max-width: 480px; min-width: 0; width: 100%; }
.mhpd-buybox { flex: 1; min-width: 0; }

/* ── Gallery ── */
.mhpd-gallery { display: flex; flex-direction: column; gap: 10px; }
.mhpd-gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); background: var(--surface); height: 420px; display: flex; align-items: center; justify-content: center; }
.mhpd-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.mhpd-zoom-hint { position: absolute; bottom: 10px; right: 12px; display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,.7); backdrop-filter: blur(4px); border-radius: 6px; padding: 4px 8px; border: 1px solid var(--border); font-size: 10px; color: var(--text-muted); font-weight: 600; }
html.dark .mhpd-zoom-hint { background: rgba(0,0,0,.4); }
.mhpd-part-placeholder { width: 100%; height: 100%; background: var(--surface2); background-image: repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(0,0,0,.015) 14px, rgba(0,0,0,.015) 15px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.mhpd-part-placeholder-box { width: 72px; height: 72px; border-radius: 16px; background: rgba(var(--orange-rgb), .07); border: 2px solid rgba(var(--orange-rgb), .18); display: flex; align-items: center; justify-content: center; }
.mhpd-part-placeholder-box span { font-size: 18px; font-weight: 900; color: var(--orange); font-family: ui-monospace, monospace; letter-spacing: -1px; }
.mhpd-part-placeholder-txt { font-size: 11px; color: var(--text-faint); font-weight: 500; font-family: ui-monospace, monospace; }
.mhpd-thumbs { display: flex; gap: 8px; }
.mhpd-thumb { flex: 1; height: 88px; background: var(--surface); border: 2px solid var(--border); border-radius: 10px; cursor: pointer; overflow: hidden; padding: 0; transition: border-color .15s; }
.mhpd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.mhpd-thumb:hover { border-color: rgba(var(--orange-rgb), .4); }
.mhpd-thumb.active { border-color: var(--orange); }
.mhpd-gallery-note { display: flex; align-items: center; gap: 6px; padding: 2px 0; font-size: 11px; color: var(--text-faint); }

/* ── Buy box ── */
.mhpd-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.mhpd-badge-brand { display: inline-flex; align-items: center; background: rgba(var(--orange-rgb), .1); border: 1.5px solid rgba(var(--orange-rgb), .3); color: var(--orange); border-radius: 8px; padding: 4px 12px; font-size: 12px; font-weight: 800; letter-spacing: .3px; }
.mhpd-badge-tip { display: inline-flex; align-items: center; background: #EFF6FF; border: 1px solid #BFDBFE; color: #1D4ED8; border-radius: 6px; padding: 3px 9px; font-size: 11px; font-weight: 700; letter-spacing: .4px; }
html.dark .mhpd-badge-tip { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.3); color: #60a5fa; }
.mhpd-title { font-size: clamp(20px, 2.5vw, 27px); font-weight: 900; color: var(--text); line-height: 1.2; letter-spacing: -.5px; margin-bottom: 12px; }
.mhpd-title span { color: var(--orange); }
.mhpd-meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.mhpd-code-pill { display: flex; align-items: center; gap: 6px; background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 5px 10px; }
.mhpd-code-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.mhpd-code-value { font-size: 12px; font-weight: 800; color: var(--text); font-family: ui-monospace, monospace; letter-spacing: .5px; }
.mhpd-code-copy { background: none; border: none; cursor: pointer; color: var(--text-muted); display: flex; padding: 0; transition: color .2s; }
.mhpd-code-copy:hover { color: var(--orange); }
.mhpd-rating-link { display: flex; align-items: center; gap: 6px; }
.mhpd-stars { display: inline-flex; align-items: center; gap: 2px; }
.mhpd-rating-txt { font-size: 12.5px; color: var(--text-muted); font-weight: 500; transition: color .15s; }
.mhpd-rating-link:hover .mhpd-rating-txt { color: var(--orange); }
.mhpd-divider { height: 1px; background: var(--border); margin-bottom: 18px; }
.mhpd-avail { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.mhpd-avail-pill { display: flex; align-items: center; gap: 7px; border: 1px solid; border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 700; }
html.dark .mhpd-avail-pill { background: var(--surface2) !important; border-color: var(--border) !important; }
.mhpd-avail-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; animation: mhpd-pulse 2s ease infinite; }
@keyframes mhpd-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.8); } }

/* ── Price ── */
.mhpd-price-block { margin-bottom: 20px; }
.mhpd-price-old { display: inline-block; font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 2px; margin-right: 8px; }
.mhpd-price-main { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.mhpd-price-amount { font-size: 44px; font-weight: 900; color: var(--orange); letter-spacing: -2px; line-height: 1; }
.mhpd-price-currency { font-size: 20px; font-weight: 700; color: var(--orange); letter-spacing: -.5px; }
.mhpd-price-vat { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); flex-wrap: wrap; }
.mhpd-price-sep { color: var(--text-faint); }

/* ── OEM quick ── */
.mhpd-oem-toggle { display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 12.5px; font-weight: 600; padding: 0 0 14px; }
.mhpd-oem-chev { transition: transform .2s; }
.mhpd-oem-quick { display: flex; flex-wrap: wrap; gap: 6px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; margin-bottom: 14px; }
.mhpd-oem-chip { display: flex; align-items: center; gap: 5px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 4px 9px; font-size: 11.5px; }
.mhpd-oem-chip span { color: var(--text-muted); font-weight: 600; }
.mhpd-oem-chip strong { font-family: ui-monospace, monospace; font-weight: 700; color: var(--text); }

/* ── Buy row ── */
.mhpd-buy-row { display: flex; gap: 10px; margin-bottom: 10px; }
.mhpd-qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.mhpd-qty-btn { width: 40px; height: 48px; background: var(--surface); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background .15s; }
.mhpd-qty-btn:hover { background: var(--surface2); }
.mhpd-qty-input { width: 44px; height: 48px; text-align: center; font-size: 15px; font-weight: 700; color: var(--text); background: var(--surface); border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.mhpd-qty-input:focus { outline: none; }
.mhpd-add-cart-btn { flex: 1; background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 0 20px; font-size: 14px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background .15s; letter-spacing: -.2px; }
.mhpd-add-cart-btn:hover { background: var(--orange-dark); }
.mhpd-add-cart-btn:disabled { opacity: .6; cursor: default; }
.mhpd-request-offer { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: #fff; border-radius: 10px; padding: 14px 20px; font-size: 14px; font-weight: 800; margin-bottom: 10px; transition: background .15s; }
.mhpd-request-offer:hover { background: var(--orange-dark); color: #fff; }

/* ── Wishlist button ── */
.mhpd-wishlist-btn { width: 100%; background: transparent; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px; font-size: 13.5px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--text-muted); transition: all .15s; margin-bottom: 18px; }
.mhpd-wishlist-btn:hover { border-color: rgba(var(--orange-rgb), .4); color: var(--orange); }
.mhpd-wishlist-btn.saved { border-color: rgba(var(--orange-rgb), .5); color: var(--orange); }
.mhpd-wishlist-btn.saved svg { fill: var(--orange); }

/* ── Delivery info ── */
.mhpd-delivery { display: flex; flex-direction: column; gap: 10px; }
.mhpd-delivery-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.mhpd-delivery-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-muted); }

/* ── Share ── */
.mhpd-share { display: flex; align-items: center; gap: 8px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.mhpd-share-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.mhpd-share-btn { background: var(--surface2); border: 1px solid var(--border); border-radius: 7px; padding: 5px 10px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .15s; }
.mhpd-share-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ── Trust row ── */
.mhpd-trust { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 32px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.mhpd-trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid var(--border); }
.mhpd-trust-item:last-child { border-right: none; }
.mhpd-trust-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(var(--orange-rgb), .08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); }
.mhpd-trust-title { font-size: 13.5px; font-weight: 800; color: var(--text); letter-spacing: -.2px; }
.mhpd-trust-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ── Tabs ── */
.mhpd-tabs { margin-top: 48px; }
.mhpd-tabbar { border-bottom: 2px solid var(--border); display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mhpd-tab { padding: 13px 20px; border: none; background: none; cursor: pointer; font-size: 14px; font-weight: 500; color: var(--text-muted); border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: all .15s; white-space: nowrap; }
.mhpd-tab:hover { color: var(--text); }
.mhpd-tab.active { font-weight: 700; color: var(--orange); border-bottom-color: var(--orange); }
.mhpd-tab-content { background: var(--surface); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); padding: 24px; }
.mhpd-tab-pane { display: none; animation: mhpd-fade .2s ease; }
.mhpd-tab-pane.active { display: block; }
@keyframes mhpd-fade { from { opacity: 0; } to { opacity: 1; } }
.mhpd-tab-lead { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.mhpd-empty-tab { text-align: center; padding: 40px; color: var(--text-muted); font-size: 13px; }

/* ── Specs table ── */
.mhpd-spec-table { width: 100%; border-collapse: collapse; }
.mhpd-spec-table tr.even { background: var(--surface2); }
.mhpd-spec-k { padding: 11px 16px; font-size: 13.5px; color: var(--text-muted); font-weight: 500; width: 45%; border-bottom: 1px solid var(--border); }
.mhpd-spec-v { padding: 11px 16px; font-size: 13.5px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); }
.mhpd-spec-note { margin-top: 16px; display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(var(--orange-rgb), .04); border: 1px solid rgba(var(--orange-rgb), .15); border-radius: 10px; font-size: 12.5px; color: var(--text-muted); }

/* ── Generic data tables (oem / equiv / compat) ── */
.mhpd-table-scroll { overflow-x: auto; }
.mhpd-data-table { width: 100%; border-collapse: collapse; }
.mhpd-data-table thead tr { background: var(--surface2); }
.mhpd-data-table th { padding: 10px 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); text-align: left; text-transform: uppercase; letter-spacing: .8px; border-bottom: 2px solid var(--border); white-space: nowrap; }
.mhpd-data-table td { border-bottom: 1px solid var(--border); }
.mhpd-th-right { text-align: right !important; }
.mhpd-td-strong { padding: 11px 16px; font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.mhpd-td-brand { padding: 11px 16px; font-size: 13.5px; font-weight: 800; color: var(--orange); }
.mhpd-td-code { padding: 11px 16px; font-size: 13px; font-family: ui-monospace, monospace; font-weight: 600; color: var(--text); white-space: nowrap; }
.mhpd-td-num { padding: 11px 16px; font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.mhpd-td-muted { padding: 11px 16px; font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.mhpd-td-price { font-size: 15px; font-weight: 900; color: var(--text); letter-spacing: -.4px; padding-right: 16px; display: inline-block; }
.mhpd-td-price small { font-size: 11px; font-weight: 500; color: var(--text-muted); }
.mhpd-td-request { font-size: 12px; color: var(--text-muted); font-style: italic; padding-right: 16px; display: inline-block; }
.mhpd-copy-btn { background: none; border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; cursor: pointer; font-size: 11.5px; font-weight: 600; color: var(--text-muted); display: inline-flex; align-items: center; gap: 4px; transition: all .15s; margin-right: 16px; }
.mhpd-copy-btn:hover { border-color: var(--orange); color: var(--orange); }
.mhpd-avail-inline { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; }
.mhpd-avail-dot-sm { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.mhpd-detail-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; color: var(--orange); background: rgba(var(--orange-rgb), .08); border: 1px solid rgba(var(--orange-rgb), .25); border-radius: 7px; padding: 5px 12px; margin-right: 16px; transition: background .15s; }
.mhpd-detail-link:hover { background: rgba(var(--orange-rgb), .16); color: var(--orange); }

/* ── Compatible cars ── */
.mhpd-compat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.mhpd-compat-head .mhpd-tab-lead { flex: 1; margin-bottom: 0; }
.mhpd-compat-search { position: relative; flex-shrink: 0; }
.mhpd-compat-search svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.mhpd-compat-search input { background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 12px 7px 32px; font-size: 13px; color: var(--text); width: 220px; }
.mhpd-compat-search input:focus { outline: none; border-color: var(--orange); }
.mhpd-fuel { display: inline-flex; align-items: center; border-radius: 100px; padding: 2px 9px; font-size: 11.5px; font-weight: 700; background: var(--surface2); color: var(--text-muted); border: 1px solid var(--border); }
.mhpd-fuel-diesel { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.25); color: #1D4ED8; }
.mhpd-fuel-benzina, .mhpd-fuel-benzină { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.25); color: #15803D; }
html.dark .mhpd-fuel-diesel { color: #60a5fa; }
html.dark .mhpd-fuel-benzina, html.dark .mhpd-fuel-benzină { color: #4ade80; }
.mhpd-pagination { margin-top: 16px; }
.mhpd-pagination ul.pagination { display: flex; gap: 4px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.mhpd-pagination ul.pagination li a, .mhpd-pagination ul.pagination li span { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 10px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--text-muted); background: var(--surface); }
.mhpd-pagination ul.pagination li.active span { background: var(--orange); border-color: var(--orange); color: #fff; }
.mhpd-pagination ul.pagination li.disabled span { opacity: .4; }

/* ── Reviews ── */
.mhpd-reviews-summary { display: flex; gap: 40px; margin-bottom: 28px; flex-wrap: wrap; }
.mhpd-reviews-score { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.mhpd-reviews-avg { font-size: 56px; font-weight: 900; color: var(--text); letter-spacing: -3px; line-height: 1; }
.mhpd-reviews-count { font-size: 12.5px; color: var(--text-muted); }
.mhpd-reviews-dist { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.mhpd-dist-row { display: flex; align-items: center; gap: 10px; }
.mhpd-dist-n { font-size: 12px; color: var(--text-muted); width: 8px; text-align: right; flex-shrink: 0; }
.mhpd-dist-bar { flex: 1; height: 7px; background: var(--surface2); border-radius: 100px; overflow: hidden; }
.mhpd-dist-fill { height: 100%; background: var(--orange); border-radius: 100px; transition: width .5s ease; }
.mhpd-dist-cnt { font-size: 12px; color: var(--text-muted); width: 14px; text-align: right; flex-shrink: 0; }
.mhpd-reviews-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.mhpd-review { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.mhpd-review-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.mhpd-review-author { display: flex; align-items: center; gap: 10px; }
.mhpd-review-avatar { width: 36px; height: 36px; border-radius: 10px; background: rgba(var(--orange-rgb), .12); border: 1.5px solid rgba(var(--orange-rgb), .25); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: var(--orange); flex-shrink: 0; }
.mhpd-review-name-row { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.mhpd-review-name { font-size: 14px; font-weight: 700; color: var(--text); }
.mhpd-review-verified { display: inline-flex; align-items: center; gap: 3px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 100px; padding: 1px 7px; font-size: 10.5px; font-weight: 700; color: #15803D; }
html.dark .mhpd-review-verified { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.3); color: #4ade80; }
.mhpd-review-date { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.mhpd-review-text { font-size: 13.5px; color: var(--text); line-height: 1.65; }

/* ── Review form ── */
.mhpd-add-review-btn { background: var(--orange); color: #fff; border: none; border-radius: 10px; padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s; }
.mhpd-add-review-btn:hover { background: var(--orange-dark); }
.mhpd-review-form { background: var(--surface2); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; animation: mhpd-fade .2s ease; }
.mhpd-review-form-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.mhpd-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mhpd-form-field { margin-bottom: 14px; }
.mhpd-form-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.mhpd-form-field input, .mhpd-form-field textarea { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 13.5px; color: var(--text); resize: vertical; }
.mhpd-form-field input:focus, .mhpd-form-field textarea:focus { outline: none; border-color: var(--orange); }
.mhpd-form-err { display: block; font-size: 11.5px; color: #dc2626; margin-top: 4px; }
.mhpd-rating-input { display: flex; gap: 4px; }
.mhpd-rating-star { cursor: pointer; line-height: 0; }
.mhpd-rating-star input { position: absolute; opacity: 0; width: 0; height: 0; }
.mhpd-rating-star svg { transition: fill .1s; }
/* Fill the hovered star and all preceding (left-to-right) */
.mhpd-rating-input:hover .mhpd-rating-star svg { fill: var(--orange); }
.mhpd-rating-star:hover ~ .mhpd-rating-star svg { fill: none; }
.mhpd-rating-star input:checked ~ svg { fill: var(--orange); }
.mhpd-form-actions { display: flex; gap: 8px; }
.mhpd-form-submit { background: var(--orange); color: #fff; border: none; border-radius: 9px; padding: 10px 22px; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: background .15s; }
.mhpd-form-submit:hover { background: var(--orange-dark); }
.mhpd-form-cancel { background: var(--surface); border: 1.5px solid var(--border); border-radius: 9px; padding: 10px 18px; font-size: 13.5px; font-weight: 600; cursor: pointer; color: var(--text-muted); }

/* ── Similar products ── */
.mhpd-similar { margin-top: 56px; }
.mhpd-similar-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.mhpd-similar-title { font-size: 22px; font-weight: 900; color: var(--text); letter-spacing: -.4px; }
.mhpd-similar-sub { font-size: 13.5px; color: var(--text-muted); margin-top: 3px; }
.mhpd-similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.mhpd-similar-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all .18s; }
.mhpd-similar-card:hover { border-color: rgba(var(--orange-rgb), .4); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(var(--orange-rgb), .1); }
.mhpd-similar-img { display: block; height: 140px; background: var(--surface2); background-image: repeating-linear-gradient(45deg, transparent 0, transparent 9px, rgba(0,0,0,.015) 9px, rgba(0,0,0,.015) 10px); display: flex; flex-direction: column; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
.mhpd-similar-img-box { width: 44px; height: 44px; border-radius: 11px; background: rgba(var(--orange-rgb), .07); border: 1.5px solid rgba(var(--orange-rgb), .2); display: flex; align-items: center; justify-content: center; }
.mhpd-similar-img-box span { font-size: 11px; font-weight: 800; color: var(--orange); font-family: ui-monospace, monospace; }
.mhpd-similar-body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mhpd-similar-brand { font-size: 11px; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .7px; }
.mhpd-similar-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; flex: 1; transition: color .15s; }
.mhpd-similar-card:hover .mhpd-similar-name { color: var(--orange); }
.mhpd-similar-code { font-size: 10.5px; font-family: ui-monospace, monospace; color: var(--text-muted); }
.mhpd-similar-bottom { padding: 10px 14px 14px; border-top: 1px solid var(--border); }
.mhpd-similar-price { font-size: 20px; font-weight: 900; color: var(--orange); letter-spacing: -.8px; margin-bottom: 8px; }
.mhpd-similar-price small { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.mhpd-similar-price-req { font-size: 12.5px; color: var(--text-muted); font-style: italic; margin-bottom: 8px; }
.mhpd-similar .mhpd-cta-btn { width: 100%; background: var(--surface2); color: var(--text); border: 1.5px solid var(--border); border-radius: 9px; padding: 9px 0; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .15s; }
.mhpd-similar .mhpd-cta-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ── Toast ── */
.mhpd-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 600; background: #111110; color: #F4F3F0; border-radius: 12px; padding: 13px 20px; font-size: 13.5px; font-weight: 600; box-shadow: 0 8px 32px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; gap: 10px; animation: mhpd-slideup .2s ease; cursor: pointer; max-width: calc(100vw - 32px); }
.mhpd-toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
@keyframes mhpd-slideup { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .mhpd-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .mhpd-trust-item:nth-last-child(-n+1) { border-bottom: none; }
}
@media (max-width: 760px) {
  .mhpd-hero { flex-direction: column; }
  .mhpd-gallery-col { flex: none; max-width: 100%; }
  .mhpd-gallery-main { height: 320px; }
  .mhpd-compat-search input { width: 100%; }
  .mhpd-compat-head .mhpd-tab-lead { flex: none; width: 100%; }
}
@media (max-width: 480px) {
  .mhpd-container { padding: 20px 14px 0; }
  .mhpd-form-grid { grid-template-columns: 1fr; }
  .mhpd-reviews-summary { gap: 20px; }
  .mhpd-buy-row { flex-wrap: wrap; }
  .mhpd-add-cart-btn { width: 100%; flex: none; }
}
