:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #4a4a4a;
  --line: rgba(17, 17, 17, 0.12);
  --brand: #93e48d;
  --brand-dark: #091009;
  --surface: #ffffff;
  --surface-alt: #f7f7f5;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
  --header-height: 76px;
  --mobile-nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-top: 60px;
  overflow-x: hidden;
}

body.catalog-page {
  padding-top: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 168, 234, 0.88), rgba(147, 228, 141, 0.82)),
    url("/assets/img/tild3562-6435-4461-a530-383365333062/2560x1440_px_Colorfu.jpg") center/cover no-repeat;
  padding: 42px 0 32px;
  overflow: hidden;
}

body.catalog-page .hero {
  padding-top: 102px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 40px;
}

.hero__content {
  color: #0f0f0f;
}

.hero__visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero__visual img {
  width: min(100%, 520px);
  height: auto;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal !important;
  filter: none !important;
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  max-width: 720px;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.hero__lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--brand);
  color: var(--brand-dark);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(0, 0, 0, 0.08);
  color: #111;
}

.section {
  padding: 56px 0;
}

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

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section__head h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
}

.section__head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.product-card {
  overflow: hidden;
}

.product-card__thumb {
  display: grid;
  place-items: center;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__thumb img {
  transform: scale(1.02);
}

.product-card__body {
  padding: 22px 24px 24px;
}

.product-card h3 {
  font-size: 24px;
  line-height: 1.15;
}

.product-card p {
  margin-top: 12px;
  color: var(--muted);
}

.product-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.qunelle-home-catalog {
  width: 100%;
}

.qunelle-home-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.qunelle-home-catalog__card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.qunelle-home-catalog__thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

.qunelle-home-catalog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.3s ease;
}

.qunelle-home-catalog__card:hover .qunelle-home-catalog__thumb img {
  transform: scale(1.02);
}

.qunelle-home-catalog__body {
  padding: 20px 22px 24px;
}

.qunelle-home-catalog__title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
}

.qunelle-home-catalog__price {
  margin-top: 10px;
  display: grid;
  gap: 2px;
  line-height: 1.4;
  color: #000;
}

.qunelle-home-catalog__price-label {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.56);
}

.qunelle-home-catalog__price-value {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
}

.qunelle-home-catalog__meta {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.64);
}

.qunelle-home-catalog__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.qunelle-home-catalog__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 30px;
  background: #93e48d;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.qunelle-home-catalog__btn:hover {
  background: #000;
  color: #fff;
}

.qunelle-home-catalog__btn--secondary {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.qunelle-home-catalog__btn--secondary:hover {
  background: #f3f3f0;
  color: #000;
}

.qunelle-quick-order[hidden] {
  display: none;
}

.qunelle-quick-order {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.qunelle-quick-order__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 12, 0.46);
}

.qunelle-quick-order__dialog {
  position: relative;
  width: min(100%, 440px);
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.qunelle-quick-order__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: #000;
  cursor: pointer;
}

.qunelle-quick-order__dialog h3 {
  font-size: 24px;
  line-height: 1.15;
}

.qunelle-quick-order__dialog p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.68);
}

.qunelle-quick-order__product {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #f6f7f3;
  font-size: 14px;
  color: #000;
}

.qunelle-quick-order__form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.qunelle-quick-order__form input,
.qunelle-quick-order__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  font-size: 15px;
  color: #000;
  background: #fff;
}

.qunelle-quick-order__form textarea {
  min-height: 96px;
  resize: vertical;
}

.qunelle-quick-order__submit {
  min-height: 46px;
  border: 0;
  cursor: pointer;
}

.qunelle-quick-order__note {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.58);
}

body.qunelle-modal-open {
  overflow: hidden;
}

.info-grid,
.feature-grid,
.detail-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.info-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.info-card,
.feature-card,
.detail-card,
.cta-card {
  padding: 28px;
}

.info-card p + p,
.detail-card p + p {
  margin-top: 12px;
}

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

.feature-card h3,
.detail-card h3 {
  font-size: 22px;
  line-height: 1.2;
}

.feature-card p,
.detail-card p,
.cta-card p {
  margin-top: 10px;
  color: var(--muted);
}

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

.detail-card ul {
  padding-left: 20px;
  margin-top: 14px;
  color: var(--muted);
}

.detail-card li + li {
  margin-top: 8px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.section__head--compact {
  margin-bottom: 20px;
}

.section__head--compact h2 {
  font-size: clamp(24px, 2.3vw, 34px);
}

.price-card,
.calculator-card {
  padding: 28px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th:last-child,
.price-table td:last-child {
  text-align: right;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-table__hint {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.calculator-card {
  display: grid;
  gap: 18px;
}

.calculator-card label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.calculator-card select,
.calculator-card input {
  width: 100%;
  min-height: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
  color: #111;
}

.qcalc-quick {
  background: #f7f7f5;
  border: 1px solid #e6e6e0;
  border-radius: 28px;
  padding: 18px 16px 16px;
  margin: 0 0 24px;
  box-sizing: border-box;
  min-width: 0;
}

.qcalc-quick__eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efefeb;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.qcalc-quick__title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
}

.qcalc-quick__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
  min-width: 0;
}

.qcalc-quick__grid--3 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 88px;
}

.qcalc-quick__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

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

.qcalc-quick__grid--count {
  grid-template-columns: 88px;
  justify-content: end;
}

.qcalc-quick__grid--custom {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) 88px;
}

.qcalc-field,
.calculator-grid label,
.calculator-choice,
.calculator-cart__item,
.calculator-cart__item-side {
  min-width: 0;
}

.qcalc-field label {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 6px;
  color: #3e3e3a;
}

.qcalc-field select,
.qcalc-field input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 48px;
  border: 1px solid #d9d9d3;
  border-radius: 16px;
  background: #fff;
  padding: 0 14px;
  font-size: 16px;
  line-height: 48px;
}

.qcalc-field--caps {
  margin-bottom: 10px;
}

.qcalc-modes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 10px;
}

.qcalc-mode {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 14px;
  border: 1px solid #d9d9d3;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 24px 0 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.qcalc-mode.is-active {
  border-color: rgba(10, 126, 182, 0.42);
  box-shadow: inset 0 0 0 1px rgba(10, 126, 182, 0.18);
  background: rgba(10, 126, 182, 0.04);
}

.qcalc-mode input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.qcalc-mode::before,
.qcalc-mode::after,
.calculator-choice::before,
.calculator-choice::after {
  content: "";
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.qcalc-mode::before,
.calculator-choice::before {
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(10, 126, 182, 0.3);
  background: rgba(255, 255, 255, 0.92);
}

.qcalc-mode::after,
.calculator-choice::after {
  top: 14px;
  right: 15px;
  width: 5px;
  height: 8px;
  border-right: 2px solid #0a7eb6;
  border-bottom: 2px solid #0a7eb6;
  transform: rotate(45deg);
}

.qcalc-mode.is-active::before,
.qcalc-mode.is-active::after,
.calculator-choice.is-active::before,
.calculator-choice.is-active::after {
  opacity: 1;
}

.qcalc-size-block {
  margin-bottom: 10px;
}

.qcalc-custom-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.qcalc-custom-row {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #fff;
}

.qcalc-custom-row__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-bottom: 10px;
}

.qcalc-custom-row__head strong {
  font-size: 14px;
  min-width: 0;
}

.qcalc-custom-row__head button {
  border: 0;
  background: transparent;
  color: #0a7eb6;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.qcalc-custom-actions {
  display: flex;
  margin-top: 10px;
}

.qcalc-summary {
  background: linear-gradient(90deg, #eaf6fb 0%, #eef9e9 100%);
  border-radius: 20px;
  padding: 14px 14px 12px;
  margin-bottom: 10px;
}

.qcalc-summary__meta {
  font-size: 14px;
  line-height: 1.35;
  color: #4a4a45;
  margin-bottom: 6px;
}

.qcalc-summary__price {
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #111;
}

.qcalc-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.qcalc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 18px;
  border: 1px solid #d9d9d3;
  background: #fff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  padding: 0 14px;
  box-sizing: border-box;
}

.qcalc-btn--primary {
  background: #8dde82;
  border-color: #8dde82;
}

.calculator-form,
.calculator-choice-grid,
.calculator-cart,
.calculator-cart__list,
.calculator-breakdown,
.calculator-breakdown__list,
.calculator-breakdown__totals {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.calculator-section,
.calculator-cart {
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: #fafaf8;
}

.calculator-section {
  gap: 12px;
}

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

.calculator-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.calculator-grid input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 16px;
  padding: 0 16px;
  background: #fff;
  color: #111;
}

.calculator-section__title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

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

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

.calculator-choice {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.calculator-choice.is-active {
  border-color: rgba(10, 126, 182, 0.42);
  box-shadow: inset 0 0 0 1px rgba(10, 126, 182, 0.16);
  background: rgba(10, 126, 182, 0.035);
}

.calculator-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.calculator-choice__step {
  display: none;
}

.calculator-choice__title {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.calculator-choice__text {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.calculator-card__actions,
.calculator-cart__head,
.calculator-cart__item,
.calculator-cart__item-side {
  display: flex;
  align-items: center;
}

.calculator-card__actions,
.calculator-cart__head,
.calculator-cart__item {
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.calculator-card__actions {
  margin-top: 8px;
}

.calculator-card__status,
.calculator-cart__item-meta,
.calculator-cart__empty,
.calculator-cart__clear {
  color: var(--muted);
  font-size: 13px;
}

.calculator-inline-note {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.04);
  color: var(--muted);
  font-size: 14px;
}

.calculator-cart__item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.calculator-cart__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.calculator-cart__item-side {
  gap: 12px;
  flex-shrink: 0;
}

.calculator-position-row__head button,
.calculator-cart__item-side button,
.calculator-cart__clear {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.calculator-position-row__head button,
.calculator-cart__item-side button {
  color: #0a7eb6;
}

.calculator-breakdown__row,
.calculator-breakdown__totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.calculator-breakdown__row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.calculator-breakdown__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.calculator-breakdown__row span,
.calculator-breakdown__totals span {
  color: var(--muted);
  font-size: 13px;
}

.calculator-breakdown__row > div,
.calculator-breakdown__totals div {
  display: grid;
  gap: 4px;
}

.calculator-breakdown__totals {
  padding-top: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.product-visual {
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-meta {
  display: grid;
  gap: 18px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calculator-head {
  margin-bottom: 8px;
}

.cta-section {
  padding: 0 0 56px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 22px;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    url("/assets/img/tild3434-3938-4537-b362-616333656331/Frame_80_5_1.png") right center/cover no-repeat;
}

.cta-card > *,
.calculator-card > *,
.qcalc-quick > *,
.calculator-section > *,
.contact-grid > * {
  min-width: 0;
}

.cta-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  text-transform: uppercase;
}

.cta-form {
  display: grid;
  gap: 12px;
  align-content: start;
  width: 100%;
  min-width: 0;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  min-height: 48px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

.cta-form textarea {
  min-height: 112px;
  border-radius: 24px;
  padding: 14px 18px;
  resize: vertical;
}

.cta-form__submit {
  justify-self: start;
  max-width: 100%;
  box-sizing: border-box;
}

.cta-form__note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-block {
  background:
    linear-gradient(90deg, rgba(0, 168, 234, 0.94), rgba(147, 228, 141, 0.84)),
    url("/assets/img/tild3562-6435-4461-a530-383365333062/2560x1440_px_Colorfu.jpg") center/cover no-repeat;
  padding: 48px 0 32px;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.contact-block h2 {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
}

.contact-block p {
  margin-top: 10px;
  font-size: 18px;
  max-width: 560px;
}

.contact-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
}

.contact-socials img,
.contact-socials svg {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-footer {
  background: #0c0c0c;
  color: rgba(255, 255, 255, 0.82);
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  font-size: 12px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  background: #0096db;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-bottom-nav__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mobile-bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.mobile-bottom-nav img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 980px) {
  body {
    padding-top: 60px;
  }

  body.catalog-page {
    padding-top: 0;
  }

  .hero {
    padding-top: 26px;
  }

  body.catalog-page .hero {
    padding-top: 86px;
  }

  .hero__grid,
  .info-grid,
  .product-layout,
  .cta-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .hero__visual img {
    min-height: 320px;
  }

  .calculator-choice-grid,
  .calculator-choice-grid--compact {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .qcalc-quick__grid--custom .qcalc-field:last-child {
    grid-column: span 2;
  }

  .catalog-grid,
  .feature-grid,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qunelle-home-catalog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-form__submit {
    width: 100%;
  }
}

@media (max-width: 479px) {
  body {
    padding-top: 50px;
  }

  body.catalog-page {
    padding-top: 0;
  }

  body.catalog-page .hero {
    padding-top: 76px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .hero__lead,
  .section__head p,
  .contact-block p {
    font-size: 15px;
  }

  .section {
    padding: 40px 0;
  }

  .product-card__body,
  .info-card,
  .feature-card,
  .detail-card,
  .cta-card,
  .price-card,
  .calculator-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalog-grid,
  .feature-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .qunelle-home-catalog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .qunelle-home-catalog__body {
    padding: 18px 18px 20px;
  }

  .qunelle-home-catalog__title {
    font-size: 20px;
  }

  .qunelle-home-catalog__price {
    gap: 1px;
  }

  .qunelle-home-catalog__price-value {
    font-size: 18px;
  }

  .qunelle-home-catalog__actions {
    gap: 10px;
  }

  .qunelle-home-catalog__btn {
    width: 100%;
  }

  .qunelle-quick-order__dialog {
    padding: 22px 18px 18px;
  }

  .section--tight {
    padding-top: 24px;
  }

  .section__head--compact {
    margin-bottom: 10px;
  }

  .section__head--compact h2 {
    font-size: 22px;
  }

  .calculator-card {
    gap: 14px;
  }

  .calculator-section__title {
    font-size: 14px;
  }

  .calculator-cart {
    padding: 12px 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .calculator-inline-note,
  .calculator-inline-note,
  .calculator-card label,
  .calculator-choice__text,
  .calculator-breakdown__row span,
  .calculator-breakdown__totals span {
    font-size: 12px;
  }

  .calculator-card select,
  .calculator-card input {
    min-height: 42px;
    height: 42px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .calculator-choice,
  .calculator-choice--compact {
    padding: 11px 12px;
    border-radius: 14px;
  }

  .qcalc-quick {
    padding: 16px 14px 14px;
  }

  .qcalc-quick__title {
    font-size: 22px;
  }

  .qcalc-quick__grid,
  .qcalc-quick__grid--2x,
  .qcalc-quick__grid--custom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qcalc-quick__grid--single,
  .calculator-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .qcalc-quick__grid--3 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 78px;
  }

  .qcalc-quick__grid--count {
    grid-template-columns: 78px;
  }

  .qcalc-field select,
  .qcalc-field input {
    height: 46px;
    font-size: 15px;
  }

  .qcalc-mode {
    height: 42px;
    font-size: 14px;
  }

  .qcalc-summary__price {
    font-size: 30px;
  }

  .qcalc-btn {
    height: 48px;
    font-size: 16px;
  }

  .qcalc-actions {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: var(--mobile-nav-height);
  }
}
