.catelog_text_cart_top {
    color: rgb(0, 0, 0);
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    width: 100%;
    max-width: 1680px;
    padding: 20px;
    /* Властивості для фонового зображення */
    background-size: cover; /* Заповнює весь простір блоку */
    background-repeat: no-repeat; /* Забороняє повторення зображення */
    background-position: center; /* Центрує зображення */
    border: solid 2px rgb(226, 180, 59);;
    border-radius: 20px;
    margin-bottom: 60px;
    margin-left: 50px;
    margin-right: 50px;
}

.catelog_text_cart_BOT {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 2px solid rgb(226, 180, 59);
    border-radius: 12px;
    background: rgb(226, 180, 59);
    width: 100%;
    max-width: 380px;
    min-height: 62px;
    padding: 14px 20px;
    color: rgb(0, 0, 0);
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 26px rgba(226, 180, 59, 0.35);
}

.catelog_text_cart_BOT:hover {
    background: rgb(56, 56, 56);
    color: rgb(226, 180, 59);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.catelog_text_cart_BOT:active {
    transform: translateY(0);
}

.catelog_text_cart_BOT:focus-visible {
    outline: 3px solid rgba(226, 180, 59, 0.35);
    outline-offset: 2px;
}

.catelog_text_cart{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .catelog_text_cart_top {
        font-size: 30px;
        line-height: 1.35;
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 38px;
    }

    .catelog_text_cart_BOT {
        max-width: 340px;
        min-height: 56px;
        font-size: 21px;
        padding: 12px 18px;
    }
}

@media (max-width: 700px) {
    .catelog_text_cart {
        margin-top: 40px;
        padding: 0 12px;
    }

    .catelog_text_cart_top {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 24px;
        border-radius: 14px;
        font-size: 22px;
        line-height: 1.35;
        padding: 16px 14px;
    }

    .catelog_text_cart_BOT {
        max-width: 100%;
        min-height: 50px;
        border-radius: 10px;
        font-size: 18px;
        line-height: 1.25;
        box-shadow: 0 8px 20px rgba(226, 180, 59, 0.28);
    }
}

