:root {
  --design-color: #17263d;
  --double-color: #e52421;
  --bg: #eef2f6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: var(--design-color);
  --text: #17263d;
  --muted: #5e6a7f;
  --line: rgba(23, 38, 61, 0.12);
  --brand: var(--design-color);
  --brand-deep: var(--double-color);
  --accent: #dce3ec;
  --shadow: 0 24px 60px rgba(23, 38, 61, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(229, 36, 33, 0.09), transparent 24%),
    radial-gradient(circle at top right, rgba(23, 38, 61, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--design-color);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  background: var(--double-color);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.topbar__cta:hover,
.topbar__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(229, 36, 33, 0.22);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid rgba(23, 38, 61, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  appearance: none;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--design-color);
}

.header__navs {
  display: grid;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--design-color) 0%, #243f62 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.logo__text {
  display: grid;
  gap: 3px;
}

.logo__text strong {
  font-size: 20px;
}

.logo__text small {
  font-size: 12px;
  color: var(--muted);
}
.logotip span{
	display: block;
	width: 50px;
	height: 50px;
	float: left;
	background: url(/upload/logo.svg) no-repeat 50% / contain;
}
.nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--double-color);
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav--top a {
  font-size: 14px;
  color: var(--muted);
}

.nav--catalog {
  align-items: center;
  gap: 16px;
}

.nav__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--double-color);
}

.nav--catalog a {
  font-size: 15px;
  font-weight: 700;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search {
  display: flex;
  align-items: center;
  min-width: 320px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 10px 14px;
  background: transparent;
}

.search button,
.consultation-card button {
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--double-color);
  color: #fff;
}

.search button:hover,
.consultation-card button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(229, 36, 33, 0.18);
}

.header__phone {
  font-weight: 700;
  white-space: nowrap;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 32, 0.58);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  max-height: min(90dvh, calc(100vh - 40px));
  margin: 16px auto 20px;
  overflow-y: auto;
  border: 1px solid rgba(23, 38, 61, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(23, 38, 61, 0.06), rgba(229, 36, 33, 0.04));
  box-shadow: 0 28px 70px rgba(9, 18, 32, 0.26);
  transform: translateY(26px) scale(0.98);
  transition: transform 0.24s ease;
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__dialog--menu {
  width: min(460px, calc(100vw - 24px));
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 38, 61, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  appearance: none;
}

.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--design-color);
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__header,
.modal-form,
.modal-menu,
.modal-menu__footer {
  padding-inline: 26px;
}

.modal__header {
  padding-top: 28px;
  padding-bottom: 18px;
}

.modal__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--double-color);
}

.modal__title {
  margin: 0;
  padding-right: 46px;
  font-family: "Prata", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}

.modal__description {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.search--modal {
  min-width: 0;
  margin: 0 26px 22px;
}

.modal-menu {
  display: grid;
  gap: 18px;
}

.modal-menu__group {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(23, 38, 61, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.modal-menu__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--double-color);
}

.modal-menu__group a {
  font-size: 18px;
  font-weight: 700;
}

.modal-menu__footer {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.modal-menu__phone {
  font-size: 22px;
  font-weight: 800;
}

.modal-menu__cta,
.modal-form__submit {
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: var(--double-color);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-menu__cta:hover,
.modal-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(229, 36, 33, 0.18);
}

.modal-form {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
}

.modal-form__field {
  display: grid;
  gap: 8px;
}

.modal-form__field span {
  font-size: 14px;
  font-weight: 700;
}

.modal-form__field input,
.modal-form__field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(23, 38, 61, 0.1);
  border-radius: 16px;
  background: rgba(245, 247, 250, 0.92);
  outline: 0;
  font: inherit;
}

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

.hero {
  padding: 34px 0 18px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 24px;
}

.hero__copy,
.hero__panel,
.about-card,
.consultation-card,
.promo-card,
.product-card,
.category-card,
.blog-card {
  border: 1px solid rgba(23, 38, 61, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 42px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 280px;
  height: 280px;
  background:
    linear-gradient(180deg, rgba(23, 38, 61, 0.14), rgba(23, 38, 61, 0.03)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.5) 0 18px,
      rgba(23, 38, 61, 0.08) 18px 24px
    );
  border-radius: 28px 28px 0 0;
  transform: rotate(-8deg);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--double-color);
}

.hero h1,
.section h2,
.about-card h2,
.consultation-card h2 {
  margin: 0;
  font-family: "Prata", serif;
  font-weight: 400;
  line-height: 1.08;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(38px, 4.8vw, 64px);
}

.hero__text {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(23, 38, 61, 0.04);
  font-size: 14px;
  font-weight: 600;
}

.hero__panel {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(9, 18, 32, 0.16), rgba(9, 18, 32, 0.9)),
    linear-gradient(90deg, rgba(9, 18, 32, 0.76) 0%, rgba(9, 18, 32, 0.3) 55%, rgba(9, 18, 32, 0.18) 100%),
    url("../../upload/mezh-01.webp") center / cover no-repeat,
    linear-gradient(135deg, var(--design-color) 0%, #233f62 100%);
  min-height: 100%;
}

.hero__panel p,
.hero__panel span {
  margin: 0;
}

.hero__panel strong {
  font-size: 28px;
  font-family: "Prata", serif;
  font-weight: 400;
}

.hero__panel a {
  display: inline-flex;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--double-color);
  font-weight: 700;
}

.section {
  padding: 34px 0;
}

.section--compact {
  padding-top: 8px;
}

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

.section__head h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track > * {
  scroll-snap-align: start;
}

.carousel__controls {
  display: flex;
  gap: 10px;
}

.carousel__controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 22px;
}

.promo-card {
  min-height: 200px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.promo-card span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
}

.promo-card h3,
.product-card h3,
.category-card h3,
.blog-card h3,
.footer h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.promo-card p,
.product-card p,
.about-card p,
.category-card p,
.blog-card p,
.footer__note,
.consultation-card small {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.promo-card--light {
  background: linear-gradient(135deg, #ffffff 0%, #e6ecf4 100%);
}

.promo-card--light span {
  background: rgba(23, 38, 61, 0.08);
}

.promo-card--dark {
  color: #fff;
  background: linear-gradient(135deg, var(--design-color) 0%, #233f62 100%);
}

.promo-card--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.promo-card--dark span {
  background: rgba(255, 255, 255, 0.12);
}

.promo-card--sand {
  background: linear-gradient(135deg, #fff5f5 0%, #ffd9d8 100%);
}

.promo-card--sand span {
  background: rgba(229, 36, 33, 0.1);
}

.carousel--products .carousel__track {
  grid-auto-columns: minmax(260px, 320px);
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 18px 16px;
  background: transparent;
  overflow: hidden;
}

.product-card__media::before,
.product-card__media::after {
  content: none;
}

.product-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(23, 38, 61, 0.16));
}

.card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-badge,
.card-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.card-badge {
  color: #fff;
  box-shadow: 0 10px 20px rgba(23, 38, 61, 0.12);
}

.card-badge--hit {
  background: linear-gradient(135deg, #e52421 0%, #ff6b3d 100%);
}

.card-badge--sale {
  background: linear-gradient(135deg, #17263d 0%, #35557d 100%);
}

.card-badge--new {
  background: linear-gradient(135deg, #0d7a5f 0%, #1ea37d 100%);
}

.card-stock {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: #0d6a52;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 106, 82, 0.14);
}

.card-stock--order {
  color: #8a5b12;
  background: rgba(255, 248, 236, 0.96);
  border-color: rgba(138, 91, 18, 0.18);
}

.product-card__content {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.product-card__content span,
.blog-card span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--double-color);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.product-card__meta a,
.category-card a,
.blog-card a {
  font-weight: 700;
  color: var(--brand-deep);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 24px;
}

.about-card,
.consultation-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.about-card {
  display: grid;
  gap: 16px;
}

.about-card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.about-card__list li + li {
  margin-top: 10px;
}

.consultation-card {
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(23, 38, 61, 0.08), rgba(229, 36, 33, 0.06));
}

.consultation-card label {
  display: grid;
  gap: 8px;
}

.consultation-card label span {
  font-size: 14px;
  font-weight: 700;
}

.consultation-card input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  outline: 0;
}

.consultation-card button {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--double-color);
  color: #fff;
  font-weight: 700;
}

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

.section__head--catalog {
  margin-bottom: 8px;
}

.catalog-showcase {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 38, 61, 0.08);
  box-shadow: var(--shadow);
}

.catalog-showcase--entry {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(229, 36, 33, 0.22), transparent 34%),
    linear-gradient(135deg, #142235 0%, #1d3351 100%);
}

.catalog-showcase--interior {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(23, 38, 61, 0.05), rgba(229, 36, 33, 0.05));
}

.catalog-showcase__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
}

.catalog-showcase__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-showcase--entry .catalog-showcase__label {
  color: rgba(255, 255, 255, 0.72);
}

.catalog-showcase--interior .catalog-showcase__label {
  color: var(--double-color);
}

.catalog-showcase__header h3 {
  margin: 0;
  max-width: 760px;
  font-family: "Prata", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}

.carousel__controls--dark button {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.carousel--entry .carousel__track,
.carousel--interior .carousel__track {
  display: flex;
  gap: 18px;
}

.entry-card,
.interior-card {
  flex: 0 0 auto;
}

.carousel--entry .carousel__track {
  padding-bottom: 0;
}

.entry-card {
  position: relative;
  width: min(520px, calc(100vw - 92px));
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 31, 0.84) 0%, rgba(10, 18, 31, 0.72) 32%, rgba(10, 18, 31, 0.16) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
  z-index: 0;
}

.entry-card span,
.entry-card h3,
.entry-card p,
.entry-card__footer {
  position: relative;
  z-index: 1;
}

.entry-card span,
.interior-card__content span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry-card h3,
.interior-card__content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.entry-card p,
.interior-card__content p {
  max-width: 320px;
  margin: 0;
  line-height: 1.7;
}

.entry-card__footer,
.interior-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.entry-card__footer strong,
.interior-card__footer strong {
  font-size: 22px;
}

.entry-card__footer a,
.interior-card__footer a {
  font-weight: 700;
}

.entry-card--navy {
  background:
    url("../../upload/vhod-01.webp") center / cover no-repeat,
    linear-gradient(135deg, #18283f 0%, #223754 100%);
}

.entry-card--graphite {
  background:
    url("../../upload/vhod-02.webp") center / cover no-repeat,
    linear-gradient(135deg, #24313f 0%, #3b4b5e 100%);
}

.entry-card--accent {
  background:
    url("../../upload/vhod-03.webp") center / cover no-repeat,
    radial-gradient(circle at top right, rgba(229, 36, 33, 0.28), transparent 34%),
    linear-gradient(135deg, #18273d 0%, #20324e 100%);
}

.entry-card--navy span,
.entry-card--graphite span,
.entry-card--accent span {
  color: rgba(255, 255, 255, 0.72);
}

.entry-card--navy p,
.entry-card--graphite p,
.entry-card--accent p {
  color: rgba(255, 255, 255, 0.82);
}

.entry-card__footer a {
  color: #fff;
}

.carousel--interior .carousel__track {
  padding-bottom: 4px;
}

.interior-card {
  width: 304px;
  border: 1px solid rgba(23, 38, 61, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(23, 38, 61, 0.04), transparent);
}

.interior-card--feature {
  width: min(430px, calc(100vw - 92px));
}

.interior-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 18px 16px;
  background: transparent;
  overflow: hidden;
}

.interior-card__visual::before {
  content: none;
}

.interior-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(23, 38, 61, 0.16));
}

.interior-card__content {
  padding: 22px;
}

.interior-card__content span {
  color: var(--double-color);
}

.interior-card__content h3 {
  font-size: 24px;
}

.interior-card__content p {
  color: var(--muted);
}

.category-grid,
.blog-grid,
.footer__grid {
  display: grid;
  gap: 18px;
}

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

.category-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(23, 38, 61, 0.08), transparent);
}

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

.blog-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(229, 36, 33, 0.06), rgba(23, 38, 61, 0.04));
}

.footer {
  margin-top: 24px;
  padding: 38px 0 48px;
  border-top: 1px solid rgba(23, 38, 61, 0.08);
  background: rgba(255, 255, 255, 0.6);
}

.footer__grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  align-items: start;
}

.footer__grid > div {
  display: grid;
  gap: 12px;
}

.logo--footer {
  margin-bottom: 8px;
}
.footer__note .icons {
    width: 35px;
    height: 35px;
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 1fr;
  }

  .header__actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 920px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header__navs,
  .header__actions {
    display: none;
  }

  .hero__grid,
  .split,
  .catalog-showcase__header,
  .category-grid,
  .blog-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .catalog-showcase__header {
    display: grid;
    align-items: start;
  }

  .search {
    min-width: 100%;
  }

  .search--modal {
    width: auto;
    min-width: 0;
    max-width: none;
  }

  .section__head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .product-card__meta,
  .entry-card__footer,
  .interior-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__copy,
  .hero__panel,
  .about-card,
  .consultation-card,
  .promo-card,
  .catalog-showcase,
  .entry-card,
  .interior-card__content,
  .category-card,
  .blog-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .carousel__controls {
    width: 100%;
  }

  .carousel__controls button {
    flex: 1;
    border-radius: 16px;
  }

  .modal__dialog {
    width: calc(100vw - 16px);
    max-height: min(90dvh, calc(100vh - 28px));
    margin: 8px auto 20px;
    border-radius: 24px;
  }

  .modal__header,
  .modal-form,
  .modal-menu,
  .modal-menu__footer {
    padding-inline: 18px;
  }

  .search--modal {
    margin-inline: 18px;
  }

  .entry-card,
  .interior-card,
  .interior-card--feature {
    width: calc(100vw - 54px);
  }

  .nav--catalog {
    align-items: flex-start;
    gap: 10px;
  }

  .nav__label {
    width: 100%;
  }

  .topbar__inner {
    padding: 7px 0;
  }
}
