/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #0a0a0a;
}

.cart-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.cart-header {
    text-align: center;
    margin-bottom: 20px;
}

.cart-items {
    padding: 20px 0;
}

.item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin-bottom: 5px;
}

.item-actions {
    margin-top: 10px;
}

.item-actions button {
    background-color: rgb(255, 217, 0);
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.item-actions button:hover {
    background-color: #333;
}

.quantity {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
}

.item-price {
    margin-left: auto;
}

.total p {
    font-size: 18px;
}

.checkout-btn {
    background-color: rgb(255, 217, 0);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover {
    background-color: #333;
}
