@font-face {
  font-family: 'Inter';
  src: url('/csstest/fonts/inter-400.woff2') format('woff2'),
       url('/csstest/fonts/inter-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/csstest/fonts/inter-500.woff2') format('woff2'),
       url('/csstest/fonts/inter-500.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/csstest/fonts/inter-600.woff2') format('woff2'),
       url('/csstest/fonts/inter-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/csstest/fonts/inter-700.woff2') format('woff2'),
       url('/csstest/fonts/inter-700.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/csstest/fonts/montserrat-600.woff2') format('woff2'),
       url('/csstest/fonts/montserrat-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/csstest/fonts/montserrat-700.woff2') format('woff2'),
       url('/csstest/fonts/montserrat-700.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/csstest/fonts/montserrat-800.woff2') format('woff2'),
       url('/csstest/fonts/montserrat-800.ttf') format('truetype');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

/* Premium city theme */

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #262626;
  --bg-quaternary: #121212;
  --accent: #d4a853;
  --accent-hover: #e6bc6a;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-soft: #d6d6d6;
  --success: #22c55e;
  --error: #ef4444;
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

p {
  margin-top: 0;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-primary,
.sbm,
.fo-sbm,
.ord,
.as-sbm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #c49b48 100%);
  color: var(--bg-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.sbm:hover,
.fo-sbm:hover,
.ord:hover,
.as-sbm:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 168, 83, 0.25);
}

.btn-secondary,
.noord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.noord:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: transparent;
  color: var(--accent);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--panel-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.44);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-available {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.badge-hit {
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 168, 83, 0.28);
}

.badge-discount {
  background: rgba(239, 68, 68, 0.15);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.form-input,
.inp1,
.inp2,
.inp3,
.fo-txt,
textarea,
select {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-input:focus,
.inp1:focus,
.inp2:focus,
.inp3:focus,
.fo-txt:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.14);
}

.form-input::placeholder,
.inp1::placeholder,
.inp2::placeholder,
.inp3::placeholder,
.fo-txt::placeholder,
textarea::placeholder {
  color: var(--text-secondary);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
}

.price-large {
  font-size: 32px;
}

.price-medium {
  font-size: 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.985);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.city-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.city-logo:hover {
  color: var(--text-primary);
}

.city-logo__icon,
.city-logo__wordmark {
  display: block;
  flex-shrink: 0;
}

.city-logo__icon {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 14px 30px rgba(212, 168, 83, 0.22));
}

.city-logo__wordmark {
  width: 178px;
  height: auto;
}

.city-logo--header .city-logo__wordmark {
  width: 170px;
}

.city-logo--menu .city-logo__wordmark,
.city-logo--footer .city-logo__wordmark {
  width: 182px;
}

.header-main-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-contact-shell {
  flex-shrink: 1;
  min-width: 0;
}

.header-utility-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.88);
  color: var(--text-primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-utility-button:hover {
  border-color: rgba(212, 168, 83, 0.36);
  background:
    linear-gradient(180deg, rgba(212, 168, 83, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 18, 0.96);
  transform: translateY(-1px);
}

.header-chip {
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.city-switcher {
  cursor: pointer;
  color: var(--text-primary);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.city-switcher:hover,
.city-switcher.active {
  border-color: rgba(212, 168, 83, 0.38);
  background:
    linear-gradient(180deg, rgba(212, 168, 83, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 18, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.city-switcher-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 92px;
}

.city-switcher-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.city-switcher-value {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-primary);
}

.city-switcher-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.25s ease;
}

.city-switcher.active .city-switcher-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.city-switcher-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 280px;
  max-height: min(70vh, 420px);
  padding: 8px;
  overflow-y: auto;
  border-radius: 18px;
  background: rgba(18, 18, 18, 0.98);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.city-switcher.active .city-switcher-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.city-switcher-dropdown button {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.city-switcher-dropdown button:hover {
  background: rgba(212, 168, 83, 0.12);
  color: var(--text-primary);
  transform: translateX(2px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.dropdown {
  position: relative;
}

.header-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.header-nav-button:hover {
  color: var(--text-primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 14px;
  background: rgba(26, 26, 26, 0.98);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 300px;
  max-width: min(360px, calc(100vw - 24px));
  padding: 16px;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: rgba(26, 26, 26, 0.98);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.popover.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-contact-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.88);
  color: var(--text-primary);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-contact-trigger:hover,
.header-contact-trigger.is-active {
  border-color: rgba(212, 168, 83, 0.36);
  background:
    linear-gradient(180deg, rgba(212, 168, 83, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 18, 18, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.header-contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.header-contact-label {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.header-phone-number {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.hero-bg picture,
.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.92) 0%, rgba(13, 13, 13, 0.56) 100%);
}

.car-card {
  position: relative;
}

.car-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.05);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(18, 18, 18, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.tab.active {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.18), rgba(212, 168, 83, 0.08));
  color: #f2d291;
  box-shadow:
    inset 0 0 0 1px rgba(212, 168, 83, 0.28),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.tab:focus-visible {
  outline: 2px solid rgba(212, 168, 83, 0.7);
  outline-offset: 2px;
}

.tab-content,
[data-tab-panel] {
  display: none;
}

.tab-content.active,
[data-tab-panel].active {
  display: block;
}

.lightbox {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 8px;
}

.gallery-grid-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.02);
}

.form-group {
  position: relative;
}

.form-group.error .form-input {
  border-color: var(--error);
}

.form-group.success .form-input {
  border-color: var(--success);
}

.form-error {
  margin-top: 4px;
  font-size: 12px;
  color: var(--error);
}

.btn-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--bg-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: city-spin 0.8s linear infinite;
}

.btn-success {
  background: var(--success) !important;
}

@keyframes city-spin {
  to {
    transform: rotate(360deg);
  }
}

.checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-custom input {
  display: none;
}

.checkbox-custom-box {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid var(--bg-tertiary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.checkbox-custom input:checked + .checkbox-custom-box {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-custom-box svg {
  width: 12px;
  height: 12px;
  color: var(--bg-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-custom input:checked + .checkbox-custom-box svg {
  opacity: 1;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.characteristic-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-tertiary);
}

.characteristic-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-secondary);
  color: var(--accent);
}

.tariff-card {
  position: relative;
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  transition: all 0.3s ease;
}

.tariff-card.featured {
  border: 2px solid var(--accent);
}

.tariff-card.featured::before {
  content: 'Популярно';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 12px;
  font-weight: 600;
}

.tariff-card:hover {
  transform: translateY(-4px);
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--panel-border);
}

.footer-messenger-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-messenger-link:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.footer-messenger-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-messenger-link--wa:hover {
  border-color: rgba(37, 211, 102, 0.32);
  background: rgba(37, 211, 102, 0.12);
}

.footer-messenger-link--tg:hover {
  border-color: rgba(34, 158, 217, 0.32);
  background: rgba(34, 158, 217, 0.12);
}

.footer-messenger-link--max:hover {
  border-color: rgba(212, 168, 83, 0.36);
  background: rgba(212, 168, 83, 0.12);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-secondary);
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.breadcrumbs-separator {
  color: var(--panel-border);
}

.review-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
}

.review-rating {
  display: flex;
  gap: 4px;
}

.review-rating svg {
  color: var(--accent);
}

.article-card {
  display: block;
  position: relative;
}

.article-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

/* Tailwind-like utility layer used by /2 markup */
.absolute { position: absolute; }
.relative { position: relative; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-relaxed { line-height: 1.625; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.bg-accent { background-color: var(--accent); }
.bg-bg-primary { background-color: var(--bg-primary); }
.bg-bg-secondary { background-color: var(--bg-secondary); }
.bg-bg-tertiary { background-color: var(--bg-tertiary); }
.text-accent { color: var(--accent); }
.text-bg-primary { color: var(--bg-primary); }
.text-text-primary { color: var(--text-primary); }
.text-text-secondary { color: var(--text-secondary); }
.border-bg-tertiary { border-color: var(--bg-tertiary); }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.aspect-video { aspect-ratio: 16 / 9; }
.min-h-\[400px\] { min-height: 400px; }
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-from, transparent), var(--tw-gradient-to, transparent));
}
.from-bg-secondary { --tw-gradient-from: var(--bg-secondary); }
.to-bg-tertiary { --tw-gradient-to: var(--bg-tertiary); }
.bg-accent\/20 { background-color: rgba(212, 168, 83, 0.2); }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.font-body { font-family: 'Inter', sans-serif; }
.font-heading { font-family: 'Montserrat', sans-serif; }
.hover\:bg-accent:hover { background-color: var(--accent); color: var(--bg-primary); }
.hover\:bg-bg-primary:hover { background-color: var(--bg-primary); }
.hover\:bg-bg-secondary:hover { background-color: var(--bg-secondary); }
.hover\:bg-bg-tertiary:hover { background-color: var(--bg-tertiary); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-accent-hover:hover { color: var(--accent-hover); }
.hover\:text-bg-primary:hover { color: var(--bg-primary); }
.hover\:text-text-primary:hover { color: var(--text-primary); }
.hover\:underline:hover { text-decoration: underline; }

/* Site shell */
.site-main {
  padding-top: 88px;
}

.site-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-section {
  padding: 4rem 0;
}

.site-section--tight {
  padding: 2rem 0;
}

.site-panel {
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--panel-shadow);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(212, 168, 83, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 44rem;
  color: var(--text-secondary);
  font-size: 16px;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.18) 100%);
  box-shadow: var(--panel-shadow);
}

.hero-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 168, 83, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-image-wrap {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0.45) 48%, rgba(13, 13, 13, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-search {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(212, 168, 83, 0.14);
  border-radius: 20px;
  background: rgba(13, 13, 13, 0.66);
  backdrop-filter: blur(8px);
}

.hero-search-grid,
.search-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stats-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
}

.stats-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: var(--accent);
}

.catalog-grid,
.news-grid,
.article-grid,
.reviews-grid,
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-card__media {
  position: relative;
}

.catalog-card__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.catalog-card__content {
  padding: 22px;
}

.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
  color: var(--text-secondary);
  font-size: 14px;
}

.catalog-card__meta span {
  position: relative;
  padding-right: 12px;
}

.catalog-card__meta span:not(:last-child)::after {
  content: '•';
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.18);
}

.catalog-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.catalog-card__price {
  flex: 0 0 auto;
  min-width: 0;
}

.catalog-card__price-total {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-secondary);
}

.catalog-card__price-total strong {
  color: var(--text-primary);
  font-weight: 600;
}

.catalog-card__actions {
  display: inline-flex;
  align-items: stretch;
  gap: 8px;
  flex: 0 1 auto;
  margin-left: auto;
}

.catalog-card__actions .btn-outline-gold,
.catalog-card__actions .btn-primary {
  min-width: 0;
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
  text-align: center;
  line-height: 1.15;
}

@media (max-width: 720px) {
  .catalog-card__actions {
    width: 100%;
    margin-left: 0;
  }

  .catalog-card__actions .btn-outline-gold,
  .catalog-card__actions .btn-primary {
    flex: 1 1 0;
  }
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}

.status-pill--free {
  background: rgba(34, 197, 94, 0.14);
  color: var(--success);
}

.status-pill--busy {
  background: rgba(239, 68, 68, 0.14);
  color: #ff8b8b;
}

.news-preview {
  color: var(--text-secondary);
}

.news-preview p {
  margin: 0 0 12px;
}

.news-preview p:last-child {
  margin-bottom: 0;
}

.news-preview a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 168, 83, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news-preview a:hover {
  color: var(--accent-hover);
  border-color: rgba(230, 188, 106, 0.8);
}

.news-preview ul,
.news-preview ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

.news-preview li + li {
  margin-top: 6px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 83, 0.12);
  color: var(--accent);
}

.feature-icon svg,
.success-card__icon svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.surface-form {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.92) 0%, rgba(19, 19, 19, 0.92) 100%);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.surface-form form,
.surface-form .a-sel {
  margin: 0;
}

.surface-form .form-grid,
.surface-form .a-sel,
.surface-form .booking-grid {
  display: grid;
  gap: 16px;
}

.surface-form .submit-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.review-surface {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.review-platform {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.article-surface,
.page-surface {
  padding: 28px;
  border-radius: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.article-surface img,
.page-surface img {
  border-radius: 18px;
}

.prose,
.article-content,
.page-content,
.page-surface {
  color: var(--text-soft);
}

.prose h2,
.page-surface h2,
.article-content h2 {
  margin: 32px 0 12px;
  font-size: 28px;
}

.prose h3,
.page-surface h3,
.article-content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.prose p,
.page-surface p,
.article-content p,
.prose ul,
.page-surface ul,
.article-content ul,
.prose ol,
.page-surface ol,
.article-content ol {
  margin-bottom: 16px;
}

.prose a,
.page-surface a,
.article-content a {
  color: var(--accent);
}

.prose table,
.page-surface table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.prose th,
.prose td,
.page-surface th,
.page-surface td {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.prose th,
.page-surface th {
  background: rgba(255, 255, 255, 0.04);
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
}

.contact-card h3 {
  margin-bottom: 12px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
}

.contact-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-map {
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  background: var(--bg-secondary);
}

.contact-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.success-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(18, 18, 18, 0.96) 100%);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.success-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  background: var(--bg-secondary);
  box-shadow: var(--panel-shadow);
}

.price-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.price-table-wrap th,
.price-table-wrap td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.price-table-wrap th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.price-table-wrap td:first-child,
.price-table-wrap th:first-child {
  text-align: left;
}

.car-layout {
  display: grid;
  gap: 24px;
}

.car-hero-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.car-gallery {
  padding: 20px;
  border-radius: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.car-gallery-main {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--bg-quaternary);
}

.car-gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.car-thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.car-thumb {
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-quaternary);
}

.car-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.car-thumb:hover,
.car-thumb.is-active {
  border-color: var(--accent);
}

.car-summary {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(18, 18, 18, 0.96) 100%);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.car-summary__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.car-summary__meta {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.car-summary__meta dl {
  margin: 0;
  display: grid;
  gap: 4px;
}

.car-summary__meta dt {
  color: var(--text-secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.car-summary__meta dd {
  margin: 0;
  font-size: 16px;
}

.car-tabs {
  margin-top: 20px;
}

.feature-list,
.simple-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.simple-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--text-soft);
}

.feature-list li::before,
.simple-list li::before {
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 9999px;
  background: var(--accent);
}

.booking-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.booking-form-card,
.booking-side-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(18, 18, 18, 0.96) 100%);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.booking-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.booking-section__title {
  margin-bottom: 16px;
  font-size: 22px;
}

.booking-list,
.booking-list ul,
.country,
.payment {
  list-style: none;
  margin: 0;
  padding: 0;
}

.booking-grid {
  display: grid;
  gap: 16px;
}

.booking-grid--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.booking-item,
.country li,
.payment li {
  list-style: none;
}

.booking-item label,
.booking-option label,
.rent-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.booking-option {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.booking-option input[type="radio"],
.booking-option input[type="checkbox"],
.country input,
.payment input {
  margin-right: 8px;
}

.booking-summary-list {
  display: grid;
  gap: 14px;
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
}

.booking-summary-row strong {
  color: var(--text-primary);
}

.booking-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(212, 168, 83, 0.08);
  color: var(--text-secondary);
}

.rent-form .error {
  margin-top: 6px;
  font-size: 12px;
  color: #ff9b9b;
}

.rent-form .err_border {
  border-color: var(--error);
}

.rent-form sup {
  color: var(--accent);
}

.rent-form .chapter {
  margin-top: 28px;
}

.rent-form .ch-hdr {
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.rent-form .ch-hdr span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.14);
  color: var(--accent);
}

.dop-uslugi-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dop-usluga-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.dop-usluga-label {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin: 0;
}

.dop-usluga-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.privacy-consent-label {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 6px;
}

.privacy-consent-checkbox {
  margin-top: 2px;
}

.privacy-consent-text,
.privacy-consent-text a {
  color: var(--text-secondary);
}

.privacy-consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.a-sel {
  display: grid;
  gap: 16px;
}

.search-form .form-field,
.a-sel .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-form .cb,
.a-sel .cb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pager {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 9999px;
  background: var(--bg-secondary);
  border: 1px solid var(--panel-border);
  color: var(--text-secondary);
}

.pager a.active,
.pager a:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.field-error-msg,
.field-warning-msg {
  white-space: normal !important;
  background: var(--bg-primary) !important;
  border-radius: 8px;
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .site-wrap {
    padding: 0 2rem;
  }

  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:aspect-auto { aspect-ratio: auto; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }

  .hero-copy {
    padding: 64px 40px;
  }
}

@media (min-width: 1280px) {
  .xl\:flex { display: flex; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .header-main-row {
    min-height: 76px;
    gap: 16px;
  }

  .city-logo__icon {
    width: 48px;
    height: 48px;
  }

  .city-logo--header .city-logo__wordmark {
    width: 156px;
  }

  .site-main {
    padding-top: 84px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-grid-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .car-hero-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-main-row {
    min-height: 72px;
    gap: 12px;
  }

  .city-logo {
    gap: 12px;
  }

  .city-logo__icon {
    width: 44px;
    height: 44px;
  }

  .city-logo--menu .city-logo__wordmark,
  .city-logo--footer .city-logo__wordmark {
    width: 166px;
  }

  .header-main-actions {
    gap: 8px;
  }

  .header-contact-trigger {
    min-height: 44px;
    padding: 8px 12px;
    gap: 10px;
  }

  .header-contact-copy {
    min-width: 0;
  }

  .header-contact-label {
    display: none;
  }

  .header-phone-number {
    font-size: 13px;
    white-space: nowrap;
  }

  .popover {
    min-width: min(320px, calc(100vw - 24px));
    width: min(320px, calc(100vw - 24px));
    right: 0;
  }

  .site-main {
    padding-top: 80px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid-item:first-child {
    grid-column: span 1;
  }

  .gallery-grid-item {
    height: 200px;
  }

  .price-large {
    font-size: 24px;
  }

  .price-medium {
    font-size: 18px;
  }

  .site-section {
    padding: 3rem 0;
  }

  .hero-copy {
    padding: 36px 20px;
  }

  .hero-search,
  .surface-form,
  .booking-form-card,
  .booking-side-card,
  .car-summary,
  .car-gallery,
  .article-surface,
  .page-surface {
    padding: 20px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .city-logo--compact-mobile {
    gap: 0;
  }

  .city-logo--compact-mobile .city-logo__wordmark {
    display: none;
  }
}
