* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('./images/bg_4.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    min-height: 100vh;
    padding-top: 80px;
}

.cart-container {
    min-height: 80vh;
}

.logo img {
    height: 70px;
}

.navbar a {
    color: white !important;
}

.navbar a:hover {
    color: yellow !important;
}

.cart-items {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.cart-header {
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #ffc107;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #ffc107;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity {
    margin: 0 10px;
    font-weight: bold;
}

.remove-btn {
    background: #dc3545;
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.order-summary {
    color: white;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.summary-details {
    margin: 20px 0;
}

.summary-details div {
    margin-bottom: 10px;
}

.total {
    font-size: 1.2em;
    color: #ffc107;
}

.empty-cart {
    padding: 100px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: #6c757d;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cart-header {
        display: none;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .quantity-controls {
        justify-content: center;
        margin: 10px 0;
    }
}
.cart-items{
    color:white ;
}
.cart-item-total{
    margin: 0px 15px;
}
