body {
    font-family: 'Roboto Slab', serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #ffffff;
}

.top-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-img {
    max-width: 50%;
    height: auto;
}
.overlay-img {
    max-width: 15%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title-div {
    font-family: 'Roboto Slab', serif;
    font-weight: normal;
    background-color: #18254E;
    max-width: 50%;
    width: 100%;
    height: 4vw;
    min-height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    color: white;
    margin-top: 2px;
}
.title-div h3 {
    margin: 0 0 0 70px;
    font-weight: normal;
}
.merch-table {
    max-width: 50%;
    width: 100%;
    table-layout: fixed;
    margin: 20px 0px 20px 0px;
}
.merch-table col.sep {
    width: 20px; /* Фиксированная ширина 20px для .sep */
}
.merch-table .sep-vert {
    height: 60px;
}
.merch-table col.item-col {
    width: calc((100% - 40px) / 3); /* Оставшаяся ширина делится между тремя td */
}
.merch-table td {
    vertical-align: top;
    padding: 0;
}
.item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0px;
    background-color: #FFFFFF;
    box-sizing: border-box;
}
.item-img {
    background-color: #efefef;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}
.item-img img {
    width: 100%;
    height: auto;
}
.item-info {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 5px 0;
    padding: 0px;
    box-sizing: border-box;
    margin-top: 8px;
}
.item-info .sizes {
    text-align: right;
    color: #717171;
}
.item-ozon {
    font-family: 'Roboto', sans-serif;
    background-color: #2960BC;
    color: #FFFFFF;
    padding: 4px 10px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: 0px;
    margin-top: 8px;
    text-decoration: none;
}
.merch-table td[colspan="5"] {
    text-align: center;
}
.merch-table td:nth-child(1) .item {
    align-items: flex-start;
}
.merch-table td:nth-child(3) .item {
    align-items: center;
}
.merch-table td:nth-child(5) .item {
    align-items: flex-end;
}

.partners {
    margin-top: 30px;
    padding: 10px;
    border: solid 1px;
    border-color: #2960BC;
    border-radius: 6px;
    width: 46%;
    max-width: 46%;
}

.bottom {
    max-width: 50%;
    width: 100%;
    height: 120px; /* Уменьшено для компактности */
    min-height: 80px; /* Уменьшено для маленьких экранов */
    background-color: #0A1F4B;
    background-image: url('./img/bottom_bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 20px;
    border-collapse: collapse;
}
.bottom_1 {
    width: 70%;
    text-align: right;
    padding-right: 20%; /* Уменьшен отступ */
}
.bottom_2 {
    width: 15%;
    white-space: nowrap;
    color: #FFFFFF;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 12px; /* Компромисс для читаемости */
    text-align: right;
    padding-right: 20px;
}
.bottom_3 {
    width: 15%;
    text-align: right;
    padding-right: 40px;
    height: 100%;
    vertical-align: middle;
}
.overlay-img2 {
    max-width: 40%;
    height: auto;
    position: relative;
}
.overlay-img3 {
    width: 110%;
    max-width: 110%;
    height: 100%;
    object-fit: contain;
    position: relative;
    display: block;
}

@media (max-width: 768px) {
    .merch-table {
        display: block;
    }
    .merch-table td {
        display: block;
        width: 100%;
    }
    .sep {
        display: none;
    }
    .title-div {
        font-size: 18px;
        height: auto;
        min-height: 40px;
    }
}

.merch-table td.alert {
    font-size: 20px;
    padding-bottom: 30px; /* Настройте по вашим требованиям */
    box-sizing: border-box;
    text-align: center;
}