:root {
  --dark: #14324b;
  /*--accent: #0d7f72;*/
  /*--accent:  #f44336;*/
    --accent:  #007BFF;
  --light: #f4f8fb;
  --border: #dfe7ee;
  --text: #17212b;
  --muted: #687786;
  --danger: #ad3333;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Geometria, Montserrat, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  /*letter-spacing: -0.06em;*/
letter-spacing: -0.01em;
}

/*html,*/
/*body {*/
/*    max-width: 100%;*/
/*    overflow-x: hidden;*/
/*}*/

a {
  color: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 24px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--dark);
  font-size: 22px;
  max-width: 200px;
}
img.logo-img {max-width: 200px;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
}

.search input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11px 16px;
}

.phone {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.lang {
  display: flex;
  gap: 6px;
}

.lang a {
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 10px;
}

.lang a.active {
  background: var(--dark);
  color: #fff;
}

.cart-btn {
  /*border: 0;*/
  /*background: var(--light);*/
  /*border-radius: 99px;*/
  /*padding: 10px 13px;*/
  /*cursor: pointer;*/
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 14px;
    background: #eef7f6;
    color: var(--text);
    cursor: pointer;
}

.cart-btn span {
  /*display: inline-grid;*/
  /*place-items: center;*/
  /*min-width: 21px;*/
  /*height: 21px;*/
  /*border-radius: 99px;*/
  /*background: var(--accent);*/
  /*color: #fff;*/
  /*font-size: 12px;*/
  position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner {
  margin: 24px auto;
  max-width: 1240px;
  padding: 54px 40px;
  border-radius: 28px;
  /*background: linear-gradient(135deg, #e8f7f4, #f4f8fb);*/
  background: url(/assets/water_filter_banner_background_variant_1.png);
  overflow: hidden;
}

.banner h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.05;
  color: var(--dark);
}

.banner p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.layout {
  max-width: 1240px;
  margin: 0 auto 40px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.filters {
  align-self: start;
  position: sticky;
  top: 85px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.filters h2 {
  margin: 0 0 18px;
}

.filter-block {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-block label,
.check {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 25px rgba(20, 50, 75, .06);
}

.photo-wrap {
  position: relative;
  background: var(--light);
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1px;
}

.sticker {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffce3a;
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.card-body {
  padding: 14px;
}

.availability {
  font-size: 12px;
  margin-bottom: 8px;
}

.availability.yes {
  /*color: var(--accent);*/
   color: #009688;
       background: #0096881a;
    width: fit-content;
    padding: 2px 12px;
    border-radius: 8px;
}

.availability.no {
  color: var(--danger);
}

.card h3 {
  font-size: 16px;
  line-height: 1.3;
  min-height: 112px;
  margin: 0 0 8px;
font-weight: 600;
}

.article,
.brand {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.brand {
  color: var(--dark);
  font-weight: 500;
}

.prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 48px;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 13px;
}

.prices strong {
  font-size: 19px;
  color: var(--dark);
}

.buy,
.primary,
.secondary,
.link-btn, .product-add {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
}

.buy,
.primary, .product-add {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.product-add:hover {
  background: #004b9b;
}

.buy:disabled {
  background: #b7c4c9;
  cursor: not-allowed;
}

.secondary {
  margin-top: 10px;
  background: var(--light);
  color: var(--dark);
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px 24px;
  /*background: var(--dark);*/
    background: #174290;
  color: #fff;
}

.footer a {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(8, 22, 34, .55);
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 26px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: var(--light);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.cart-modal-card {
  width: min(650px, 100%);
}

.cart-row {
  display: grid;
  grid-template-columns: 64px 1fr 34px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.cart-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--light);
  border-radius: 12px;
}

.cart-row small {
  display: block;
  color: var(--muted);
}

.cart-row button {
  border: 0;
  background: #ffe7e7;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.cart-total {
  font-weight: 800;
  text-align: right;
  margin: 16px 0;
}

.cookies {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: auto;
  padding: 14px 18px;
  border-radius: 16px;
  background: #17212b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.cookies button {
  border: 0;
  border-radius: 99px;
  background: #fff;
  padding: 8px 14px;
  cursor: pointer;
}

.checkout {
  max-width: 920px;
  margin: 30px auto;
  padding: 0 16px;
}

.checkout-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.radio-group {
  display: grid;
  gap: 8px;
}

.order-list {
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  margin: 18px 0;
}

.notice {
  padding: 14px;
  border-radius: 14px;
  margin: 16px 0;
}

.notice.ok {
  background: #e7f7ec;
}

.notice.error {
  background: #ffe7e7;
}


.mobile-filters-btn,
.filters-close,
.filters-apply,
.filters-backdrop {
  display: none;
}

@media (max-width: 1050px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .header {
    grid-template-columns: 1fr auto auto;
  }
body {letter-spacing: -0.06em; font-family: 'Geometria', sans-serif !important;
        -webkit-text-size-adjust: 100%; 
        -webkit-font-smoothing: antialiased; }
.banner {
    background-size: cover;
    background-repeat: no-repeat;
    height: initial;
    /*min-height: 50vh;*/
    background-position: bottom;
}
  .search {
    grid-column: 1 / -1;
    order: 2;
  }

  .phone {
    display: none;
  }

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

  body.filters-open {
    overflow: hidden;
  }

  .mobile-filters-btn {
    display: block;
    width: calc(100% - 32px);
    max-width: 1240px;
    margin: 0 auto 16px;
    border: 0;
    border-radius: 14px;
    padding: 13px 16px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
  }

  .filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 18;
    display: block;
    background: rgba(8, 22, 34, .45);
  }

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

  .filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 19;
    width: min(88vw, 360px);
    overflow-y: auto;
    border-radius: 0 22px 22px 0;
    transform: translateX(-105%);
    transition: transform .22s ease;
    box-shadow: 18px 0 45px rgba(8, 22, 34, .22);
  }

  .filters.open {
    transform: translateX(0);
  }

  .filters-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--light);
    cursor: pointer;
    font-size: 22px;
  }

  .filters-apply {
    display: block;
    margin-top: 18px;
  }


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

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

  .banner h1 {
    font-size: 34px;
  }
}
@media (max-width: 380px) {  img.logo-img {
      max-width: 120px;
  }}
@media (max-width: 520px) {
  .header {
    padding: 12px;
  }

  .logo {
    font-size: 18px;
  }
  img.logo-img {
      max-width: 150px;
  }

  .banner {
    margin: 12px;
    padding: 32px 20px;
    border-radius: 18px;
  }

  .banner h1 {
    font-size: 28px;
  }

  .products {
    /*grid-template-columns: 1fr;*/
     grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .prices {display: grid;}
.card h3 {font-size: 16px;         font-weight: 600;
        letter-spacing: -0.01em;}
.availability, .article, .brand {font-size: 10px;}
  .footer {
    grid-template-columns: 1fr;
  }

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

  .cookies {
    display: grid;
    text-align: center;
  }
}

.text-page {
    max-width: 920px;
    padding-top: 48px;
    padding-bottom: 64px;
}

.text-page h1 {
    margin-bottom: 24px;
    font-size: 38px;
    line-height: 1.15;
}

.text-page h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 22px;
}

.text-page p {
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.top-nav a {
    color: var(--muted);
    text-decoration: none;
}

.top-nav a:hover {
    color: var(--text);
}

.site-footer {
    margin-top: 64px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 760px) {
    .top-nav {
        display: none;
    }

    .text-page {
        padding-top: 28px;
        padding-bottom: 40px;
    }

    .text-page h1 {
        font-size: 28px;
    }

    .text-page h2 {
        font-size: 19px;
    }

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

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.page-wrap {
    padding-top: 48px;
    padding-bottom: 64px;
}

.text-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.text-page h1 {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.text-page h2 {
    margin: 34px 0 12px;
    color: var(--text);
    font-size: 22px;
    line-height: 1.25;
}

.text-page p {
    margin: 0 0 16px;
    max-width: 820px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.site-footer {
    margin-top: 40px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 760px) {
    .page-wrap {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .text-page {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .text-page h1 {
        font-size: 28px;
    }

    .text-page h2 {
        font-size: 19px;
    }

    .text-page p {
        font-size: 15px;
    }

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

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
.product-page {
    padding-top: 32px;
    padding-bottom: 64px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

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

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    gap: 36px;
    align-items: start;
}

.product-gallery,
.product-info {
    /*border: 1px solid var(--border);*/
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.product-gallery {
    padding: 24px;
}

.product-main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
    border-radius: 20px;
    /*background: #f8fafc;*/
    overflow: hidden;
}

.product-main-image img {
    max-width: 100%;
    max-height: 460px;
    object-fit: contain;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-thumbs button {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.product-thumbs button.active {
    border-color: var(--accent);
}

.product-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 32px;
}

.product-sticker {
    display: inline-flex;
    margin-bottom: 14px;
}

.product-info h1 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.product-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
}

.product-meta strong {
    color: var(--text);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.product-price strong {
    font-size: 34px;
    line-height: 1;
}

.product-add {
    width: 100%;
    min-height: 52px;
}

.product-add:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.product-description {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    line-height: 1.7;
}

.product-description h2 {
    margin: 0 0 12px;
    color: var(--text);
    font-size: 22px;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
}

.product-title-link:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-main-image {
        min-height: 320px;
    }

    .product-main-image img {
        max-height: 320px;
    }

    .product-info {
        padding: 24px;
    }

    .product-info h1 {
        font-size: 28px;
    }

    .product-price strong {
        font-size: 30px;
    }
}
.product-description-content {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.product-description-content table {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 28px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    font-size: 15px;
}

.product-description-content tbody,
.product-description-content thead,
.product-description-content tr {
    width: 100%;
}

.product-description-content th,
.product-description-content td {
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    text-align: left;
}

.product-description-content tr:last-child th,
.product-description-content tr:last-child td {
    border-bottom: 0;
}

.product-description-content th {
    color: var(--text);
    background: #f8fafc;
    font-weight: 800;
}

.product-description-content td:first-child,
.product-description-content th:first-child {
    width: 42%;
    color: var(--text);
    font-weight: 700;
}

.product-description-content td:last-child,
.product-description-content th:last-child {
    color: var(--muted);
}

.product-description-content tr:nth-child(even) td {
    background: #f8fafc;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4 {
    margin: 32px 0 16px;
    color: var(--text);
    text-align: left;
    line-height: 1.25;
}

.product-description-content h2:first-child,
.product-description-content h3:first-child,
.product-description-content h4:first-child {
    margin-top: 0;
}

.product-description-content ul,
.product-description-content ol {
    margin: 0 0 24px 22px;
    padding: 0;
}

.product-description-content li {
    margin-bottom: 8px;
}

.product-description-content p {
    margin: 0 0 16px;
}

@media (max-width: 760px) {
    .product-description-content {
        font-size: 15px;
    }

    .product-description-content table {
        display: block;
        overflow-x: auto;
        border-radius: 14px;
        font-size: 14px;
    }

    .product-description-content th,
    .product-description-content td {
        min-width: 150px;
        padding: 13px 14px;
    }

    .product-description-content td:first-child,
    .product-description-content th:first-child {
        width: auto;
    }
}
.reviews-section {
    margin: 34px 0 42px;
}

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

.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.review-stars {
    margin-bottom: 14px;
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-card p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.review-author {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 18px;
}

.review-author strong {
    color: var(--text);
    font-size: 15px;
}

.review-author span {
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .reviews-section {
        margin: 24px 0 32px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        min-height: auto;
        padding: 18px;
        border-radius: 18px;
    }
}
.footer-brand {
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    gap: 16px;
}

.trade-text {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    opacity: .5;
}

.trade-logo {
    width: 86px;
    height: auto;
    filter: grayscale(100%);
    opacity: .5;
}
.trade-logo:hover,.trade-text:hover {opacity: 1;  cursor: pointer;}

.brand-list {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.3;
    color: #c2c2c2;
}

.copyright {
    margin-top: 8px;
    font-size: 12px;
}
.payment-hint {
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8fafc;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.checkout-policy-note {
    margin: 10px 0 0;
    font-size: 14px;
}

.checkout-policy-note a {
    color: var(--muted);
    text-decoration: underline;
}

.checkout-policy-note a:hover {
    color: var(--text);
}
.copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-logos img {
    height: 18px; /* подгони под свой дизайн */
    width: auto;
    display: block;
    border-radius: 2px;
}
.hero-conversion {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: stretch;
    margin: 0px auto 38px;
    padding: 42px;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.16), transparent 32%), linear-gradient(135deg, #e9f3f8 0%, #f8fafc 100%);
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 20px;
    border-radius: 999px;
    background: #ffffff;
    color: #0162b7;
    font-size: 13px;
    font-weight: 600;
    /*border: 0.5px solid #027bffb5;*/
}

.hero-conversion h1 {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--text);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-conversion__content > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

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

.hero-primary,
.hero-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
}

.hero-primary {
    background: var(--accent);
    color: #fff;
}

.hero-secondary {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
}

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

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    /*border: 0.5px solid #88b8ff;*/
}

.hero-trust span::before {
    content: "✓";
    color: #059669;
    font-weight: 900;
}

.hero-conversion__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.hero-conversion__card strong {
    color: var(--text);
    font-size: 22px;
    line-height: 1.2;
}

.hero-conversion__card p {
    margin: 12px 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.hero-chat-buttons,
.product-consult-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-chat-buttons a,
.product-consult-actions a {
    flex: 1;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--text);
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.product-consult-box {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fafc;
}

.product-consult-box strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    line-height: 1.3;
}

.product-consult-box p {
    margin: 8px 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.chat-widget {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
}

.chat-widget__button {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.25);
}

.chat-widget__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 290px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.18);
}

.chat-widget__panel strong {
    display: block;
    color: var(--text);
    font-size: 17px;
}

.chat-widget__panel p {
    margin: 8px 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.chat-widget__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 8px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
}

.chat-widget__link.telegram {
    background: #e0f2fe;
    color: #0369a1;
}

.chat-widget__link.viber {
    background: #f3e8ff;
    color: #6d28d9;
}

@media (max-width: 900px) {
    .hero-conversion {
        grid-template-columns: 1fr;
        padding: 28px;
    }
}

@media (max-width: 620px) {
    .hero-conversion {
        margin: 0px 0 28px;
        padding: 22px;
        /*border-radius: 22px;*/
    }

    .hero-conversion h1 {
        font-size: 36px;
                font-weight: 800;
        color: #0d0d0d;
    }

    .hero-conversion__content > p {
font-size: 16px;
        font-weight: 600;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .hero-trust {
        flex-direction: row;
    }

    .hero-conversion__card {
        padding: 20px;
    }

    .chat-widget {
        right: 14px;
        bottom: 14px;
    }

    .chat-widget__panel {
        width: calc(100vw - 28px);
        right: -6px;
    }
}
a.primary.hero-primary, a.secondary.hero-secondary {    max-width: max-content;}
.chat-widget__button {
    /*width: 58px;*/
    /*min-width: 58px;*/
    /*height: 58px;*/
    /*padding: 0 18px;*/
    /*overflow: hidden;*/
    /*transition: width .25s ease, border-radius .25s ease;*/
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.chat-widget__icon,
.chat-widget__text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.chat-widget__text {
    margin-bottom: 12px;
    display: none;
    max-width: 48px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
}

.chat-widget__button.is-text {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 999px;
    transform: scale(1.04);
}
.chat-widget__button.is-text .chat-widget__icon {
    display: none;
}

.chat-widget__button.is-text .chat-widget__text {
    display: inline-flex;
}

.product-labels {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0 6px;
}

.choice-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 7px;
    background: #fff3a3;
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.product-social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.product-social-proof span:last-child {
    color: #111827;
}

.product-social-proof span:last-child::first-letter {
    color: #f59e0b;
}
.product-social-proof {
    color: #6b7280;
}

.product-rating-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin: 4px 0 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.product-rating-line span:last-child {
    color: #111827;
}

.product-rating-line span:last-child::first-letter {
    color: #f59e0b;
}

.hero-conversion--ab {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 72px 64px;
    /*border-radius: 28px;*/
    background-image:
     linear-gradient(90deg, rgb(227 237 250 / 94%) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.12) 72%), url(/assets/desc-background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-conversion--ab .hero-conversion__content {
    max-width: 720px;
}

.hero-conversion--ab .hero-secondary,
.hero-conversion--ab .hero-conversion__card {
    display: none;
}

@media (max-width: 768px) {
    .hero-conversion--ab {
        min-height: 560px;
        padding: 36px 20px;
        /*border-radius: 22px;*/
        /*background-image:*/
        /*    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 45%, rgba(255,255,255,0.08) 100%),*/
        /*    url('/assets/mob-background.jpg');*/
        background-image:
linear-gradient(180deg, rgba(255,255,255,0.74) 0%, rgba(255,255,255,0.6) 45%, rgba(255,255,255,0.95) 100%),
            url('/assets/mob-background.jpg');
        background-position: center top;
    }

    .hero-conversion--ab .hero-conversion__content {
        max-width: 100%;
    }
}
a.primary.hero-primary:hover {
    background: #045bb8;
}

.catalog-consult {
    margin: 48px 0;
    border-radius: 24px;
    overflow: hidden;
    grid-column: 1 / -1;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #1e293b 100%
        );

    color: #fff;
}

.catalog-consult__content {
    padding: 36px;
    text-align: center;
}

.catalog-consult__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;
    border-radius: 999px;

    background: rgba(255,255,255,.12);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.catalog-consult h3 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
}

.catalog-consult p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: rgba(255,255,255,.85);
}

.catalog-consult__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.catalog-consult__telegram,
.catalog-consult__viber {
    min-width: 140px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
}

.catalog-consult__telegram {
    background: #38bdf8;
    color: #fff;
}

.catalog-consult__viber {
    background: #8b5cf6;
    color: #fff;
}

.catalog-consult__phone {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .catalog-consult__content {
        padding: 28px 20px;
    }

    .catalog-consult h3 {
        font-size: 24px;
    }

    .catalog-consult__actions {
        flex-direction: column;
    }

    .catalog-consult__telegram,
    .catalog-consult__viber {
        width: 100%;
    }

    .catalog-consult__phone {
        font-size: 18px;
    }
}

.catalog-consult {
    grid-column: 1 / -1;
    width: 100%;
    margin: 24px 0;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.catalog-consult__content {
    padding: 34px 40px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.catalog-consult__badge {
    grid-column: 1 / -1;
    justify-self: start;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: 14px;
    font-weight: 700;
}

.catalog-consult h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
}

.catalog-consult p {
    margin: 8px 0 0;
    max-width: 560px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.5;
}

.catalog-consult__actions {
    display: flex;
    gap: 12px;
}

.catalog-consult__telegram,
.catalog-consult__viber {
    min-width: 130px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.catalog-consult__telegram {
    background: #38bdf8;
    color: #fff;
}

.catalog-consult__viber {
    background: #8b5cf6;
    color: #fff;
}

.catalog-consult__phone {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .catalog-consult {
        margin: 16px 0;
        border-radius: 24px;
    }

    .catalog-consult__content {
        padding: 28px 20px;
        display: block;
        text-align: center;
    }

    .catalog-consult__badge {
        margin-bottom: 16px;
    }

    .catalog-consult h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .catalog-consult p {
        margin: 0 auto 22px;
        font-size: 15px;
    }

    .catalog-consult__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }

    .catalog-consult__telegram,
    .catalog-consult__viber {
        min-width: 0;
        width: 100%;
        padding: 14px 10px;
    }

    .catalog-consult__phone {
        display: block;
        font-size: 20px;
        line-height: 1.25;
    }
}
.product-main-image {
    position: relative;
}

.product-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 10px 22px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    /*box-shadow: 0 12px 28px rgba(255, 45, 45, 0.35);*/
}

.product-sale-ticker {
    margin: 12px 0 12px;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff3b30, #ff7a00, #ff3b30);
    color: #fff;
    /*box-shadow: 0 14px 30px rgba(255, 59, 48, 0.28);*/
}

.product-sale-ticker__track {
    display: flex;
    width: max-content;
    animation: productSaleTicker 11s linear infinite;
}

.product-sale-ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 22px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-sale-ticker__track b {
    font-size: 12px;
    color: #fff700;
}

@keyframes productSaleTicker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .product-discount-badge {
        top: 12px;
        left: 12px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .product-sale-ticker__track span {
        font-size: 13px;
        padding: 10px 18px;
    }

    .product-sale-ticker__track b {
        font-size: 15px;
    }
}


.product-sale-ticker {
    max-width: 100%;
    width: 100%;
}

.product-sale-ticker__track {
    min-width: 200%;
}

@media (max-width: 768px) {
    .product-sale-ticker {
        width: 100%;
        /*max-width: calc(100vw - 32px);*/
        max-width: calc(100vw - 64px);
    }

    .product-sale-ticker__track {
        width: max-content;
        max-width: none;
    }

    .product-sale-ticker__track span {
        max-width: none;
        font-size: 12px;
        padding: 10px 14px;
    }
}
.consult-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 16px 56px;
}

.consult-hero {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    gap: 32px;
    align-items: center;
    padding: 56px;
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 44%, rgba(255,255,255,.25) 100%),
        url('/assets/desc-background.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.consult-hero h1 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
}

.consult-hero p {
    max-width: 620px;
    color: #536173;
    font-size: 18px;
    line-height: 1.55;
}

.consult-city {
    margin: 28px 0 22px;
    max-width: 420px;
}

.consult-city label {
    display: block;
    margin-bottom: 8px;
    font-weight: 800;
}

.consult-city select {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid #d7e2ef;
    border-radius: 16px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
}

.consult-hero__card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.consult-hero__card strong {
    display: block;
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.consult-phone {
    display: inline-flex;
    margin-top: 18px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
}

.consult-section {
    margin-top: 56px;
}

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

.consult-steps article,
.consult-problems__grid div {
    padding: 24px;
    border: 1px solid #dfe8f2;
    border-radius: 24px;
    background: #fff;
}

.consult-steps span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #0b7cff;
    font-size: 14px;
    font-weight: 900;
}

.consult-steps h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.consult-steps p {
    margin: 0;
    color: #64748b;
    line-height: 1.5;
}

.consult-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.consult-problems__grid div {
    font-weight: 800;
}

.consult-final {
    max-width: 100%;
    margin-top: 56px;
}

@media (max-width: 900px) {
    .consult-hero {
        grid-template-columns: 1fr;
        padding: 36px 20px;
        background:
            linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 48%, rgba(255,255,255,.12) 100%),
            url('/assets/mob-background.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .consult-hero__card {
        display: none;
    }

    .consult-steps,
    .consult-problems__grid {
        grid-template-columns: 1fr;
    }

    .consult-city {
        max-width: 100%;
    }
}