:root {
  --bg: #f5f2ed; 
  --card: #ffffff; 
  --cta: #d32d2d; 
  --text: #1b263b; 
  --muted: rgba(27, 38, 59, 0.72);
  --line: rgba(27, 38, 59, 0.14);

  --radius: 18px;
  --shadow: 0 14px 35px rgba(27, 38, 59, 0.1);
  --shadow-hover: 0 18px 45px rgba(27, 38, 59, 0.16);

  --max: 1120px;
}

main {
  scroll-margin-top: 90px;
}

html,
body {
  height: 100%;
  overflow-x: hidden; 
  overflow-y: visible; 
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Montserrat",
    "Roboto",
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 14px;
  color: var(--muted);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--card);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

:focus-visible {
  outline: 3px solid rgba(211, 45, 45, 0.35);
  outline-offset: 3px;
  border-radius: 10px;
}

.kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: rgba(27, 38, 59, 0.7);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(34px, 4.6vw, 64px);
}
h2 {
  font-size: clamp(24px, 3.2vw, 40px);
}
h3 {
  font-size: clamp(18px, 2.2vw, 24px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(245, 242, 237, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 38, 59, 0.14);
}

body {
  padding-top: 74px; 
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--text);
  position: relative;
  box-shadow: 0 10px 20px rgba(27, 38, 59, 0.18);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 10px 10px 10px;
  border-radius: 10px;
  background: var(--cta);
}
.brand span {
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(27, 38, 59, 0.92);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.nav-links a:hover {
  background: rgba(27, 38, 59, 0.06);
  transform: translateY(-1px);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  background: var(--cta);
  border-radius: 99px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-strip {
  border-bottom: 1px solid rgba(27, 38, 59, 0.22); 
}

.brand-strip__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;
  padding: 6px 0; 
}

.brand-strip__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 4px 6px;
  border-radius: 10px;
}

.brand-strip__item:hover {
  transform: translateY(-1px);
}

.brand-strip__item:focus-visible {
  outline: 3px solid rgba(211, 45, 45, 0.28);
  outline-offset: 3px;
}

.brand-strip__item img {
  height: 32px; 
  width: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 12px 25px rgba(211, 45, 45, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(211, 45, 45, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(27, 38, 59, 0.22);
  color: var(--text);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.55);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(27, 38, 59, 0.2);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.nav-toggle .bar {
  width: 20px;
  height: 2px;
  background: var(--text); 
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
  transform-origin: center;
}

body.nav-open .nav-toggle .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
body.nav-open .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0; 
  z-index: 3000; 
  display: none; 
  pointer-events: none; 
}

body.nav-open .mobile-overlay {
  pointer-events: auto;
}

.mobile-backdrop {
  position: absolute; 
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(27, 38, 59, 0.35);
  opacity: 0;
  transition: opacity 0.28s ease;
}

body.nav-open .mobile-backdrop {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(80vw, 380px);
  max-width: 92vw;

  background: rgba(245, 242, 237, 0.92); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-left: 1px solid rgba(27, 38, 59, 0.14);
  box-shadow: -18px 0 45px rgba(27, 38, 59, 0.18);

  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  touch-action: pan-y;

  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.nav-open .mobile-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer.is-dragging {
  transition: none !important;
}

body.nav-open .mobile-backdrop {
  cursor: pointer;
}

.mobile-drawer__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 38, 59, 0.12);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px;
  border-radius: 16px;

  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(27, 38, 59, 0.12);

  opacity: 0;
  transform: translateY(10px);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(8px); 
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.mobile-actions .btn {
  flex: 1;
}

.mobile-footnote {
  margin: 0;
  font-size: 12px;
  color: rgba(27, 38, 59, 0.7);
}

@keyframes linkIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.nav-open .mobile-link {
  animation: linkIn 0.38s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body.nav-open .mobile-link:nth-child(1) {
  animation-delay: 0.08s;
}
body.nav-open .mobile-link:nth-child(2) {
  animation-delay: 0.14s;
}
body.nav-open .mobile-link:nth-child(3) {
  animation-delay: 0.2s;
}
body.nav-open .mobile-link:nth-child(4) {
  animation-delay: 0.26s;
}
body.nav-open .mobile-link:nth-child(5) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer,
  .mobile-backdrop,
  .nav-toggle .bar,
  .mobile-link {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1124px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-overlay {
    display: block;
  }
}

@media (min-width: 1125px) {
  .mobile-overlay {
    display: none !important;
  }
  body.nav-open {
    overflow: auto;
  }
}

.main_logo {
  max-width: 300px;
}

.section {
  scroll-margin-top: 90px;
  padding: 72px 0;
}
.section-tight {
  padding: 56px 0;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(27, 38, 59, 0.04);
  padding: 22px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 38, 59, 0.2);
}

.card .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(27, 38, 59, 0.06);
  border: 1px solid rgba(27, 38, 59, 0.12);
  font-size: 12px;
  font-weight: 700;
  color: rgba(27, 38, 59, 0.85);
}

.hero {
  padding: 56px 0 26px;
}
.hero-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 59, 0.18);
  box-shadow: var(--shadow);

  
  background-color: var(--bg);

  
  background-image:
    linear-gradient(120deg, rgba(27, 38, 59, 0.92), rgba(245, 242, 237, 0.45)),
    url("img/hero.jpg");

  background-size: cover, cover;
  background-position: center, center;
}

.hero-content {
  padding: clamp(26px, 5vw, 54px);
  max-width: 780px;
}
.hero-content .kicker {
  color: rgba(255, 255, 255, 0.78);
}
.hero-content h1 {
  color: #fff;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid rgba(27, 38, 59, 0.16);
  box-shadow: var(--shadow);
}

.highlight .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.highlight p {
  color: rgba(27, 38, 59, 0.78);
}
.highlight .actions {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(27, 38, 59, 0.22);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.logo-tile:hover {
  transform: translateY(-3px);
  background: var(--card);
  box-shadow: var(--shadow-hover);
}

.banner-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(27, 38, 59, 0.18);
  background: linear-gradient(
    120deg,
    rgba(211, 45, 45, 0.1),
    rgba(27, 38, 59, 0.06)
  );
  box-shadow: var(--shadow);
}
.banner-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.banner-link .left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.banner-link .right {
  flex: 0 0 auto;
}

.table-wrap {
  overflow: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(27, 38, 59, 0.04);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(27, 38, 59, 0.1);
}
th {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(27, 38, 59, 0.85);
  background: rgba(27, 38, 59, 0.04);
}
tr:hover td {
  background: rgba(27, 38, 59, 0.03);
}

.form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
}
label {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(27, 38, 59, 0.18);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--text);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
textarea {
  min-height: 140px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(211, 45, 45, 0.55);
  box-shadow: 0 0 0 4px rgba(211, 45, 45, 0.14);
  background: var(--card);
}

.footer {
  padding: 0 56px;
  border-top: 1px solid var(--line);
  color: rgba(27, 38, 59, 0.72);
}
.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer small {
  display: block;
  margin-top: 8px;
}

.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.split p {
  max-width: 70ch;
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 761px) {
  .mobile-panel {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }

  
  .mobile-panel {
    display: none;
    padding: 10px 0 18px;
  }
  .mobile-panel.active {
    display: block;
  }

  .mobile-ctas {
    display: flex;
    gap: 10px;
    padding: 12px;
  }

  .mobile-panel .card {
    padding: 14px;
  }
  .mobile-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
  }
  .mobile-panel a:hover {
    background: rgba(27, 38, 59, 0.06);
  }

  .banner-link {
    flex-direction: column;
    align-items: flex-start;
  }
  table {
    min-width: 620px;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(var(--max), calc(100% - 26px));
  }
  .hero-actions {
    gap: 10px;
  }
}

html,
body {
  overflow-x: hidden;
}

.include-slot {
  width: 100%;
}

.include-slot--header {
  min-height: 62px; 
}

.include-slot--footer {
  min-height: 120px; 
}

.include-skeleton {
  border-radius: 18px;
  border: 1px solid rgba(27, 38, 59, 0.12);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.55)
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.1s ease-in-out infinite;
}

.include-skeleton--header {
  height: 74px;
  margin: 14px 0;
}

.include-skeleton--footer {
  height: 64px;
  margin: 18px 0 40px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.include-slot.is-loaded .include-skeleton {
  display: none;
}

.site-footer {
  background: #121826; 
  color: rgba(255, 255, 255, 0.75);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 40px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #fff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.social-btn:hover {
  background: #d32d2d;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(211, 45, 45, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-note {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

.map-wrapper {
  position: relative;
  margin-top: 14px;
  height: 320px;

  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(27, 38, 59, 0.28);
  background: linear-gradient(
    120deg,
    rgba(27, 38, 59, 0.06),
    rgba(211, 45, 45, 0.08)
  );
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  left: 16px;
  bottom: 16px;

  padding: 10px 14px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 8px 22px rgba(27, 38, 59, 0.18);
  pointer-events: none; 
}

.map-overlay p {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(27, 38, 59, 0.75);
}

@media (max-width: 760px) {
  .map-wrapper {
    height: 260px;
  }

  .map-overlay {
    left: 12px;
    bottom: 12px;
  }
}

.brand-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(27, 38, 59, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  display: flex;
  flex-direction: column;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 38, 59, 0.2);
}

.brand-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(27, 38, 59, 0.1);
  background: linear-gradient(
    180deg,
    rgba(245, 242, 237, 0.75),
    rgba(255, 255, 255, 0.65)
  );
}

.brand-card__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 38, 59, 0.1);
  padding: 6px;
  flex: 0 0 auto;
}

.brand-card__meta {
  min-width: 0;
}

.brand-card__title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(27, 38, 59, 0.92);
  font-size: 14px;
  margin-top: 2px;
}

.brand-card__image {
  padding: 10px 12px;
}

.brand-card__image img {
  width: 100%;
  height: 170px; 
  object-fit: contain; 
  object-position: center;
  background:
    radial-gradient(circle at 70% 25%, rgba(211, 45, 45, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 242, 237, 0.72));
  border-radius: 18px;
  border: 1px solid rgba(27, 38, 59, 0.12);
  box-shadow: 0 10px 26px rgba(27, 38, 59, 0.1);

  padding: 10px; 
}

.brand-card__bottom {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.brand-card__price {
  font-weight: 900;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-card__actions {
  display: flex;
  gap: 10px;
}

.brand-card__actions .btn {
  flex: 1;
  width: 100%;
  padding: 12px 12px;
}

.brand-card__note {
  color: rgba(27, 38, 59, 0.65);
  font-size: 12px;
}

.brand-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(27, 38, 59, 0.06);
  border: 1px solid rgba(27, 38, 59, 0.12);
  font-size: 12px;
  font-weight: 800;
  color: rgba(27, 38, 59, 0.85);
}

.brand-card[data-product-card] {
  cursor: pointer;
}

.brand-card[data-product-card]:focus-visible {
  box-shadow: var(--shadow-hover);
  border-color: rgba(27, 38, 59, 0.22);
}

@media (max-width: 520px) {
  .brand-card__image img {
    height: 150px;
  }

  .brand-card__actions {
    flex-direction: column;
  }
}

.tips-card {
  display: flex;
  flex-direction: column;
}

.tips-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .tips-card {
    height: 100%;
  }

  .tips-actions {
    margin-top: auto; 
  }
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

.product-modal[aria-hidden="true"] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(27, 38, 59, 0.46);
  cursor: pointer;
}

.product-modal__panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100dvh;
  width: min(92vw, 980px);
  background: rgba(245, 242, 237, 0.95);
  border-left: 1px solid rgba(27, 38, 59, 0.14);
  box-shadow: -18px 0 55px rgba(27, 38, 59, 0.24);
  overflow: auto;
}

.product-modal__close {
  position: sticky;
  top: 12px;
  float: right;
  margin: 12px 12px 0 0;

  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(27, 38, 59, 0.18);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 18px;
}

.product-modal__content {
  padding: 18px 18px 26px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.product-modal__media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 59, 0.14);
  background: #fff;
  box-shadow: 0 14px 35px rgba(27, 38, 59, 0.1);
}

.product-modal__media img {
  width: 100%;
  height: min(56vh, 520px);
  object-fit: contain;
  display: block;
  padding: 18px;
}

.product-modal__info h2 {
  margin-top: 6px;
}

.product-modal__specs {
  margin: 12px 0 12px;
  display: grid;
  gap: 10px;
}

.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(27, 38, 59, 0.12);
  background: rgba(255, 255, 255, 0.65);
}
.spec__k {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(27, 38, 59, 0.72);
}
.spec__v {
  font-weight: 900;
  color: rgba(27, 38, 59, 0.92);
}

.product-modal__equip ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(27, 38, 59, 0.78);
}

.product-modal__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-modal__note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(27, 38, 59, 0.68);
}

@media (max-width: 900px) {
  .product-modal__panel {
    width: 100%;
  }
  .product-modal__content {
    grid-template-columns: 1fr;
  }
  .product-modal__media img {
    height: 42vh;
  }
}

.filter-wrap {
  display: grid;
  gap: 8px;
  justify-items: end;
}

@media (max-width: 760px) {
  .filter-wrap {
    justify-items: start;
  }
}
