body {
    min-width: 320px;
    font-family: var(--inter);
    font-size: var(--s16);
    line-height: 18px;
    color: var(--dark);
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}

html {
    height: 100%;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    object-fit: contain;
}
h1 {
    font-family: var(--inter);
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: var(--dark);
    margin: 0;
}
.wrapper {
    box-sizing: border-box;
    min-height: 100%;
    display: flex;
    flex-direction: column;
 /*   justify-content: space-between;*/
}
.page-header, .page-footer {
    flex-grow: 0;
    flex-shrink: 0;
}
.page-body {
    flex-grow: 1;
}
.container {
    max-width: 1436px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}
.container::after,
.container::before {
    display: none;
}

@media (max-width: 1486px) {
    .container {
        padding: 0 50px;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 17px;
    }
    h1 {
        font-size: 22px;
        line-height: 26px;
    }
    .overlay-modal {
        display: none;
    }
}

.row {
    margin: 0 !important;
}
.card .releative-product .catalog-section {
    display: flex;
    gap: 10px;
}
.releative-product__title {
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--dark);
    margin-bottom: 20px;
}
.overlay-modal {
    display: none;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}
#overlay-modal {
    z-index: 999;
}
.grecaptcha-badge {
    display: none !important;
}