/* Cart page styles */
.cart .shop-prod-item {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 15px;
}

.cart .shop-prod-item img {
    max-width: 100px;
    margin-right: 15px;
}

.cart .name {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.cart .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart .price {
    font-size: 1.1em;
    color: #333;
}

.cart .btn {
    display: inline-block;
    padding: 10px 15px;
    background: #333;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}

.cart .btn:hover {
    background: #555;
}
