.tarifs-block{
    display: flex;
     flex-direction: column;
     width: 100%;
    padding: 10px;
    margin: 0 auto;
    background-color: #f3f9ff;
}
.tariff-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1280px;
    height: auto;
    font-family: Montserrat, sans-serif;
    gap: 10px;
    overflow: hidden;
    margin: 5px auto;
    cursor: pointer;
}
.header-row {
    flex-grow: 0;
    height: auto;

}

.header-row-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    height: 97px;
    gap: 10px;
    padding: 0;
    margin: 10px auto;
    box-sizing: border-box;
}

.header-cell {
    flex: 1;
    background-color: #006be8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    /* min-width: 420px; */
}
.tariff-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 140px;
    padding: 10px;
    background: #FFFFFF;
    border-radius: 20px;
    /* border-right: 1px solid #f3f9ff; */
}
.tariff-row:hover {
    background: #DDEDFF;
}

.tariff-row:hover .tariff-cell {
    background: none; /* Убираем индивидуальный фон при ховере */
}

.tariff-row:hover .tariff-cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DDEDFF;
    z-index: -1; /* Помещаем фон под контент */
}
.tariff-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    color: #000000;
}
.order-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #006BE8;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    gap: 10px;
    min-width: 120px;
    height: 55px;
    color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 35px;
    text-transform: uppercase;
}

.order-button:hover {
    background: #FFE500;
    color: #000000;
}

.cart-icon {
    width: 16px;
    height: 16px;
}


@media (max-width: 768px) {
    .header-row-container {
        flex-direction: column;
        height: auto;
    }
    .header-cell {
        min-width: 100%;
        margin-bottom: 10px;
    }
    .tariff-row {
        flex-direction: column;
    }

    .tariff-cell {
        width: 100%;
        margin-bottom: 10px;
    }

    .tariff-cell:last-child {
        border-bottom: none;
    }
}
@media (max-width: 480px) {
    .header-cell {
        font-size: 16px;
        line-height: 30px;
    }
    .order-button {
        font-size: 14px;
    }
}
