/* Desktop chrome — 1:1 mockup header/footer */

body {
  background: var(--canvas);
  color: var(--ink);
}

.site-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1rem var(--site-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}

.site-header-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.site-header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 0;
}

.hdr-vehicle-mark {
  display: none;
  align-items: center;
  gap: 0.1rem;
  color: #111827;
  flex-shrink: 0;
  line-height: 1;
  margin: 0;
  padding: 0.2rem 0.15rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.hdr-vehicle-mark svg {
  display: block;
}

.hdr-vehicle-mark .hdr-vehicle-chev {
  color: #9ca3af;
  margin-left: -1px;
  transition: transform 0.2s ease;
}

.site-header.is-cats-open .hdr-vehicle-mark .hdr-vehicle-chev {
  transform: rotate(180deg);
  color: var(--accent, #553fae);
}

.hdr-cats-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}

.hdr-cats-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.55rem var(--site-gutter) 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hdr-cats-scroll::-webkit-scrollbar {
  display: none;
}

.hdr-cats-loading {
  color: #9ca3af;
  font-size: 0.85rem;
  padding: 0.35rem 0;
}

.hdr-cat-chip {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  cursor: pointer;
}

.hdr-cat-chip-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
}

.hdr-cat-chip-ico img,
.hdr-cat-chip-ico svg {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  pointer-events: none;
}

.hdr-cat-chip.has-subs {
  padding: 0;
}

.hdr-cat-chip-chev {
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent, #553fae);
  box-shadow: 0 0 0 1px #e5e7eb;
}

.hdr-cat-chip:hover,
.hdr-cat-chip:focus-visible {
  border-color: var(--accent, #553fae);
  color: var(--accent, #553fae);
}

.hdr-cat-sheet-backdrop {
  align-items: stretch;
  padding: 0;
  z-index: calc(var(--z-sheet, 80) + 5);
}

.hdr-cat-sheet {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  min-height: 100dvh;
  border-radius: 0;
  margin: 0;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  box-shadow: none;
  animation: none;
  display: flex;
  flex-direction: column;
}

.hdr-cat-sheet::before {
  display: none;
}

.hdr-cat-sheet .sheet-head {
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.hdr-cat-sheet-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-bottom: 0.5rem;
  overflow: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.hdr-cat-sheet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.95rem;
  border: 1px solid #eceaf3;
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.hdr-cat-sheet-ico {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.hdr-cat-sheet-ico img,
.hdr-cat-sheet-ico svg {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hdr-cat-sheet-item.is-all {
  background: var(--primary-soft, #f0ecfa);
  border-color: transparent;
  color: var(--accent, #553fae);
}

.hdr-cat-sheet-item:hover,
.hdr-cat-sheet-item:focus-visible {
  border-color: var(--accent, #553fae);
}

body.hdr-cat-sheet-lock {
  overflow: hidden;
}

.hdr-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 2px solid var(--primary);
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s var(--ease), border-color 0.15s var(--ease), transform 0.15s var(--ease);
}

.hdr-menu-btn:hover,
.hdr-menu-btn:focus-visible {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

.hdr-menu-mark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5px;
  width: 15px;
}

.hdr-menu-mark i {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: #ff8c00;
  transition: transform 0.2s ease, opacity 0.15s ease, width 0.2s ease;
  transform-origin: center;
}

.hdr-menu-mark i:nth-child(1),
.hdr-menu-mark i:nth-child(2),
.hdr-menu-mark i:nth-child(3) {
  width: 100%;
}

.site-header.is-menu-open .hdr-menu-mark i:nth-child(1) {
  width: 100%;
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .hdr-menu-mark i:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.site-header.is-menu-open .hdr-menu-mark i:nth-child(3) {
  width: 100%;
  transform: translateY(-6px) rotate(-45deg);
}

.hdr-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-sheet) + 10);
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(17, 24, 39, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hdr-drawer-backdrop.is-open {
  opacity: 1;
}

.hdr-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--z-sheet) + 11);
  width: min(22rem, 88vw);
  height: 100%;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  border-left: 1px solid var(--border);
  background: #fff;
  box-shadow: -16px 0 40px rgba(17, 24, 39, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
  pointer-events: none;
}

.hdr-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.hdr-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: max(0.35rem, env(safe-area-inset-top, 0px)) 0 max(0.75rem, env(safe-area-inset-bottom, 0px));
}

.hdr-drawer-nav > a:not(.hdr-d-cta),
.hdr-drawer-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem var(--site-gutter);
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  border: 0;
  border-bottom: 1px solid #f3f4f6;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.hdr-drawer-nav > a:not(.hdr-d-cta):hover,
.hdr-drawer-nav > a:not(.hdr-d-cta):focus-visible,
.hdr-drawer-acc:hover,
.hdr-drawer-acc:focus-visible {
  color: var(--accent);
  background: #faf9fc;
}

.hdr-drawer-nav > a.hdr-drawer-break {
  border-top-width: 6px;
  border-top-color: #f3f4f6;
}

.hdr-drawer-acc-chev {
  color: #9ca3af;
  transition: transform 0.2s ease;
}

.hdr-drawer-acc.is-open .hdr-drawer-acc-chev {
  transform: rotate(180deg);
  color: var(--accent);
}

.hdr-drawer-sub {
  display: flex;
  flex-direction: column;
  background: #faf9fc;
  border-bottom: 1px solid #f3f4f6;
}

.hdr-drawer-sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem var(--site-gutter) 0.55rem calc(var(--site-gutter) + 0.75rem);
  font-size: 0.92rem;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.hdr-drawer-sub a:last-child {
  border-bottom: 0;
}

.hdr-drawer-sub a:hover,
.hdr-drawer-sub a:focus-visible {
  color: var(--accent);
  background: #f3f0fa;
}

.hdr-drawer-social {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem var(--site-gutter) 0.85rem;
  border-bottom: 1px solid #f3f4f6;
}

.hdr-drawer-social-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hdr-drawer-social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hdr-drawer-social-btns .brand-auth-tile {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.hdr-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 36px;
  padding: 0 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 600;
}

.hdr-soc-btn:hover,
.hdr-soc-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.hdr-soc-g {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #ea4335;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.hdr-soc-a {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  background: #111827;
  border-radius: 0.2rem;
  clip-path: polygon(50% 0, 100% 35%, 82% 100%, 18% 100%, 0 35%);
}

html.hdr-menu-lock,
html.hdr-menu-lock body {
  overflow: hidden !important;
  overscroll-behavior: none;
  height: 100%;
  height: 100dvh;
}

body.hdr-menu-lock {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

html.hdr-menu-lock .hdr-drawer {
  touch-action: pan-y;
}

.site-header.is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: calc(var(--z-sheet) + 40);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.site-logo .logo-img {
  display: block;
  height: 40px;
  width: auto;
}

.site-logo .logo-img-on-dark {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #111827;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.site-nav .nav-chev {
  font-size: 0.65rem;
  color: #9ca3af;
  transform: translateY(-1px);
}

.site-nav a.active {
  color: var(--accent);
  font-weight: 600;
  border-bottom-color: transparent;
}

.site-nav a:hover:not(.active) {
  color: var(--accent);
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.brand-auth-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.brand-auth-tile .brand-auth-ico {
  display: block;
}

.brand-auth-tile.is-login,
.hdr-login-btn {
  background: var(--primary);
  color: #fff;
}

.brand-auth-tile.is-facebook {
  background: #1877f2;
}

.brand-auth-tile.is-google {
  background: #fff;
  border: 1px solid #e5e7eb;
}

.brand-auth-tile.is-apple {
  background: #111111;
}

.hdr-login-btn:hover,
.hdr-login-btn:focus-visible,
.brand-auth-tile.is-login:hover,
.brand-auth-tile.is-login:focus-visible {
  background: var(--primary-hover);
}

.site-actions .link-quiet {
  display: none;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9375rem;
}

.site-actions .link-quiet:hover {
  color: var(--accent-strong);
}

.hdr-icon-btn {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  flex-shrink: 0;
  transition: border-color 0.15s var(--ease), color 0.15s var(--ease), background 0.15s var(--ease);
}

.hdr-icon-btn:hover {
  border-color: #d1d5db;
  color: var(--accent);
  background: #fafafa;
}

.hdr-icon-btn svg {
  display: block;
}

.hdr-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-sizing: border-box;
  border: 2px solid #fff;
}

.hdr-profile {
  position: relative;
  display: none;
  flex-shrink: 0;
}

.hdr-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 44px;
  padding: 0 0.7rem 0 0.45rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}

.hdr-profile-btn:hover,
.hdr-profile-btn[aria-expanded="true"] {
  border-color: #d1d5db;
  background: #fafafa;
}

.hdr-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hdr-profile-name {
  max-width: 12ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hdr-profile-chev {
  display: inline-flex;
  color: #9ca3af;
  margin-left: 0.1rem;
}

.hdr-profile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
  z-index: 80;
  display: grid;
  gap: 0.15rem;
}

.hdr-profile-menu[hidden] {
  display: none !important;
}

.hdr-profile-menu a,
.hdr-profile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111827;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 550;
  cursor: pointer;
  text-decoration: none;
}

.hdr-profile-menu a:hover,
.hdr-profile-menu button:hover {
  background: #f3f4f6;
  color: var(--accent);
}

.hdr-profile-menu button[data-hdr-logout] {
  margin-top: 0.2rem;
  border-top: 1px solid #eef0f4;
  border-radius: 0 0 8px 8px;
  color: #b42318;
}

.hdr-profile-menu button[data-hdr-logout]:hover {
  background: #fef3f2;
  color: #b42318;
}

.btn-post {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: var(--text-on-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background 0.15s var(--ease);
}

.btn-post .ico {
  margin-left: -0.15rem;
}

.btn-post-short {
  display: none;
}

.btn-post:hover {
  background: var(--primary-hover);
  filter: none;
  color: var(--text-on-primary);
}

.btn-post:active {
  background: var(--primary-active);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.15rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
}

.btn-register:hover {
  background: var(--accent-soft);
}

.site-actions .link-account {
  max-width: 14ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-shell.is-guest .site-actions .link-quiet {
  display: inline;
}

.site-shell:not(.is-guest) .hdr-icon-btn,
.site-shell:not(.is-guest) .hdr-profile {
  display: inline-flex;
}

.site-main {
  flex: 1;
  width: 100%;
}

.site-main > .page-wrap {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--site-gutter) 3rem;
}

.site-main.bleed > .page-wrap {
  max-width: none;
  padding: 0;
}

.site-footer {
  position: relative;
  z-index: var(--z-footer);
  background: #0b0b0f;
  color: #a1a1aa;
  margin-top: auto;
}

.footer-newsletter {
  background: #121218;
  border-bottom: 1px solid #1f1f27;
}

.footer-newsletter-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1.75rem var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}

.footer-newsletter-copy h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-newsletter-copy p {
  margin: 0;
  max-width: 42ch;
  color: #9ca3af;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 280px;
  max-width: 460px;
  margin-left: auto;
}

.footer-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid #2a2a33;
  background: #0b0b0f;
  color: #fff;
  font: inherit;
  font-size: 0.9375rem;
}

.footer-newsletter-form input::placeholder {
  color: #6b7280;
}

.footer-newsletter-form button {
  height: 46px;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text-on-primary);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
}

.footer-newsletter-form button:hover {
  background: var(--primary-hover);
}

.site-footer-inner,
.footer-main {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 3rem var(--site-gutter) 2rem;
}

.footer-main {
  display: grid;
  gap: 2rem 1.75rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 700;
}

.site-footer .brand-col .site-logo {
  color: #fff;
  margin-bottom: 1rem;
  display: inline-flex;
}

.site-footer .brand-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28ch;
  margin: 0 0 1.25rem;
  color: #9ca3af;
}

.social-row {
  display: flex;
  gap: 0.55rem;
}

.social-row a,
.social-row .social-muted {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1a1a22;
  display: grid;
  place-items: center;
  color: #fff;
}

.social-row a:hover {
  background: var(--accent);
}

.social-row .social-muted {
  opacity: 0.4;
  pointer-events: none;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-contact-item {
  display: grid;
  gap: 0.2rem;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.footer-contact-item span:last-child,
.footer-contact-item a {
  color: #c4c4cc;
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-trust {
  border-top: 1px solid #1f1f27;
  border-bottom: 1px solid #1f1f27;
}

.footer-trust-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1.25rem var(--site-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 1rem;
  border-right: 1px solid #1f1f27;
}

.footer-trust-item:first-child {
  padding-left: 0;
}

.footer-trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer-trust-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.18);
  color: #a78bfa;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.footer-trust-item strong {
  display: block;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
}

.footer-trust-item span {
  display: block;
  color: #8b8b96;
  font-size: 0.78rem;
  line-height: 1.35;
  margin-top: 0.1rem;
}

.footer-bottom {
  background: #0b0b0f;
}

.footer-bottom-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1.1rem var(--site-gutter) 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #6b7280;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-legal a,
.footer-bottom a {
  color: #6b7280;
}

.footer-legal a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.mobile-dock {
  display: grid;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .site-actions .link-quiet {
    display: inline;
  }

  .footer-main {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  }

  .mobile-dock {
    display: none !important;
  }

  .site-shell {
    padding-bottom: 0;
  }
}

@media (max-width: 899px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hdr-vehicle-mark {
    display: none;
  }

  .site-header.is-cats-allowed .hdr-vehicle-mark {
    display: inline-flex;
  }

  .hdr-menu-btn {
    display: inline-flex;
  }

  .site-header.is-menu-open .hdr-menu-btn {
    position: relative;
    z-index: calc(var(--z-sheet) + 41);
  }

  .hdr-drawer-backdrop:not([hidden]) {
    display: block;
  }

  .hdr-drawer:not([hidden]) {
    display: block;
  }

  .hdr-cats-panel:not([hidden]) {
    display: block;
  }
}
