
/* .cart {
    display: table;
    border: 1px solid #ff5e00;
    border-radius: 15px;
    padding: 5px;
    } */
    
    
    /* Основные стили */
table.cart {
    width: 100%;
    border-collapse: collapse;    
    background-color: #ffffffa2; /* Основной цвет фона */
    color: #1a1a2b; /* Цвет текста */
    font-weight: bold;
}

table.cart th {
    background-color: #254b7c; /* Второстепенный цвет фона заголовков */
    text-align: center;
    padding: 10px;
    border: 3px solid #000000;
    color: #fff; /* Цвет текста в заголовках */
}

/* Стили для строк данных */
table.cart td {
    padding: 10px;
    border: 1px solid #000000;
    text-align: center;
}

/* Стили для фотографий */
table.cart td img {
    max-width: 100px;
    max-height: 100px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

/* Стили для кнопки Remove */
table.cart td a.button {
    display: inline-block;
    background-color: #d81600;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

table.cart td a.button:hover {
    background-color: #ff1900;
}

/* Стили для итоговой строки */
table.cart tr.total td {
    font-weight: bold;
    background-color: #276a97d1;
    color: #fff;
}

table.cart tr.total td.noborder1{
    border-right: 0px;
}

table.cart tr.total td.noborder2{
    border-left: 0px;
}

.product_name{
    text-decoration: none;
    color: #000000;
}

.product_name:hover{
    text-decoration: none;
    color: #000000;
}


.button-right {
    display: flex;
    justify-content: space-around;
}

.buy_button, .order_button{
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 3.2px 7.2px 0 rgb(0 0 0 / 13%), 0 0.6px 1.8px 0 rgb(0 0 0 / 11%);
    margin-bottom: 100px;
    margin-top: 50px;
}

.buy_button{
    background-color: rgb(19, 205, 19);
    transition: 0.2s;
    border: rgb(13, 195, 13);
}

.buy_button:hover{
    background-color: rgba(3, 225, 3, 0.899);
    border: 5px rgb(13, 195, 13);
}

.buy_button img{
    height: 25px;
    width: 25px;
}

.order_button img{
    height: 30px;
    width: 30px;
}

.order_button{
    background-color: rgb(209, 187, 18);
    transition: 0.5s;
    border: rgb(211, 188, 13);
}

.order_button:hover{
    background-color: rgb(231, 219, 0);
    border: 5px rgb(211, 188, 13);
}

.s-head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #edf5ff;
    color: #002466;
    font-family: "Arial Black", "Arial Bold", Gadget, sans-serif;
}