:root {
  --ink: #162127;
  --muted: #5e6a6d;
  --line: #d7dee0;
  --paper: #f6f5f1;
  --panel: #ffffff;
  --mint: #4fa8bd;
  --mint-dark: #205d73;
  --coral: #f07932;
  --gold: #f3b33d;
  --leaf: #6f8f57;
  --smoke: #edf1f2;
  --hero-image: url("assets/hero-containers.webp");
  --logo-image: url("assets/logo-pulsar.webp?v=20260702-2");
  --shadow: 0 18px 46px rgba(20, 32, 31, 0.12);
  --radius: 8px;
  --container: 1500px;
  --page-gutter: 22px;
}

svg[viewBox="0 0 24 24"],
.lucide {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.drawer-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

code {
  border-radius: 6px;
  background: var(--smoke);
  padding: 2px 6px;
  color: var(--ink);
  font-size: 0.92em;
}

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 34px;
  min-height: 36px;
  padding: 8px 18px;
  background: #14201f;
  color: #fffaf0;
  font-size: 0.88rem;
}

.topbar span {
  white-space: nowrap;
}

.simple-header {
  grid-template-columns: minmax(205px, auto) minmax(0, 1fr) minmax(210px, auto);
}

.topbar,
.main-nav,
.category-row {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.topbar::-webkit-scrollbar,
.main-nav::-webkit-scrollbar,
.category-row::-webkit-scrollbar {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(205px, auto) minmax(0, 1fr) minmax(230px, auto) auto;
  align-items: center;
  gap: 10px;
  padding: 16px max(var(--page-gutter), calc((100vw - var(--container)) / 2));
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid rgba(220, 226, 222, 0.82);
  backdrop-filter: blur(16px);
}

.site-header.simple-header {
  grid-template-columns: minmax(205px, auto) minmax(0, 1fr) minmax(210px, auto);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 42px;
  flex: 0 0 58px;
  border-radius: var(--radius);
  background: #fff var(--logo-image) center / contain no-repeat;
  box-shadow: 0 8px 18px rgba(12, 18, 18, 0.18);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
}

.main-nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  min-width: 0;
  overflow: visible;
  color: #31413f;
  font-size: 0.9rem;
  white-space: nowrap;
}

.main-nav a,
.nav-dropdown > summary {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  color: #31413f;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 120;
  display: grid;
  grid-auto-flow: row;
  gap: 4px;
  min-width: 250px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 32, 31, 0.16);
  white-space: normal;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: calc(var(--radius) - 2px);
  line-height: 1.25;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f4f7f5;
  color: var(--mint-dark);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"],
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown.is-current > summary {
  border-color: var(--coral);
}

.nav-dropdown[open] > summary {
  background: #fff;
  box-shadow: 0 8px 20px rgba(20, 32, 31, 0.08);
}

.header-search,
.catalog-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search i,
.catalog-search i,
.header-search svg,
.catalog-search svg {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.header-search input,
.catalog-search input,
.footer-form input,
.sort-control select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.header-search input,
.catalog-search input {
  padding: 0 14px 0 42px;
}

.footer-form input {
  padding: 0 14px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.header-search input:focus,
.catalog-search input:focus,
.footer-form input:focus,
.sort-control select:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.22);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.header-action-button::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: max-content;
  max-width: 180px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.header-action-button:hover::after,
.header-action-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.header-contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 800;
}

.header-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  white-space: nowrap;
}

.header-contacts svg,
.header-contacts i {
  width: 16px;
  height: 16px;
  color: var(--mint-dark);
}

.header-messenger {
  cursor: pointer;
}

.messenger-logo {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}

.messenger-logo-telegram {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background: #2aabee;
}

.messenger-logo-telegram::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(1px) rotate(-9deg);
}

.messenger-logo-max {
  border-radius: 6px;
  background: linear-gradient(135deg, #5b33d6 0%, #231338 100%);
  font-size: 0.38rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-modal-line .messenger-logo {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.contact-modal-line .messenger-logo-max {
  font-size: 0.46rem;
}

.header-contacts a:hover,
.header-contacts a:focus-visible {
  color: var(--mint-dark);
}

.header-contacts a,
.footer-bottom > a[href^="mailto:"],
.footer-phone {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.header-contacts a:hover,
.header-contacts a:focus,
.header-contacts a:focus-visible,
.footer-bottom > a[href^="mailto:"]:hover,
.footer-bottom > a[href^="mailto:"]:focus,
.footer-bottom > a[href^="mailto:"]:focus-visible,
.footer-phone:hover,
.footer-phone:focus,
.footer-phone:focus-visible {
  color: var(--mint-dark);
  box-shadow: none;
  text-decoration: none;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.icon-button:hover,
.icon-button:focus-visible {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.18);
}

.icon-button i,
.icon-button svg {
  width: 20px;
  height: 20px;
}

.counter {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--coral);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
}

.counter[hidden] {
  display: none;
}

.hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(251, 250, 245, 0.98) 0%,
      rgba(251, 250, 245, 0.94) 31%,
      rgba(251, 250, 245, 0.4) 58%,
      rgba(251, 250, 245, 0.08) 100%
    ),
    var(--hero-image) center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 60px 0 76px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: clamp(3.3rem, 4.9vw, 4.25rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

#hero-title {
  white-space: nowrap;
}

h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
  line-height: 1.12;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 510px;
  margin-bottom: 26px;
  color: #40504e;
  font-size: 1.16rem;
}

.hero-actions,
.card-actions,
.catalog-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.plain-button,
.category-filter,
.collection-card {
  border: 0;
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
}

.button i,
.plain-button i,
.button svg,
.plain-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.mobile-call-button {
  display: none;
}

.button:hover,
.button:focus-visible,
.category-filter:hover,
.category-filter:focus-visible,
.collection-card:hover,
.collection-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin: 34px 0 0;
}

.hero-stats div {
  min-width: 82px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 52px 0;
}

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

.catalog-section {
  padding-top: 58px;
}

.catalog-page .catalog-section {
  min-height: 68vh;
}

.section-note {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
}

.catalog-tools {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.catalog-search {
  width: min(310px, 100%);
}

.sort-control {
  display: grid;
  gap: 6px;
  min-width: 190px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.sort-control select {
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.95rem;
}

.category-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scrollbar-width: thin;
}

.category-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  min-height: 42px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: #283735;
  font-weight: 750;
}

.category-filter i,
.category-filter svg {
  width: 18px;
  height: 18px;
}

.category-filter.active {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: #fff;
}

.catalog-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin-bottom: 18px;
  color: var(--muted);
}

.plain-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  background: transparent;
  color: var(--mint-dark);
  font-weight: 800;
}

.plain-button:hover,
.plain-button:focus-visible {
  background: rgba(95, 198, 184, 0.14);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.no-results {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.no-results i,
.no-results svg {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  color: var(--mint-dark);
}

.no-results strong {
  color: var(--ink);
}

.product-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(20, 32, 31, 0.06);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.product-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: clamp(268px, 20vw, 310px);
  overflow: hidden;
  padding: 0;
  background: var(--smoke);
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.product-media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.product-media-button {
  cursor: pointer;
}

.product-media-button:hover img,
.product-media-button:focus-visible img {
  transform: scale(1.025);
}

.product-media-button:focus-visible {
  outline: 3px solid rgba(32, 93, 115, 0.24);
  outline-offset: -3px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--gold);
  color: #2b240f;
  font-size: 0.75rem;
  font-weight: 900;
}

.favorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
}

.favorite-button.active {
  color: var(--coral);
  border-color: rgba(239, 112, 92, 0.45);
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.product-info h3 {
  min-height: 52px;
  margin-bottom: 8px;
}

.product-desc {
  min-height: 44px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.86rem;
}

.rating,
.stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rating i,
.rating svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.price-row-compact {
  margin-bottom: 4px;
}

.price {
  font-size: 1.22rem;
  font-weight: 900;
}

.rent-price-note {
  display: block;
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-weight: 800;
}

.old-price {
  color: #8b9694;
  font-size: 0.92rem;
  text-decoration: line-through;
}

.card-actions {
  display: flex;
  gap: 10px;
}

.card-actions .button {
  flex: 1;
}

.collection-grid,
.booking-steps,
.forbidden-grid,
.service-grid,
.location-grid,
.reviews-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

.collection-card {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.collection-card:nth-child(1) {
  border-top: 5px solid var(--mint);
}

.collection-card:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.collection-card:nth-child(3) {
  border-top: 5px solid var(--coral);
}

.collection-card:nth-child(4) {
  border-top: 5px solid var(--leaf);
}

.collection-card i,
.collection-card svg {
  width: 32px;
  height: 32px;
  color: var(--mint-dark);
}

.collection-card strong {
  font-size: 1.2rem;
}

.collection-card span {
  color: var(--muted);
}

.booking-section {
  padding-top: 42px;
}

.compact-service-grid .service-item {
  min-height: auto;
}

.rent-process {
  padding-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px 14px;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(20, 32, 31, 0.045);
}

.process-list article::before,
.process-list article:not(:last-child)::after {
  display: none;
  content: none;
}

.process-icon {
  display: inline-flex;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--mint-dark);
  background: rgba(32, 93, 115, 0.09);
}

.process-icon svg {
  width: 20px;
  height: 20px;
}

.process-list strong {
  display: block;
  min-width: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.process-list span:not(.process-icon) {
  display: block;
  min-width: 0;
  color: var(--muted);
  line-height: 1.5;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.booking-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-step,
.booking-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 32, 31, 0.06);
}

.booking-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: start;
  gap: 8px 10px;
  min-height: auto;
  padding: 14px;
}

.booking-step i,
.booking-step svg {
  width: 24px;
  height: 24px;
  color: var(--mint-dark);
}

.booking-step strong {
  font-size: 1rem;
}

.booking-step span,
.faq-item p {
  color: var(--muted);
}

.booking-step span {
  grid-column: 2;
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.booking-form h3 {
  margin: 0;
  font-size: 1.45rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label:not(.consent-check) {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0 12px;
}

.booking-form textarea {
  min-height: 96px;
  padding: 11px 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.22);
}

.booking-form .consent-check {
  color: var(--muted);
}

.booking-form .consent-check a {
  color: var(--ink);
}

.forbidden-section {
  padding-top: 62px;
}

.forbidden-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.forbidden-lead,
.forbidden-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 32, 31, 0.06);
}

.forbidden-lead {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.forbidden-lead i,
.forbidden-lead svg {
  width: 42px;
  height: 42px;
  color: var(--coral);
}

.forbidden-lead strong {
  font-size: 1.12rem;
  line-height: 1.35;
}

.forbidden-lead p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.forbidden-item {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.forbidden-item i,
.forbidden-item svg {
  width: 30px;
  height: 30px;
  color: var(--mint-dark);
}

.forbidden-item span {
  color: var(--muted);
}

.service-band {
  background: #eaf4ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 38px;
  align-items: start;
}

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

.service-item {
  display: grid;
  gap: 12px;
}

.service-link {
  color: var(--ink);
  text-decoration: none;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--mint-dark);
}

.forbidden-highlight {
  border: 1px solid rgba(201, 68, 55, 0.32);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(135deg, rgba(201, 68, 55, 0.08), #fff 58%);
  box-shadow: 0 10px 28px rgba(201, 68, 55, 0.08);
}

.forbidden-highlight svg,
.forbidden-highlight i {
  color: #a6382f;
}

.forbidden-highlight em {
  display: inline-flex;
  justify-self: start;
  margin-top: 4px;
  padding: 8px 10px;
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  color: #a6382f;
  font-style: normal;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(201, 68, 55, 0.24);
}

.service-item i,
.service-item svg {
  width: 34px;
  height: 34px;
  color: var(--coral);
}

.service-item span,
.location-card span,
.footer-main p,
.footer-bottom,
.review-card p {
  color: var(--muted);
}

.location-section {
  padding-bottom: 50px;
}

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

.location-card {
  display: grid;
  gap: 9px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20, 32, 31, 0.05);
}

.location-card i,
.location-card svg {
  width: 32px;
  height: 32px;
  color: var(--mint-dark);
}

.location-card span {
  font-size: 0.86rem;
  font-weight: 800;
}

.location-card strong {
  font-size: 1.08rem;
}

.location-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.location-photos {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.location-photos img {
  display: block;
  width: 100%;
  height: 172px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
  object-fit: cover;
}

.map-panel {
  display: grid;
  min-width: 0;
}

.map-panel iframe {
  width: 100%;
  height: 360px;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

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

.review-card {
  padding: 22px;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.review-meta strong {
  font-size: 1rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-meta .review-source {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 3px 7px;
  border-radius: 6px;
  background: #edf7f4;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--gold);
}

.stars i,
.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.review-card p {
  min-height: 84px;
}

.legal-notice-section {
  width: min(var(--container), calc(100% - var(--page-gutter) * 2));
  margin: 0 auto 56px;
}

.faq-section {
  padding-top: 48px;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  margin-bottom: 0;
}

.legal-notice-panel {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 32, 31, 0.06);
}

.legal-notice-panel strong {
  font-size: 1rem;
}

.legal-notice-panel p {
  max-width: 980px;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.legal-details dt {
  color: var(--muted);
  font-weight: 900;
}

.legal-details dd {
  margin: 0;
  font-weight: 800;
}

.seo-landing-card img {
  width: 100%;
  max-height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--soft);
}

.catalog-choice-shell {
  max-width: 820px;
}

.catalog-choice-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.catalog-choice-link {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(20, 32, 31, 0.06);
}

.catalog-choice-image {
  width: 100%;
  height: 96px;
  max-width: 128px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  background: var(--soft);
}

.catalog-choice-link i,
.catalog-choice-link svg {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  color: var(--mint-dark);
}

.catalog-choice-link strong,
.catalog-choice-link small {
  display: block;
}

.catalog-choice-link strong {
  font-size: 1.18rem;
}

.catalog-choice-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.catalog-choice-rent {
  border-top: 5px solid var(--mint);
}

.catalog-choice-sale {
  border-top: 5px solid var(--coral);
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.support-links i,
.support-links svg {
  width: 18px;
  height: 18px;
  color: var(--mint-dark);
}

.site-footer {
  background: #16211f;
  color: #fff;
  padding: 46px max(var(--page-gutter), calc((100vw - var(--container)) / 2)) 24px;
}

.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-main {
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand .brand-mark {
  background: #fff var(--logo-image) center / contain no-repeat;
}

.footer-brand strong,
.footer-brand small {
  color: #fff;
}

.footer-main p {
  max-width: 410px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-form {
  display: grid;
  gap: 10px;
  width: min(460px, 100%);
}

.footer-form label {
  font-weight: 800;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 500 !important;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--coral);
}

.consent-check a,
.footer-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(360px, 1.4fr) minmax(160px, auto) minmax(170px, auto);
  align-items: start;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.86rem;
}

.footer-bottom > a {
  overflow-wrap: anywhere;
}

.footer-phone {
  white-space: nowrap;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(12, 18, 18, 0.42);
}

.product-modal-backdrop,
.request-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(12, 18, 18, 0.5);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  height: 100dvh;
  padding: 22px;
  background: #fff;
  box-shadow: -24px 0 70px rgba(20, 32, 31, 0.18);
}

.product-modal,
.request-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(920px, calc(100% - 36px));
  max-height: calc(100dvh - 36px);
  overflow: hidden;
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 80px rgba(20, 32, 31, 0.28);
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  overflow-y: auto;
  padding: 22px;
}

.request-modal {
  width: min(560px, calc(100% - 36px));
}

.request-modal-body {
  display: grid;
  gap: 14px;
  overflow-y: auto;
  padding: 22px;
}

.request-modal-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.request-summary {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-summary li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.request-summary strong {
  color: var(--ink);
}

.contact-modal-list {
  display: grid;
  gap: 10px;
}

.contact-modal-line {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
  color: var(--ink);
  text-decoration: none;
}

.contact-modal-line:hover,
.contact-modal-line:focus-visible {
  border-color: rgba(32, 93, 115, 0.35);
  background: #fff;
  color: var(--ink);
  outline: none;
}

.contact-modal-line i,
.contact-modal-line svg {
  width: 20px;
  height: 20px;
  color: var(--mint-dark);
}

.contact-modal-line small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-modal-line strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-modal-address {
  cursor: default;
}

.messenger-request-form {
  display: grid;
  gap: 14px;
}

.messenger-request-form label:not(.consent-check) {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.messenger-request-form input,
.messenger-request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 12px 14px;
}

.messenger-request-form textarea {
  min-height: 96px;
  resize: vertical;
}

.messenger-request-form .consent-check {
  color: var(--muted);
}

.messenger-request-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.messenger-direct-link {
  justify-content: center;
}

.product-detail-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

.product-detail-media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  min-height: 0;
  padding: 10px;
  background: #fff;
  object-fit: contain;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: #fff;
}

.product-detail-thumb {
  display: block;
  width: 100%;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.product-detail-thumb.active {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.18);
}

.product-detail-thumb:focus-visible {
  outline: 3px solid rgba(95, 198, 184, 0.45);
  outline-offset: 2px;
}

.product-detail-gallery img {
  width: 100%;
  height: 120px;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
  padding: 4px;
  object-fit: contain;
}

.product-detail-content {
  display: grid;
  align-content: start;
  gap: 14px;
}

.product-detail-content .badge {
  position: static;
  width: fit-content;
}

.product-detail-content h2 {
  font-size: 2rem;
}

.product-detail-content p {
  color: var(--muted);
}

.product-condition {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
}

.product-detail-facts,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-facts span,
.product-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-detail-facts i,
.product-detail-facts svg {
  width: 16px;
  height: 16px;
  color: var(--mint-dark);
}

.product-detail-price {
  margin: 6px 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  font-size: 1.55rem;
}

.product-modal > .drawer-head,
.request-modal > .drawer-head {
  padding: 18px 22px;
}

.product-modal > .drawer-head h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 18px 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--smoke);
}

.cart-line h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cart-line p {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.qty-controls span {
  text-align: center;
  font-weight: 800;
}

.remove-line {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(239, 112, 92, 0.13);
  color: var(--coral);
}

.cart-empty {
  display: none;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 280px;
  color: var(--muted);
  text-align: center;
}

.cart-empty i,
.cart-empty svg {
  width: 44px;
  height: 44px;
  color: var(--mint-dark);
}

.cart-empty strong {
  color: var(--ink);
}

.cart-empty.show {
  display: grid;
}

.cart-contact-form {
  display: grid;
  gap: 10px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
}

.cart-contact-form label:not(.consent-check) {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-contact-form input[type="text"],
.cart-contact-form input[type="tel"],
.cart-contact-form input[type="email"],
.cart-contact-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  outline: none;
}

.cart-contact-form input:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.22);
}

.cart-contact-form .consent-check {
  color: var(--muted);
  font-size: 0.8rem;
}

.cart-contact-form .consent-check a {
  color: var(--ink);
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.cart-summary strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  max-width: min(430px, calc(100% - 28px));
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  background: var(--paper);
}

.legal-shell {
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.07);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 14px;
  font-size: 2.4rem;
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li {
  color: #34413f;
}

.legal-card ul,
.legal-card ol {
  padding-left: 22px;
}

.legal-card a {
  color: var(--mint-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-meta {
  margin-bottom: 26px;
  color: var(--muted);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-weight: 800;
}

.account-page {
  min-height: 100vh;
  background: var(--paper);
}

.account-shell {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0 72px;
}

.account-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.account-hero h1 {
  max-width: none;
  margin: 6px 0 8px;
  font-size: 2.6rem;
}

.account-hero p {
  margin: 0;
  color: var(--muted);
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.account-app {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.account-menu {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 32, 31, 0.06);
}

.account-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.account-menu a:hover,
.account-menu a:focus-visible,
.account-menu a.active {
  background: var(--ink);
  color: #fff;
  outline: none;
}

.account-menu svg,
.account-menu i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.account-workspace {
  display: grid;
  gap: 22px;
}

.account-panel {
  scroll-margin-top: 112px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.07);
}

.account-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.account-panel p {
  margin: 0;
  color: var(--muted);
}

.rental-overview {
  border-left: 6px solid #3f8f50;
  background: linear-gradient(135deg, rgba(111, 143, 87, 0.14), #fff 54%);
}

.rental-overview.is-soon {
  border-left-color: #c58a1f;
  background: linear-gradient(135deg, rgba(243, 179, 61, 0.2), #fff 54%);
}

.rental-overview.is-overdue {
  border-left-color: #c94437;
  background: linear-gradient(135deg, rgba(201, 68, 55, 0.13), #fff 54%);
}

.rental-overview.is-empty {
  border-left-color: var(--mint-dark);
  background: linear-gradient(135deg, rgba(32, 93, 115, 0.1), #fff 58%);
}

.rental-overview-main {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.rental-overview-main h2 {
  margin: 6px 0 4px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.rental-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(111, 143, 87, 0.16);
  color: #315024;
  font-weight: 900;
  white-space: nowrap;
}

.rental-overview.is-soon .rental-status-pill {
  background: rgba(243, 179, 61, 0.24);
  color: #6b4612;
}

.rental-overview.is-overdue .rental-status-pill {
  background: rgba(201, 68, 55, 0.16);
  color: #7d241d;
}

.rental-overview-grid,
.account-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rental-overview-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(32, 93, 115, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.rental-overview-grid span,
.mini-list dt {
  color: var(--muted);
  font-weight: 800;
}

.rental-overview-grid strong,
.balance-value,
.mini-list dd {
  color: var(--ink);
  font-weight: 950;
}

.rental-overview-grid strong {
  font-size: 1.1rem;
}

.account-quick-actions,
.extend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.balance-value {
  font-size: 2.4rem;
  line-height: 1;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mini-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.mini-list dd {
  margin: 0;
  text-align: right;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.document-list span,
.document-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.document-list small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.document-list svg,
.document-list i {
  width: 18px;
  height: 18px;
  color: var(--mint-dark);
}

.compact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.account-request-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.account-request-form label:has(textarea),
.account-request-form .consent-check,
.account-request-form .button {
  grid-column: 1 / -1;
}

.inline-payment-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-top: 16px;
}

.compact-form .button {
  grid-column: 1 / -1;
}

.compact-form label:has(textarea) {
  grid-column: 1 / -1;
}

.payment-history {
  display: grid;
  gap: 8px;
}

.payment-history div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.payment-history div:last-child {
  border-bottom: 0;
}

.payment-history time,
.payment-history span {
  color: var(--muted);
}

.payment-history strong {
  font-size: 1.05rem;
}

.account-benefits,
.account-summary {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.account-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-benefits article,
.account-summary article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 32, 31, 0.05);
}

.account-benefits i,
.account-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--mint-dark);
}

.account-benefits span,
.account-summary span {
  color: var(--muted);
}

.account-summary strong {
  font-size: 1.12rem;
  overflow-wrap: anywhere;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.account-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.07);
}

.account-card h2 {
  margin: 0;
  font-size: 1.45rem;
}

.account-card p {
  margin: 0;
  color: var(--muted);
}

.account-form {
  display: grid;
  gap: 14px;
}

.account-form label:not(.consent-check) {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.account-form input[type="text"],
.account-form input[type="tel"],
.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="date"],
.account-form input[type="time"],
.account-form select,
.account-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
}

.account-form textarea {
  min-height: 96px;
  resize: vertical;
}

.account-form input:focus,
.account-form select:focus,
.account-form textarea:focus {
  border-color: var(--mint-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(95, 198, 184, 0.22);
}

.account-form .consent-check {
  align-items: start;
  color: var(--muted);
}

.account-form .consent-check a {
  color: var(--mint-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-alert {
  padding: 12px 14px;
  border: 1px solid rgba(240, 121, 50, 0.34);
  border-radius: var(--radius);
  background: rgba(240, 121, 50, 0.1);
  color: #7b3416;
  font-weight: 800;
}

.account-alert.success {
  border-color: rgba(111, 143, 87, 0.35);
  background: rgba(111, 143, 87, 0.12);
  color: #365326;
}

.account-legal-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--mint-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
}

.account-legal-note i,
.account-legal-note svg {
  width: 22px;
  height: 22px;
  color: var(--mint-dark);
}

.account-legal-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.account-legal-note p {
  margin: 0;
}

.account-profile-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.account-profile-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: baseline;
}

.account-profile-list dt {
  color: var(--muted);
  font-weight: 800;
}

.account-profile-list dd {
  margin: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.account-request-list {
  display: grid;
  gap: 12px;
}

.account-request {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf5;
}

.account-request header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.account-request strong {
  font-size: 1.02rem;
}

.account-request time,
.account-request p {
  color: var(--muted);
  font-size: 0.92rem;
}

.account-request ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #34413f;
}

.account-request-total {
  color: var(--ink);
  font-weight: 900;
}

.account-empty {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

.account-empty .button {
  justify-self: start;
  margin-top: 8px;
}

.account-empty strong {
  color: var(--ink);
}

.logout-form {
  margin: 0;
}

.admin-page {
  background: var(--paper);
}

.admin-login-shell {
  display: grid;
  place-items: center;
  min-height: calc(100dvh - 88px);
  width: min(560px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.admin-login-card {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 32, 31, 0.1);
}

.admin-login-card h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.admin-login-card p {
  color: var(--muted);
}

.admin-alert {
  margin: 18px 0;
  padding: 12px 14px;
  border: 1px solid rgba(240, 121, 50, 0.36);
  border-radius: var(--radius);
  background: rgba(240, 121, 50, 0.1);
  color: #7b3416;
  font-weight: 800;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.admin-dashboard article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 32, 31, 0.05);
}

.admin-dashboard span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-dashboard strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.admin-shell {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.admin-hero,
.server-save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.07);
}

.admin-hero h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: 2.2rem;
}

.admin-hero p,
.server-save p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.admin-actions,
.admin-form-actions,
.server-save-form {
  display: flex;
  gap: 10px;
  align-items: end;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.admin-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-weight: 800;
}

.admin-tab.active {
  border-color: var(--mint-dark);
  background: var(--mint-dark);
  color: #fff;
}

.admin-tab-panel[hidden] {
  display: none !important;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  margin-top: 20px;
}

.admin-form,
.admin-list-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 36px rgba(20, 32, 31, 0.06);
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-settings-form {
  margin-top: 20px;
}

.admin-form-section {
  display: grid;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-form-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.admin-form-section h3 {
  margin: 0;
  font-size: 1.05rem;
}

.admin-form-head,
.admin-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-form h2,
.admin-list-head h2,
.server-save h2 {
  font-size: 1.45rem;
}

.admin-form label,
.server-save-form label,
.admin-login-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-list-head input,
.admin-list-head select,
.server-save-form input,
.admin-login-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0 12px;
}

.admin-form input[type="color"] {
  min-height: 46px;
  padding: 4px;
}

.admin-form textarea {
  min-height: 110px;
  padding: 10px 12px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-list-head input:focus,
.admin-list-head select:focus,
.server-save-form input:focus,
.admin-login-form input:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(79, 168, 189, 0.2);
}

.admin-grid-2,
.admin-grid-3 {
  display: grid;
  gap: 12px;
}

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

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

.admin-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.admin-logo-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: end;
}

.admin-logo-preview {
  width: 180px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff var(--logo-image) center / contain no-repeat;
  box-shadow: 0 10px 26px rgba(20, 32, 31, 0.08);
}

.admin-list {
  display: grid;
  gap: 12px;
  max-height: 840px;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-product {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-product.active {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(79, 168, 189, 0.16);
}

.admin-product.is-hidden-product {
  opacity: 0.72;
  background: #f5f6f5;
}

.admin-product img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--smoke);
}

.admin-product strong,
.admin-product span,
.admin-product small {
  display: block;
}

.admin-product span {
  color: var(--mint-dark);
  font-weight: 800;
}

.admin-product small {
  color: var(--muted);
}

.admin-product-actions {
  display: grid;
  gap: 8px;
}

.admin-preview-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 20, 22, 0.45);
}

.admin-preview-backdrop[hidden] {
  display: none;
}

.admin-preview-modal {
  width: min(920px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 26px 80px rgba(10, 20, 22, 0.24);
}

.admin-preview-head,
.admin-preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.admin-preview-actions {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.admin-preview-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.admin-preview-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-preview-summary article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--smoke);
}

.admin-preview-summary span,
.admin-preview-list span {
  display: block;
  color: var(--muted);
}

.admin-preview-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.server-save {
  margin-top: 20px;
}

.server-save-form {
  min-width: min(430px, 100%);
}

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

.operator-list h2 {
  margin: 0;
}

.operator-request header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.operator-request h3 {
  margin: 4px 0 0;
}

.operator-request select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.operator-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.operator-flow article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.operator-flow strong {
  font-size: 1rem;
}

.operator-flow span {
  color: var(--muted);
}

.operator-request-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.operator-request-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.operator-request-form input,
.operator-request-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
}

.operator-request-form .button {
  min-height: 44px;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand actions"
      "contacts contacts"
      "nav nav";
  }

  .brand {
    grid-area: brand;
  }

  .main-nav {
    grid-area: nav;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-contacts {
    grid-area: contacts;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    justify-items: end;
    gap: 8px 16px;
  }

  .header-actions {
    grid-area: actions;
    justify-content: end;
  }

  .product-grid,
  .collection-grid,
  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-inner {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list article {
    min-height: 0;
  }

  .process-list article:not(:last-child)::after {
    display: none;
  }

  .forbidden-layout {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-hero,
  .server-save {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions,
  .server-save-form {
    align-items: stretch;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    justify-content: stretch;
    gap: 8px;
    overflow: visible;
    padding: 8px 16px;
    text-align: center;
    white-space: normal;
  }

  .topbar span {
    white-space: normal;
    line-height: 1.25;
  }

  .hero {
    min-height: 520px;
    background:
      linear-gradient(
        180deg,
        rgba(251, 250, 245, 0.98) 0%,
        rgba(251, 250, 245, 0.88) 47%,
        rgba(251, 250, 245, 0.1) 100%
      ),
      var(--hero-image) center bottom / cover no-repeat;
  }

  .hero-content {
    padding: 42px 0 210px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .section {
    padding: 54px 0;
  }

  .section-head,
  .footer-main,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    justify-content: stretch;
  }

  .catalog-search,
  .sort-control {
    width: 100%;
  }

  .product-grid,
  .collection-grid,
  .catalog-choice-grid,
  .booking-steps,
  .forbidden-grid,
  .service-grid,
  .location-grid,
  .reviews-grid,
  .faq-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-form div {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .product-modal-body,
  .request-modal-body {
    grid-template-columns: 1fr;
  }

  .product-detail-media img {
    max-height: 280px;
    min-height: 0;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1;
  }

  .admin-actions,
  .admin-form-actions,
  .server-save-form {
    flex-direction: column;
  }

  .account-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .account-actions {
    justify-content: flex-start;
  }

  .account-app {
    grid-template-columns: 1fr;
  }

  .account-menu {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
  }

  .account-menu a {
    flex: 0 0 auto;
  }

  .account-dashboard-grid,
  .rental-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .account-benefits,
  .account-summary {
    grid-template-columns: 1fr;
  }

  .admin-grid-3 {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-call-button {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(20, 32, 31, 0.25);
  }

  .mobile-call-button svg,
  .mobile-call-button i {
    width: 18px;
    height: 18px;
  }

  .topbar {
    display: none;
  }

  .site-header {
    padding: 12px 16px;
    gap: 14px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: min(100%, 320px);
    margin-top: 6px;
    box-shadow: 0 10px 24px rgba(20, 32, 31, 0.12);
  }

  .header-contacts {
    justify-content: start;
    font-size: 0.82rem;
  }

  .header-contacts a {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .header-messenger span {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 52px;
    height: 38px;
    flex-basis: 52px;
  }

  .hero {
    min-height: auto;
    display: block;
    align-items: start;
    background:
      linear-gradient(
        180deg,
        rgba(251, 250, 245, 0.99) 0%,
        rgba(251, 250, 245, 0.96) 52%,
        rgba(251, 250, 245, 0.62) 78%,
        rgba(251, 250, 245, 0.18) 100%
      ),
      var(--hero-image) center bottom / auto 225px no-repeat;
  }

  .hero-content,
  .section {
    width: calc(100% - 32px);
  }

  .hero-content {
    padding-top: 28px;
    padding-bottom: 178px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  #hero-title {
    white-space: normal;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-actions,
  .hero-stats {
    display: grid;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-stats div {
    display: block;
    min-width: 0;
    padding: 10px 8px;
    border: 1px solid rgba(20, 32, 31, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.74);
    text-align: center;
  }

  .hero-stats dt {
    font-size: 1.05rem;
  }

  .hero-stats dd {
    margin-top: 2px;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .product-grid,
  .collection-grid,
  .catalog-choice-grid,
  .booking-steps,
  .forbidden-grid,
  .service-grid,
  .location-grid,
  .reviews-grid,
  .faq-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .catalog-choice-link {
    grid-template-columns: 1fr;
  }

  .catalog-choice-image {
    max-width: none;
    height: 190px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    height: 245px;
  }

  .product-info h3,
  .product-desc,
  .review-card p {
    min-height: auto;
  }

  .catalog-status {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .cart-drawer {
    padding: 16px;
  }

  .product-modal,
  .request-modal {
    width: calc(100% - 40px);
    max-height: calc(100dvh - 32px);
  }

  .product-modal-body,
  .request-modal-body {
    padding: 22px;
  }

  .product-modal > .drawer-head,
  .request-modal > .drawer-head {
    padding: 20px 22px;
  }

  .product-modal > .drawer-head {
    align-items: flex-start;
  }

  .product-modal > .drawer-head .eyebrow {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .product-detail-content h2 {
    font-size: 1.48rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .product-detail-media img {
    max-height: 210px;
    min-height: 0;
    padding: 8px;
    object-fit: contain;
  }

  .product-detail-gallery img {
    height: 82px;
    min-height: 82px;
  }

  .product-detail-facts span,
  .product-tags span {
    min-height: 32px;
    font-size: 0.84rem;
  }

  .location-media {
    grid-template-columns: 1fr;
  }

  .location-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .location-photos img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .map-panel iframe {
    height: 240px;
    min-height: 240px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: auto;
    max-height: 38vh;
    overflow: auto;
    padding: 12px;
  }

  .cookie-banner strong {
    font-size: 0.95rem;
  }

  .cookie-banner p {
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-actions .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .legal-shell {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .legal-card {
    padding: 22px;
  }

  .legal-card h1 {
    font-size: 1.85rem;
  }

  .account-shell {
    width: calc(100% - 32px);
    padding: 34px 0 56px;
  }

  .account-hero h1 {
    font-size: 2.05rem;
  }

  .account-card {
    padding: 20px;
  }

  .account-panel {
    padding: 20px;
  }

  .rental-overview-main,
  .operator-request header,
  .mini-list div {
    align-items: start;
    flex-direction: column;
  }

  .operator-flow,
  .operator-request-form {
    grid-template-columns: 1fr;
  }

  .rental-status-pill {
    white-space: normal;
  }

  .document-list,
  .compact-form,
  .account-request-form,
  .inline-payment-form,
  .payment-history div {
    grid-template-columns: 1fr;
  }

  .payment-history div {
    gap: 4px;
    align-items: start;
  }

  .account-profile-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .account-request header {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .admin-shell {
    width: calc(100% - 32px);
    padding-top: 28px;
  }

  .admin-hero h1 {
    font-size: 1.85rem;
  }

  .admin-grid-2 {
    grid-template-columns: 1fr;
  }

  .admin-product {
    grid-template-columns: 78px 1fr;
  }

  .admin-product img {
    width: 78px;
    height: 66px;
  }

  .admin-product-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-product-actions .icon-button {
    width: 100%;
  }

  .admin-dashboard,
  .admin-upload-row {
    grid-template-columns: 1fr;
  }

  .admin-preview-summary {
    grid-template-columns: 1fr 1fr;
  }

  .admin-preview-head,
  .admin-preview-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-logo-row {
    grid-template-columns: 1fr;
  }

  .admin-logo-preview {
    width: 100%;
  }

  .location-photos {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
