/* =========================
   БАЗОВЫЕ НАСТРОЙКИ
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #173b4c;
    background-color: #ffffff;
}

main {
    flex: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1420px, 92%);
    margin: 0 auto;
}


/* =========================
   ШАПКА САЙТА
========================= */

.header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(7, 93, 123, 0.12);
    backdrop-filter: blur(12px);
}

.header__container {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex-shrink: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    color: #075d7b;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 46px;
    padding: 0 16px;
    color: #173b4c;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.16);
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.mobile-menu-button__line {
    display: none;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-menu-button__text {
    display: inline-block;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    white-space: nowrap;
}

.navigation__link,
.navigation__button {
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #173b4c;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navigation__link:hover,
.navigation__button:hover {
    color: #0784a8;
}

.navigation__arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 15px;
}


/* =========================
   ВЫПАДАЮЩИЕ МЕНЮ
========================= */

.dropdown {
    position: relative;
    padding: 30px 0;
}

.dropdown__menu {
    position: absolute;
    top: calc(100% - 12px);
    left: 0;
    min-width: 245px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 93, 123, 0.1);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 54, 79, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu--contacts {
    min-width: 230px;
}

.dropdown__link {
    display: block;
    padding: 12px 14px;
    color: #173b4c;
    font-size: 15px;
    border-radius: 9px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.dropdown__link:hover {
    color: #06799a;
    background-color: #eaf8fb;
}


/* =========================
   ТЕЛЕФОН И КНОПКА
========================= */

.header__contacts {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.header__phone {
    color: #173b4c;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.header__phone:hover {
    color: #0784a8;
}

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    color: #ffffff;
    background: #087da1;
    border: 2px solid #087da1;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.call-button:hover {
    background: #066b8a;
    border-color: #066b8a;
    transform: translateY(-2px);
}


/* =========================
   ПЕРВЫЙ ЭКРАН
========================= */

.hero {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: flex-start;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.68) 45%,
            rgba(255, 255, 255, 0.15) 100%
        ),
        url("../images/bgwater.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__container {
    padding-top: 145px;
    padding-bottom: 100px;
    text-align: center;
}

.hero__title {
    max-width: 1100px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 88px);
    line-height: 1.08;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #063d59;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.82);
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 34px;
    padding: 0 30px;
    color: #ffffff;
    background: #087da1;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero__button:hover {
    background: #066b8a;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 125, 161, 0.23);
}


/* =========================
   ОБЩИЕ ЗАГОЛОВКИ
========================= */

.section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    color: #063d59;
    text-align: center;
}

.section-description {
    max-width: 760px;
    margin: 20px auto 0;
    color: #55717e;
    font-size: 18px;
    line-height: 1.65;
    text-align: center;
}


/* =========================
   КАТАЛОГ
========================= */

.catalog {
    padding: 100px 0;
    background: #f7fbfc;
}

.catalog__grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    min-height: 210px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.11);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 70, 95, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 70, 95, 0.12);
}

.category-card__title {
    color: #075d7b;
    font-size: 25px;
}

.category-card__text {
    margin-top: 18px;
    color: #607986;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================
   ПОДВАЛ
========================= */

.footer {
    padding: 64px 0 24px;
    background: #073b55;
    color: #ffffff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.35fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 42px;
}

.footer__brand,
.footer__column {
    min-width: 0;
}

.footer__logo {
    display: inline-block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
}

.footer__description {
    max-width: 290px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

.footer__title {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer__company {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
}

.footer__address {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-style: normal;
    line-height: 1.7;
}

.footer__link {
    display: block;
    width: fit-content;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    line-height: 1.5;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer__link:hover {
    color: #8de4f3;
    transform: translateX(3px);
}

.footer__text {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer__copyright,
.footer__legal-name {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.5;
}


/* =========================
   АДАПТАЦИЯ ПОД ЭКРАНЫ
========================= */

@media (max-width: 1180px) {
    .header__container {
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    .navigation {
        gap: 22px;
    }

    .dropdown {
        padding: 12px 0;
    }

    .catalog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__container {
        padding-top: 110px;
    }
}

@media (max-width: 820px) {
    .header {
        background: #ffffff;
        backdrop-filter: none;
    }

    .header__container {
        position: relative;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .logo {
        width: auto;
        text-align: left;
        font-size: 30px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .navigation {
        position: absolute;
        top: calc(100% + 1px);
        left: 4%;
        right: 4%;
        z-index: 1001;
        width: auto;
        max-height: 0;
        display: block;
        overflow: hidden;
        padding: 0;
        background: #ffffff;
        border: 1px solid transparent;
        border-radius: 0 0 16px 16px;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            max-height 0.3s ease,
            padding 0.3s ease,
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
        white-space: normal;
    }

    .navigation--open {
        max-height: 620px;
        padding: 12px;
        border-color: rgba(7, 93, 123, 0.12);
        box-shadow: 0 18px 40px rgba(0, 54, 79, 0.16);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigation__link,
    .navigation__button {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 16px;
        text-align: left;
    }

    .navigation__link:hover,
    .navigation__button:hover {
        background: #eaf8fb;
    }

    .dropdown {
        width: 100%;
        padding: 0;
    }

    .dropdown__menu {
        position: static;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 10px;
        background: #f7fbfc;
        border: none;
        border-radius: 10px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height 0.25s ease,
            padding 0.25s ease,
            margin 0.25s ease;
    }

    .dropdown:hover .dropdown__menu {
        transform: none;
    }

    .dropdown--open .dropdown__menu {
        max-height: 420px;
        margin-bottom: 8px;
        padding: 8px 10px;
    }

    .dropdown--open .navigation__arrow {
        transform: rotate(180deg);
    }

    .navigation__arrow {
        transition: transform 0.2s ease;
    }

    .dropdown__link {
        padding: 11px 12px;
    }

    .header__contacts {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .header__phone,
    .call-button {
        width: 100%;
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero {
        min-height: 720px;
        background-position: 62% center;
    }

    .hero__container {
        padding-top: 80px;
    }

    .hero__title {
        letter-spacing: 2px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(92%, 520px);
    }

    .header__container {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .logo {
        font-size: 28px;
    }

    .mobile-menu-button {
        min-width: 92px;
        padding: 0 14px;
    }

    .header__contacts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .call-button {
        width: 100%;
    }

    .hero__container {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .catalog {
        padding: 72px 0;
    }

    .catalog__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: left;
    }

    .footer__description {
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


/* =========================
   СТРАНИЦА КАТЕГОРИИ
========================= */

.category-page {
    min-height: 65vh;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: #537381;
    font-size: 15px;
}

.breadcrumbs__link {
    transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
    color: #087da1;
}

.breadcrumbs__separator {
    color: #8ba2ac;
}

.breadcrumbs__current {
    color: #173b4c;
}

.category-page__header {
    margin-bottom: 42px;
}

.category-page__actions {
    margin-top: 28px;
    text-align: center;
}


/* =========================
   СЕТКА И КАРТОЧКИ ТОВАРОВ
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 70, 95, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0, 70, 95, 0.14);
}

.product-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    max-width: calc(100% - 28px);
}

.product-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    color: #ffffff;
    background: #087da1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.product-card__image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow: hidden;
    background: #eef9fc;
}

.product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.25s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.025);
}

.product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.product-card__title {
    color: #075d7b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.25;
}

.product-card__description {
    margin-top: 14px;
    color: #607986;
    font-size: 15px;
    line-height: 1.6;
}

.product-card__minimum {
    margin-top: 16px;
    color: #4d6d7a;
    font-size: 14px;
    line-height: 1.5;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-card__price {
    color: #063d59;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.product-card__footer .call-button {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
}

.catalog-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 45px 28px;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.11);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 70, 95, 0.07);
}

.catalog-empty__title {
    color: #075d7b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

@media (max-width: 1180px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .catalog__grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .category-page__header {
        margin-bottom: 28px;
    }

    .product-card {
        border-radius: 13px;
    }

    .product-card__image-wrap {
        padding: 9px;
    }

    .product-card__badges {
        top: 7px;
        left: 7px;
        gap: 4px;
        max-width: calc(100% - 14px);
    }

    .product-card__badge {
        min-height: 22px;
        padding: 3px 7px;
        font-size: 10px;
    }

    .product-card__content {
        padding: 11px;
    }

    .product-card__title {
        font-family: Arial, sans-serif;
        font-size: 15px;
        line-height: 1.3;
    }

    .product-card__description {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.45;
    }

    .product-card__minimum {
        margin-top: 9px;
        font-size: 11px;
        line-height: 1.4;
    }

    .product-card__footer {
        padding-top: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
    }

    .product-card__price {
        font-size: 17px;
        text-align: center;
    }

    .product-card__footer .call-button {
        width: 100%;
        min-height: 36px;
        padding: 0 8px;
        border-radius: 9px;
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .container {
        width: 96%;
    }

    .products-grid {
        gap: 8px;
    }

    .product-card__content {
        padding: 9px;
    }

    .product-card__title {
        font-size: 14px;
    }

    .product-card__description {
        font-size: 11px;
    }

    .product-card__price {
        font-size: 16px;
    }
}

/* =========================
   СТРАНИЦА ТОВАРА
========================= */

.product-page {
    min-height: 65vh;
    padding: 76px 0 100px;
    background: #f7fbfc;
}

.product-page__grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    align-items: start;
    gap: 56px;
    max-width: 1120px;
    margin: 0 auto;
}

.product-page__media {
    width: 100%;
}

.product-page__image-wrap {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.12);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 70, 95, 0.1);
}

.product-page__image-wrap--empty {
    min-height: 360px;
    background: #eef9fc;
}

.product-page__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
}

.product-page__no-image {
    max-width: 220px;
    color: #78909b;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.product-page__content {
    min-width: 0;
    padding-top: 4px;
}

.product-page__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.product-page__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: #ffffff;
    background: #087da1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.product-page__title {
    color: #063d59;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.12;
}

.product-page__price {
    margin-top: 22px;
    color: #087da1;
    font-size: clamp(30px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
}

.product-page__minimum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 520px;
    margin-top: 22px;
    padding: 17px 20px;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.12);
    border-radius: 14px;
}

.product-page__label {
    color: #607986;
    font-size: 15px;
}

.product-page__value {
    color: #173b4c;
    font-size: 17px;
    text-align: right;
}

.product-page__description {
    max-width: 720px;
    margin-top: 32px;
}

.product-page__subtitle {
    margin-bottom: 13px;
    color: #075d7b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.25;
}

.product-page__text {
    color: #55717e;
    font-size: 17px;
    line-height: 1.72;
}

.product-page__contact {
    max-width: 620px;
    margin-top: 32px;
    padding: 23px;
    background: #eaf8fb;
    border: 1px solid rgba(8, 125, 161, 0.16);
    border-radius: 18px;
}

.product-page__contact-text {
    color: #4f6f7d;
    font-size: 16px;
    line-height: 1.6;
}

.product-page__call {
    min-width: 190px;
    margin-top: 18px;
}

.product-page__phone {
    display: inline-block;
    margin-left: 18px;
    color: #075d7b;
    font-size: 18px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.product-page__phone:hover {
    color: #087da1;
}

@media (max-width: 960px) {
    .product-page__grid {
        grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
        gap: 36px;
    }

    .product-page__image-wrap {
        max-width: 360px;
    }

    .product-page__image {
        max-width: 300px;
        max-height: 300px;
    }
}

@media (max-width: 760px) {
    .product-page {
        padding: 52px 0 76px;
    }

    .product-page__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-page__media {
        display: flex;
        justify-content: center;
    }

    .product-page__image-wrap {
        max-width: 330px;
    }

    .product-page__image {
        max-width: 275px;
        max-height: 275px;
    }
}

@media (max-width: 620px) {
    .product-page {
        padding: 42px 0 64px;
    }

    .product-page__image-wrap {
        max-width: 290px;
        padding: 18px;
        border-radius: 16px;
    }

    .product-page__image {
        max-width: 245px;
        max-height: 245px;
    }

    .product-page__title {
        font-size: 32px;
    }

    .product-page__price {
        margin-top: 17px;
        font-size: 29px;
    }

    .product-page__minimum {
        display: block;
        margin-top: 18px;
        padding: 15px 16px;
    }

    .product-page__value {
        display: block;
        margin-top: 5px;
        text-align: left;
    }

    .product-page__description {
        margin-top: 25px;
    }

    .product-page__subtitle {
        font-size: 23px;
    }

    .product-page__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .product-page__contact {
        margin-top: 25px;
        padding: 18px;
    }

    .product-page__call {
        width: 100%;
        min-width: 0;
    }

    .product-page__phone {
        display: block;
        margin: 14px 0 0;
        text-align: center;
    }
}

/* =========================
   КОНТАКТЫ НА СТРАНИЦЕ ТОВАРА
========================= */

.product-page__contact-desktop {
    display: block;
}

.product-page__contact-mobile {
    display: none;
}

.product-page__contact-title {
    display: block;
    color: #075d7b;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.product-page__contact-phone {
    display: block;
    margin-top: 12px;
    color: #063d59;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

@media (max-width: 760px) {
    .product-page__contact-desktop {
        display: none;
    }

    .product-page__contact-mobile {
        display: block;
    }

    .product-page__contact-mobile .product-page__contact-title,
    .product-page__contact-mobile .product-page__contact-phone {
        cursor: pointer;
    }
}
.page {
    padding: 80px 0 100px;
    background: #f7fbfc;
}

.page-content {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 40px 45px;
    background: #ffffff;
    border: 1px solid rgba(7, 93, 123, 0.10);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 70, 95, 0.08);

    color: #4f6f7d;
    font-size: 22px;
    line-height: 1.85;
}

.page-content p {
    margin-bottom: 24px;
}

.page-content strong {
    color: #063d59;
}

.page-content ul {
    margin: 24px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 14px;
}

@media (max-width: 620px) {

    .page {
        padding: 45px 0 60px;
    }

    .page-content {
        padding: 24px;
        font-size: 18px;
        line-height: 1.75;
    }

}