/* Мобильная версия: только этот файл и подключение в HTML.
   Десктопный style.css не меняется.
   Брейкпоинт: до 1199px.
   Числа в новых декларациях — в px (корень html ниже синхронизирует rem из основного CSS). */

/* По умолчанию (десктоп) — мобильный блок продукции скрыт */
.products .products-mobile {
  display: none;
}

@media screen and (max-width: 1199px) {
  html {
    font-size: 1px !important;
  }

  .age-gate {
    align-items: center;
    padding: 16px;
  }

  .age-gate-card {
    width: 100%;
  }

  .age-gate-box {
    padding: 18px 16px 20px;
  }

  .age-gate-text {
    margin-bottom: 16px;
    font-size: 15px;
  }

  .age-gate-mark {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .age-gate-actions {
    flex-direction: column;
    gap: 14px;
  }

  .age-gate-button {
    width: 100%;
    min-width: 0;
    padding: 10px 18px;
    font-size: 18px;
  }

  .age-gate-denied {
    font-size: 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Шапка + бургер-меню */
  header {
    padding-top: 0;
  }

  body.nav-open header {
    z-index: 10020;
  }

  header .container {
    flex-wrap: nowrap;
    align-items: center;
    row-gap: 12px;
    padding: 10px 16px;
    position: relative;
    z-index: 1;
  }

  body.nav-open header .container {
    z-index: 10003;
  }

  header .header-logo {
    max-width: 120px;
    flex-shrink: 0;
  }

  nav.header-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    right: calc((min(100vw, 600px) - 100vw) / 2);
    width: min(300px, 86vw);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 68px 0 28px;
    background: rgba(23, 22, 20, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateX(100%);
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s;
  }

  body.nav-open nav.header-nav {
    transform: translateX(0);
    visibility: visible;
  }

  nav.header-nav .nav-item {
    font-size: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    line-height: 130%;
    transition: background 0.22s ease, color 0.22s ease;
  }

  nav.header-nav .nav-item:hover,
  nav.header-nav .nav-item:focus-visible {
    background: rgba(167, 136, 115, 0.14);
    outline: none;
  }

  nav.header-nav .nav-dropdown {
    display: flex;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 8px 0 0 18px;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  nav.header-nav .nav-dropdown-link {
    padding: 8px 0;
    font-size: 14px;
  }

  nav.header-nav .nav-item-trigger {
    pointer-events: none;
    cursor: default;
    text-align: left;
  }

  .header-nav-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: auto;
    padding: 18px 22px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-nav-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.22s ease, border-color 0.22s ease;
  }

  .header-nav-mail:hover,
  .header-nav-mail:focus-visible {
    background: rgba(167, 136, 115, 0.14);
    outline: none;
  }

  .header-nav-cta {
    flex-basis: 100%;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }


  header .header-buttons .white-button {
    display: none !important;
  }

  .header-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(14, 14, 14, 0.58);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.34s ease, visibility 0.34s ease;
  }

  body.nav-open .header-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0 0 0 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    z-index: 10002;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .header-burger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .header-burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
    transform-origin: center;
  }

  body.nav-open .header-burger .header-burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .header-burger {
    position: fixed;
    top: 10px;
    right: calc(((min(100vw, 600px) - 100vw) / 2) + 16px);
    margin: 0;
  }

  body.nav-open .header-burger .header-burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  body.nav-open .header-burger .header-burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  header .header-buttons {
    gap: 30px;
    margin-left: auto;
    margin-right: 24px;
    flex-shrink: 0;
    min-width: 0;
  }

  body.nav-open header .header-buttons {
    display: none;
  }

  header .header-buttons .header-icon-phone {
    flex-shrink: 0;
  }

  /* Герой: фон от верхнего края, внутренние отступы у контейнера */
  .hero {
    height: auto;
    min-height: 420px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 56px;
  }

  .hero .container {
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-top: 116px;
    padding-bottom: 12px;
  }

  .hero .hero-slide {
    object-position: top center;
  }

  .hero .hero-pagination {
    bottom: 28px;
    gap: 8px;
  }

  .hero .hero-pagination-button {
    width: 42px;
    height: 3px;
    border-radius: 3px;
  }

  .hero .hero-pagination-button:focus-visible {
    outline-width: 1px;
    outline-offset: 4px;
  }

  #about {
    scroll-margin-top: 56px;
  }

  .hero .hero-info {
    margin-bottom: 32px;
    max-width: 100%;
  }

  .hero .section-heading {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 108%;
  }

  .hero .section-text:last-of-type {
    margin-bottom: 39px;
  }

  .hero br {
    display: none;
  }

  /* О нас */
  .about .img-block img {
    display: none !important;
  }

  .about {
    padding: 48px 0 56px;
  }

  .about .abou-bg {
    display: none;
  }

  .about .container {
    flex-direction: column;
    gap: 24px;
  }

  .about .img-block {
    max-width: none;
    flex-shrink: 1;
    min-height: 0;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .about .img-block .block-heaidng {
    position: relative;
    top: auto;
    left: auto;
    font-size: 16px;
    gap: 8px;
  }

  .about .img-block .block-heaidng::before {
    width: 6px;
    height: 6px;
  }

  .about .section-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about .section-text {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .regular-text {
    font-size: 15px;
  }

  .section-heading {
    font-size: 26px;
  }

  /* Плюсы */
  .plusses {
    padding: 56px 0 40px;
  }

  .plusses .wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .plusses .wrapper .item {
    padding: 18px 16px;
  }

  .plusses .wrapper .item .item-heading {
    font-size: 32px;
  }

  .plusses .wrapper .item .item-text {
    font-size: 15px;
    margin-top: 12px;
  }

  .plusses .wrapper .item .plusses-icon {
    width: 36px;
    height: 36px;
    display: block;
    margin-bottom: 4px;
  }

  .plusses .empty-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  /* Продукция */
  .products {
    padding: 48px 0;
  }

  .products .block-heaidng {
    margin-bottom: 12px;
    font-size: 13px;
    gap: 8px;
  }

  .products .block-heaidng::before {
    width: 5px;
    height: 5px;
  }

  .products .section-heading {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 110%;
  }

  .products .top {
    flex-direction: column;
    gap: 10px;
  }

  .products .top .top-item {
    max-width: none !important;
    width: 100%;
    height: auto;
    min-height: 220px;
    overflow: hidden;
  }

  .products .top .top-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 22, 20, 0) 0%, rgba(23, 22, 20, 0.55) 100%);
    pointer-events: none;
  }

  .products .top .top-item:nth-child(2) .top-item-text {
    max-width: none;
  }

  .products .top .top-item .top-item-text {
    padding: 16px;
    font-size: 14px;
    line-height: 130%;
  }

  /* На мобиле прячем десктопные .mid и .btm — используется .products-mobile */
  .products .mid,
  .products .btm {
    display: none;
  }

  /* Mobile-only блок с карточками продукции */
  .products .products-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  .products .pm-card {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    background: #372821;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
  }

  .products .pm-card::before {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -29px;
    z-index: 0;
    width: 315px;
    height: 283px;
    background: url("../media/products/mobile/ellipse-6311.svg") center / contain no-repeat;
    pointer-events: none;
  }

  .products .pm-card--drink {
    height: 350px;
  }

  .products .pm-card--drink::before {
    left: 0;
    top: auto;
    bottom: -4px;
    width: 100%;
    height: 200px;
    background: url("../media/products/mobile/ellipse-631.svg") center / 100% 100% no-repeat !important;
  }

  .products .pm-card--drink-tall {
    height: 402px;
  }

  .products .pm-info {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .products .pm-card--drink .pm-info {
    top: 40px;
  }

  .products .pm-info h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    color: #fff;
    margin: 0;
  }

  .products .pm-info p {
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  .products .pm-card--drink .pm-info p {
    color: rgba(255, 255, 255, 0.8);
  }

  .products .pm-img {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .products .pm-img img {
    position: absolute;
    width: auto;
  }

  /* Позиционирование изображений по Figma (карточка 340×… px) */
  .products .pm-card--imperial .pm-img img {
    left: -147px;
    top: 86px;
    width: 526px;
    height: 351px;
  }

  .products .pm-card--classic .pm-img img {
    left: 2px;
    top: 96px;
    width: 169px;
    height: 253px;
  }

  .products .pm-card--tattoo .pm-img img {
    left: -2px;
    top: 95px;
    width: 169px;
    height: 253px;
  }

  .products .pm-card--center .pm-img img {
    left: -5px;
    top: 109px;
    width: 169px;
    height: 253px;
  }

  /* Напитки: бутылка по центру */
  .products .pm-card--drink .pm-img img {
    left: 50%;
    transform: translateX(-50%);
    top: 178px;
    width: 86px;
    height: 155px;
  }

  .products .pm-card--drink-tall .pm-img img {
    top: 208px;
    width: auto;
    height: 184px;
  }

  .products .pm-card--madman .pm-img img {
    left: 50%;
    transform: translateX(-50%);
    top: 159px;
    width: auto;
    height: 166px;
    opacity: 0.85;
  }

  .products .pm-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .products .pm-arrow svg {
    width: 15px;
    height: 11px;
  }

  .products .pm-arrow svg path {
    transition: stroke 0.2s ease;
  }

  .products .pm-card:hover .pm-arrow,
  .products .pm-card:focus-visible .pm-arrow {
    border-color: #fff;
    background: #fff;
  }

  .products .pm-card:hover .pm-arrow svg path,
  .products .pm-card:focus-visible .pm-arrow svg path {
    stroke: #171614;
  }

  .products .pm-elit {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: #a78873;
    color: #372821;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;
    padding: 2px 4px;
    margin: 0;
  }

  .products .pm-section-heading {
    font-family: "Cormorant", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 130%;
    text-transform: uppercase;
    color: #fff;
    margin: 30px 0 10px;
  }

  /* Производство */
  .employ {
    padding: 48px 0 56px;
  }

  .employ .top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
  }

  .employ .top svg.employ-svg {
    display: none;
  }

  .employ .top img {
    display: none !important;
  }

  .employ .top .section-heading {
    font-size: 26px;
  }

  .employ .btm .section-heading {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .employ .btm .section-heading br {
    display: none;
  }

  .employ .btm .wrapper {
    flex-direction: column;
    gap: 14px;
  }

  .employ .btm .wrapper .item {
    align-items: flex-start;
    padding: 16px 16px 24px 16px;
    min-height: 200px;
  }

  .employ .btm .wrapper .item .regular-text {
    margin-top: 16px;
    font-size: 15px;
  }

  /* Новости */
  .news {
    padding: 48px 0;
  }

  .news .block-heaidng {
    margin-bottom: 20px;
  }

  .news .wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news .wrapper .item .item-heading {
    font-size: 18px;
  }

  .news .wrapper .item .item-description,
  .news .wrapper .item .item-date,
  .news .wrapper .item .item-go {
    font-size: 14px;
  }

  .news .wrapper .item .item-date {
    top: 20px;
    right: 20px;
    padding: 2px 4px;
    font-size: 12px;
  }

  .news .empty-button,
.template.empty-button  {
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 24px;
  }

  .news-archive-hero {
    height: 300px;
  }

  .news-archive-hero .container {
    padding-top: 54px;
  }

  .news-archive-hero .section-heading {
    font-size: 34px;
  }

  .news-archive {
    padding: 54px 0 64px;
  }

  .news-archive-grid {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .news-archive-card-image {
    margin-bottom: 16px;
  }

  .news-archive-card-body {
    gap: 7px;
    margin-bottom: 16px;
  }

  .news-archive-card-date {
    font-size: 13px;
  }

  .news-archive-card-title {
    font-size: 18px;
  }

  .news-archive-card-description {
    min-height: 0;
    font-size: 15px;
  }

  .news-archive-card-link.empty-button {
    width: fit-content;
    margin-top: auto;
    padding: 10px 14px;
    font-size: 14px;
  }

  .news-archive-pagination {
    gap: 10px;
    margin-top: 42px;
  }

  .news-archive-page-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .news-archive-page-arrow {
    width: 34px;
    height: 40px;
  }

  /* Форма */
  .form .img-block img {
    display: none !important;
  }

  .form {
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #372821;
  }

  #contact-form {
    background: #372821;
    box-shadow: 0 0 0 100vmax #372821;
    clip-path: inset(0 -100vmax);
  }

  .form .img-block {
    max-width: none;
    width: 100%;
    flex-shrink: 1;
  }

  .form .img-block .block-heaidng {
    position: relative;
    top: auto;
    left: auto;
    padding: 24px 16px 8px;
    font-size: 16px;
    margin-bottom: 0;
  }

  .form .form-block {
    width: 100%;
    padding: 20px 16px 32px;
    box-sizing: border-box;
  }

  .form .form-block .radios {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .form .form-block .radios label {
    width: 100%;
  }

  .form .form-block .radios label .radio-text {
    font-size: 15px;
  }

  .form .form-block .inputs {
    margin-top: 16px;
    margin-bottom: 20px;
    gap: 8px;
  }

  .form .form-block .inputs input,
  .form .form-block .inputs select,
  .form .form-block .inputs textarea {
    font-size: 15px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eaeaea;
    color: #141618;
    background: #fff;
  }

  .form .form-block .inputs textarea {
    height: 100px;
    min-height: 100px;
  }

  .form .form-block .inputs .field-group--select select {
    padding-right: 46px;
  }

  .form .form-block .inputs .field-group--select::after {
    right: 16px;
    border-left-width: 4px;
    border-right-width: 4px;
    border-top-width: 6px;
  }

  .autocomplete-list {
    top: calc(100% + 4px);
    max-height: 190px;
    box-shadow: 0 10px 24px rgba(20, 22, 24, 0.18);
  }

  .autocomplete-option {
    padding: 12px 16px;
    font-size: 15px;
  }

  .form .form-block .policy-line {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .form .form-block .policy-line .policy-text {
    font-size: 13px;
    line-height: 128%;
  }

  .form .form-block .policy-line .policy-visual {
    width: 15px;
    height: 15px;
    margin-top: 2px;
  }

  .form .form-block .policy-line .policy-visual::after {
    width: 3px;
    height: 7px;
    border-width: 0 1px 1px 0;
    top: 40%;
  }

  .form .white-button {
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    justify-content: center;
    box-sizing: border-box;
    font-size: 15px;
  }

  .field-error {
    margin: 3px 0 7px;
    font-size: 12px;
  }

  .form-status {
    min-height: 18px;
    margin-top: 12px;
    font-size: 13px;
  }

  .contact-popup {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }

  .contact-popup-dialog {
    width: 100%;
    max-height: none;
    height: 100%;
    height: 100dvh;
    padding: 24px 16px 32px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  .contact-popup-title {
    max-width: calc(100% - 48px);
    margin-bottom: 22px;
    font-size: 28px;
  }

  .contact-popup-close {
    top: 24px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .contact-popup-close span {
    width: 28px;
    height: 1px;
  }

  .contact-popup .form {
    max-width: none;
    margin: 0;
    background: transparent;
  }

  .contact-popup .form .form-block {
    padding: 0;
  }

  .white-button {
    font-size: 15px;
    padding: 14px 20px;
  }

  .empty-button {
    font-size: 15px;
    padding: 14px 20px;
    gap: 8px;
  }

  /* Карточка товара */
  .card .container {
    flex-direction: column;
    gap: 24px;
    padding-top: 108px;
    padding-bottom: 48px;
  }

  .card .card-imgs {
    max-width: 100%;
    width: 100%;
  }

  .card .card-imgs .main-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
  }

  .card .card-imgs .wrapper {
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
  }

  .card .card-imgs .wrapper .card-select-img {
    max-width: none;
    width: 88px;
    min-width: 88px;
    height: 88px;
    object-fit: contain;
  }

  .product-lightbox {
    padding: 48px 14px 18px;
    grid-template-rows: 1fr auto;
  }

  .product-lightbox-stage {
    height: calc(100vh - 170px);
  }

  .product-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }

  .product-lightbox-nav {
    width: 38px;
    height: 58px;
    font-size: 42px;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .product-lightbox-prev {
    left: 8px;
  }

  .product-lightbox-next {
    right: 8px;
  }

  .product-lightbox-thumbs {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 10px;
  }

  .product-lightbox-thumb {
    width: 74px;
    height: 64px;
    padding: 5px;
  }

  .card .card-info {
    display: contents;
  }

  .card .card-info .card-info-top {
    order: 1;
    width: 100%;
    margin-bottom: 24px;
  }

  .card .card-imgs {
    order: 2;
  }

  .card .card-info .card-type {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .card .card-info .card-heading {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 108%;
  }

  .card .card-info .card-description {
    font-size: 15px;
  }

  .card .card-info .card-description br {
    display: none;
  }

  .card .card-info .card-tabs {
    order: 3;
    width: 100%;
    margin-bottom: 24px;
  }

  .card .card-info .card-tabs .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .card .card-info .card-tabs .wrapper .item {
    text-align: center;
    font-size: 13px;
    padding: 10px 8px;
  }

  .card .card-info .chars .chars-heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card .card-info .chars {
    order: 4;
    width: 100%;
  }

  .card .card-info .chars .chars-list {
    width: 100%;
    margin-bottom: 16px;
  }

  .card .card-info .chars .chars-item {
    width: 100%;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 1fr);
    gap: 8px;
    padding: 12px 6px;
  }

  .card .card-info .chars .chars-item .regular-text {
    font-size: 14px;
  }

  .card .card-info .chars .chars-description {
    font-size: 13px;
  }

  .card .card-info .chars .chars-description br {
    display: none;
  }

  .card .card-info .white-button {
    order: 5;
    margin-top: 24px;
    width: 100%;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
  }

  .p18 {
    padding: 20px 0;
  }

  .p18 p {
    font-size: 13px;
    line-height: 130%;
  }

  /* Подвал */
  footer {
    padding: 48px 0 40px;
  }

  footer .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  footer .footer-logo {
    width: 140px;
  }

  footer .footer-menu .footer-menu-heading {
    font-size: 13px;
    margin-bottom: 12px;
  }

  footer .footer-menu .footer-menu-list {
    gap: 8px;
  }

  footer .footer-menu .footer-menu-item {
    font-size: 15px;
  }

  footer .footer-contants {
    max-width: none;
    gap: 12px;
  }

  footer .footer-contants .footer-phone {
    font-size: 14px;
    line-height: 140%;
  }

  footer .footer-disclaimer {
    margin-top: 34px;
    padding-top: 22px;
  }

  footer .footer-disclaimer p {
    font-size: 12px;
    line-height: 150%;
  }

  footer .footer-disclaimer p + p {
    margin-top: 10px;
  }

  footer .btm {
    margin-top: 36px;
    padding-top: 24px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  footer .btm a {
    font-size: 13px;
    line-height: 130%;
  }

  /* Наверх */
  .go-btm-top {
    width: 44px;
    height: 44px;
    bottom: 24px;
    right: 16px;
  }

  .go-btm-top svg {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .cookie-banner-body {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner-text,
  .cookie-option,
  .cookie-option span,
  .cookie-button {
    font-size: 13px;
  }

  .cookie-banner-text {
    max-width: none;
  }

  .cookie-banner-choices {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-button {
    width: 100%;
    min-height: 42px;
  }

  .term-popup {
    align-items: flex-end;
    padding: 12px;
  }

  .term-popup-dialog {
    width: 100%;
    padding: 50px 24px 24px;
  }

  .term-popup-close {
    top: 18px;
    right: 18px;
    width: 22px;
    height: 22px;
  }

  .term-popup-close span {
    width: 22px;
    height: 1px;
  }

  .term-popup-content {
    gap: 16px;
    max-width: none;
  }

  .term-popup-content p {
    font-size: 16px;
  }

  /* Contacts page */
  .contacts-hero {
    min-height: 300px;
  }

  .contacts-hero .section-heading {
    max-width: 520px;
    margin-top: 46px;
    font-size: 34px;
  }

  .contacts-details {
    padding: 58px 0 46px;
  }

  .contacts-details .container {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .contacts-card .section-heading {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .contacts-list {
    gap: 14px;
  }

  .contact-item {
    gap: 10px;
    font-size: 15px;
    line-height: 140%;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
  }

  .legal-info {
    padding-top: 0;
  }

  .legal-info p {
    font-size: 15px;
    line-height: 145%;
  }

  .contacts-map {
    padding-bottom: 48px;
  }

  .contacts-map-frame {
    height: 360px;
  }

  .contacts-map-link {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .contacts-map-static-marker {
    width: 26px;
    height: 26px;
    margin: -26px 0 0 -13px;
  }

  .contacts-map-static-marker::before {
    inset: 7px;
  }

  .contacts-map-marker {
    width: 30px;
    height: 30px;
    margin: -30px 0 0 -15px;
  }

  .contacts-map-marker::before {
    inset: 8px;
  }

  .contacts-page #contact-form {
    margin-top: 0;
  }

  .contacts-page #contact-form .img-block {
    width: 100%;
    max-width: none;
  }

  /* Production page */
  .production-hero {
    height: 320px;
    min-height: 320px;
  }

  .production-hero .container {
    padding-top: 54px;
  }

  .production-hero .section-heading {
    max-width: 520px;
    font-size: 34px;
    line-height: 112%;
  }

  .production-intro {
    padding: 58px 0 54px;
  }

  .production-intro .container,
  .production-raw .container,
  .production-tech-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .production-intro-content {
    padding-top: 0;
  }

  .production-intro .section-heading,
  .production-raw .section-heading,
  .production-technology .section-heading {
    font-size: 28px;
    line-height: 118%;
  }

  .production-intro .section-heading {
    max-width: none;
    margin-bottom: 22px;
  }

  .production-copy,
  .production-tech-content {
    gap: 14px;
  }

  .production-copy p,
  .production-section-text,
  .production-raw-content p,
  .production-list li,
  .production-tech-content p,
  .production-principle p {
    font-size: 15px;
    line-height: 145%;
  }

  .production-desktop-break {
    display: none;
  }

  .production-intro-image,
  .production-raw-image,
  .production-tech-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .production-intro-image {
    height: 260px;
  }

  .production-raw-image {
    height: 220px;
    order: -1;
  }

  .production-tech-image {
    height: 300px;
  }

  .production-intro-image img,
  .production-raw-image img,
  .production-tech-image img {
    height: 100%;
  }

  .production-intro-image img {
    object-position: 24% center;
  }

  .production-kicker {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .production-kicker::before {
    width: 6px;
    height: 6px;
  }

  .production-equipment {
    padding: 58px 0;
  }

  .production-lead {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .production-section-text {
    margin-bottom: 22px;
    font-size: 16px;
  }

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

  .production-equipment-card {
    min-height: 0;
    padding: 22px 72px 34px 22px;
  }

  .production-equipment-card h3,
  .production-tech-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .production-equipment-card p {
    font-size: 15px;
    line-height: 145%;
  }

  .production-note {
    margin-top: 20px;
    font-size: 15px;
    line-height: 145%;
  }

  p.production-note,
  p.production-accent {
    color: #a78873;
  }

  .production-raw {
    padding: 58px 0;
  }

  .production-raw .section-heading {
    margin-bottom: 16px;
  }

  .production-list {
    gap: 8px;
    margin-top: 12px;
  }

  .production-list li {
    padding-left: 26px;
  }

  .production-list li::before {
    top: 11px;
    width: 18px;
  }

  .production-country {
    padding: 66px 0;
  }

  .production-country::before,
  .production-country::after {
    top: -35px;
    width: 220px;
    height: 316px;
    opacity: 1;
  }

  .production-country::before {
    left: -110px;
  }

  .production-country::after {
    right: -110px;
  }

  .production-country p {
    font-size: 21px;
    line-height: 135%;
  }

  .production-technology {
    padding: 58px 0;
  }

  .production-video {
    margin-bottom: 54px;
    aspect-ratio: 16 / 9;
  }

  .production-tech-grid {
    margin-bottom: 54px;
  }

  .production-tech-content {
    padding-top: 0;
  }

  .production-principle {
    max-width: none;
  }

  .production-principle .section-heading {
    margin-bottom: 16px;
  }

  .production-page #contact-form {
    margin-top: 0;
  }

  .production-page #contact-form .img-block {
    width: 100%;
    max-width: none;
  }

  .legal-page {
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .legal-page-head {
    margin-bottom: 32px;
  }

  .legal-page-kicker {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .legal-page-head .section-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .legal-document {
    padding: 24px;
  }

  .legal-document section + section {
    margin-top: 28px;
  }

  .legal-document h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 14px;
  }

  .legal-document ul {
    padding-left: 18px;
  }
  .news-page {
    padding-top: 108px;
    padding-bottom: 56px;
  }

  .news-breadcrumbs {
    gap: 8px;
    margin-bottom: 24px;
    overflow: visible;
    padding-bottom: 0;
    font-size: 13px;
    white-space: normal;
  }

  .breadcrumbs {
    gap: 8px;
    overflow: visible;
    white-space: normal;
  }

  .news-breadcrumbs a,
  .news-breadcrumbs .news-breadcrumbs-current,
  .breadcrumbs a,
  .breadcrumbs .breadcrumb-current {
    max-width: 100%;
    white-space: nowrap;
  }

  .news-page-title {
    max-width: none;
    margin-bottom: 28px;
    font-size: 31px;
  }

  .news-page-layout {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  .news-page-hero-img {
    height: auto;
    margin-bottom: 28px;
  }

  .news-page-content {
    gap: 14px;
  }

  .news-page-content p {
    font-size: 15px;
    line-height: 150%;
  }

  .news-page-figure {
    margin: 14px 0;
  }

  .news-page-content .news-page-lead {
    font-size: 22px;
  }

  .news-page-date {
    margin-top: 24px;
    font-size: 13px;
  }

  .news-page-sidebar {
    width: 100%;
    padding-top: 0;
  }

  .news-page-sidebar h2 {
    max-width: none;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .news-related-list {
    gap: 16px;
  }

  .news-related-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .news-related-item > img {
    width: 112px;
    height: 86px;
  }

  .news-related-body {
    gap: 10px;
    padding-right: 0;
  }

  .news-related-title {
    font-size: 16px;
  }

  .news-related-link {
    font-size: 14px;
  }

  .news-related-link img {
    width: 28px;
    height: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news-archive .container {
    max-width: 920px;
  }

  .news-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 42px;
  }
}

@media screen and (max-width: 1199px) {
  .partners-hero {
    height: 320px;
    min-height: 320px;
  }

  .partners-hero-bg {
    object-position: center bottom;
  }

  .partners-hero .container {
    padding-top: 54px;
  }

  .partners-hero .section-heading {
    max-width: 520px;
    font-size: 34px;
    line-height: 112%;
  }

  .partners-intro {
    padding: 58px 0 54px;
  }

  .partners-intro-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .partners-intro-photo {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .partners-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .partners-intro-panel {
    position: relative;
    overflow: hidden;
    padding: 0 0 30px;
    background: #171614;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .partners-intro-mark {
    display: none;
  }

  .partners-intro-head {
    gap: 18px;
    max-width: none;
    padding-bottom: 30px;
  }

  .partners-intro-head .section-heading {
    margin-top: 10rem;
    font-size: 28px;
    line-height: 118%;
  }

  .partners-intro-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 18px;
    line-height: 130%;
  }

  .partners-intro-copy p {
    margin: 0;
  }

  .partners-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .partners-benefit,
  .partners-benefit--wide,
  .partners-benefits-photo {
    grid-column: auto;
  }

  .partners-benefit {
    min-height: 156px;
    padding: 22px;
  }

  .partners-benefit p {
    max-width: calc(100% - 40px);
    font-size: 16px;
  }

  .partners-benefit span {
    right: 16px;
    bottom: 16px;
    font-size: 44px;
  }

  .partners-benefits-photo {
    min-height: 190px;
  }

  .partners-logos {
    padding: 58px 0 68px;
  }

  .partners-logos .section-heading {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .partners-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  .partners-stat {
    padding: 18px 16px;
  }

  .partners-stat-heading {
    font-size: 32px;
  }

  .partners-stat-text {
    margin-top: 12px;
    font-size: 15px;
  }

  .partners-marquee {
    padding-left: 16px;
  }

  .partners-marquee-track {
    gap: 34px;
    animation-duration: 38s;
  }

  .partners-marquee-track img {
    width: 276px;
    height: 52px;
  }

  .partners-logos-note {
    margin-top: 26px;
    font-size: 14px;
  }

  .partners-cta {
    padding: 66px 0;
  }

  .partners-cta-decor {
    width: 220px;
    height: 316px;
    opacity: 0.6;
  }

  .partners-cta-decor--left {
    left: -120px;
  }

  .partners-cta-decor--right {
    right: -120px;
  }

  .partners-cta-content .section-heading {
    font-size: 28px;
  }

  .partners-cta-content p {
    max-width: 460px;
    font-size: 16px;
  }

  .partners-cta-content .white-button {
    width: 100%;
    justify-content: center;
    margin-top: 26px;
    padding: 14px 24px;
  }
}

@media (min-width: 1200px) {
  .header-burger,
  .header-overlay {
    display: none !important;
  }
}

@media screen and (max-width: 1199px) {
  .about-hero {
    height: 320px;
    min-height: 320px;
  }

  .about-hero .container {
    padding-top: 54px;
  }

  .about-hero .section-heading {
    max-width: 520px;
    font-size: 34px;
    line-height: 112%;
  }

  .about-company {
    padding: 58px 0 54px;
  }

  .about-company .container,
  .about-mission .container,
  .about-quote .container,
  .about-partners .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-company-image,
  .about-mission-image,
  .about-partners-image {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .about-company-image img,
  .about-mission-image img,
  .about-partners-image img {
    height: auto;
  }

  .about-company-content,
  .about-mission-content {
    max-width: none;
  }

  .about-company-content .section-heading {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 118%;
  }

  .about-company-decor {
    display: none;
  }

  .about-copy {
    gap: 14px;
  }

  .about-copy p,
  .about-mission-text,
  .about-advantage p,
  .about-advantage li,
  .about-fact-text {
    font-size: 15px;
  }

  .about-mission {
    padding: 0 0 58px;
  }

  .about-mission-content {
    order: 2;
    padding-top: 0;
  }

  .about-mission-image {
    order: 1;
  }

  .about-kicker {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .about-kicker::before {
    width: 6px;
    height: 6px;
  }

  .about-lead {
    margin-bottom: 24px;
    font-size: 21px;
  }

  .about-mission-text {
    padding-left: 0;
  }

  .about-mission-text::before {
    display: none;
  }

  .about-quote {
    padding: 54px 0;
  }

  .about-quote::before {
    left: -130px;
    width: 260px;
    height: 374px;
  }

  .about-quote::after {
    top: 18px;
    right: 16px;
    width: 56px;
    height: 40px;
  }

  .about-quote-photo {
    width: 132px;
    height: 132px;
  }

  .about-quote blockquote p {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .about-quote cite,
  .about-quote cite span {
    font-size: 14px;
  }

  .about-brands {
    padding: 58px 0;
  }

  .about-brands .block-heaidng {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .about-brands .section-heading {
    font-size: 28px;
    line-height: 118%;
  }

  .about-catalog-link {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 24px;
    box-sizing: border-box;
  }

  .about-advantages {
    padding: 58px 0;
  }

  .about-advantages .section-heading {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .about-advantages-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .about-advantage,
  .about-advantage--large {
    grid-row: auto;
    min-height: 0;
    padding: 22px;
  }

  .about-advantage h3 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .about-advantage p {
    margin-bottom: 12px;
  }

  .about-advantage li {
    padding-left: 26px;
    font-size: 14px;
  }

  .about-advantage li::before {
    top: 9px;
    width: 16px;
  }

  .about-advantage-number {
    right: 16px;
    bottom: 12px;
    font-size: 44px;
  }

  .about-facts {
    padding: 0 0 58px;
  }

  .about-facts-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-fact {
    min-height: 0;
    padding: 18px 16px;
  }

  .about-fact-heading {
    font-size: 32px;
  }

  .about-fact-icon {
    width: 36px;
    height: 36px;
  }

  .about-fact-text {
    margin-top: 12px;
  }

  .about-partners {
    padding: 58px 0;
  }

  .about-partners-content .section-heading {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .about-partners-lead {
    font-size: 22px;
  }

  .about-partners-content .empty-button {
    width: 100%;
    justify-content: center;
    margin-top: 26px;
    padding: 14px 24px;
    box-sizing: border-box;
  }

  .buy-hero {
    height: 320px;
    min-height: 320px;
  }

  .buy-hero .container {
    padding-top: 54px;
  }

  .buy-hero .section-heading {
    max-width: 520px;
    font-size: 34px;
    line-height: 112%;
  }

  .buy-map-section {
    padding: 58px 0 42px;
  }

  .buy-map-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
  }

  .buy-map-head .section-heading {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .buy-map-head .regular-text {
    font-size: 15px;
  }

  .buy-map-count {
    font-size: 15px;
  }

  .buy-map-controls {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .buy-view-toggle {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .buy-view-toggle-btn {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 110%;
  }

  .buy-view-toggle-btn.is-active {
    border-color: #a78873;
    background: #a78873;
    color: #171614;
  }

  .buy-points-toggle {
    display: none;
  }

  .buy-map-layout {
    display: block;
    overflow: visible;
  }

  .buy-points-panel,
  .buy-map-section.is-points-panel-collapsed .buy-points-panel {
    position: static;
    width: auto;
    height: auto;
    display: block;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .buy-map-section.is-all-cities .buy-points-panel,
  .buy-map-section.is-all-cities.is-points-panel-collapsed .buy-points-panel {
    display: block;
  }

  .buy-field input {
    height: 44px;
    padding: 0 46px 0 16px;
    font-size: 15px;
    border-width: 1px;
  }

  .buy-field--search::after {
    right: 18px;
    width: 13px;
    height: 13px;
    border-width: 1px;
  }

  .buy-field--search::before {
    right: 16px;
    width: 7px;
    height: 1px;
    transform: translateY(5px) rotate(45deg);
  }

  .buy-map-frame {
    height: 360px;
  }

  .buy-map-section[data-buy-view="map"] .buy-points {
    display: none;
  }

  .buy-map-section[data-buy-view="list"] .buy-map-frame {
    display: none;
  }

  .buy-map-section.is-points-panel-hidden[data-buy-view="list"] .buy-points {
    display: grid;
  }

  .buy-map-section.is-points-panel-collapsed[data-buy-view="list"] .buy-points {
    display: grid;
  }

  .buy-map-section.is-map-unavailable .buy-map-frame {
    display: none;
  }

  .buy-map-section.is-map-unavailable .buy-points,
  .buy-map-section.is-map-unavailable.is-points-panel-hidden .buy-points {
    display: grid;
    max-height: none;
    padding-right: 0;
  }

  .buy-map-empty {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 13px 14px;
    font-size: 13px;
  }

  .buy-map-loader {
    top: 24px;
    gap: 8px;
    max-width: calc(100% - 28px);
    padding: 10px 12px;
    font-size: 12px;
  }

  .buy-map-loader::before {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .buy-map-marker--featured {
    min-height: 28px;
    padding: 5px 9px 5px 7px;
  }

  .buy-map-marker-label {
    font-size: 11px;
  }

  .buy-map-balloon {
    max-width: 240px;
    padding: 12px 13px;
  }

  .buy-map-balloon strong {
    font-size: 13px;
  }

  .buy-map-balloon span {
    font-size: 12px;
  }

  .buy-map-cluster {
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border-width: 2px;
    font-size: 13px;
  }

  .buy-points {
    position: static;
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: visible;
  }

  .buy-point-card {
    padding: 12px 14px;
    gap: 5px;
  }

  .buy-point-selected {
    min-height: 0;
    padding: 18px 52px 22px 16px;
  }

  .buy-point-selected h3 {
    font-size: 16px;
  }

  .buy-point-selected p {
    font-size: 14px;
  }

  .buy-point-selected-close {
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .buy-point-tag {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .buy-point-card h3 {
    font-size: 15px;
  }

  .buy-point-card p {
    font-size: 13px;
  }

  .buy-point-count {
    font-size: 12px;
  }

  .buy-points-empty {
    padding: 16px;
    font-size: 14px;
  }

  .buy-points-more {
    gap: 10px;
    padding-top: 6px;
  }

  .buy-points-more p {
    font-size: 12px;
  }

  .buy-points-more-btn {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .buy-partners {
    padding-top: 48px;
  }

  .buy-partners .partners-logos-note {
    margin: 0 0 28px;
    font-size: 14px;
  }
}
