.category__slider,
.category__slider-item,
.category__slider-item img
{
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cart-list 
{
    margin-top: 20px;
}

.cart-row 
{
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.cart-img 
{
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 10px;
}

.prod-title 
{
    font-weight: bold;
    color: #000;
}

.prod-price 
{
    font-size: 14px;
    color: #000;
}

.prod-total 
{
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.row-count input 
{
    width: 100%;
    max-width: 60px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.row-info
{
    display: flex;
    align-items: center;
}

.row-info,
.row-count,
.row-price
{
    padding: 0 20px;
}

.row-count
{
    flex-grow: 1;
    text-align: right;
}

.row-remove:hover
{
    cursor: pointer;
    color: #d20;
}


.cart-notify    
{
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: #eee;
    border-radius: 8px;
    padding: 20px 40px;
    box-shadow: 0 10px 10px rgba(0,0,0, .4);
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: none;
}