body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
}


.cart-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


h1 {
    font-size: 24px;
    margin-bottom: 20px;
}


.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}


.cart-item-link img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.cart-item-link img:hover {
    transform: scale(1.05);
}


.cart-item-details {
    flex: 1;
    text-align: left;
    padding: 0 10px;
}


.cart-item-name {
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cart-item-name:hover {
    color: orange;
}


.cart-item-details p {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}


.cart-item-controls {
    display: flex;
    align-items: center;
}

.quantity-btn {
    border: 1px solid #ccc;
    padding: 5px 10px;
    background: white;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 5px;
}

.quantity-btn:hover {
    background-color: #ddd;
}


.remove-btn {
    padding: 5px 10px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-btn:hover {
    background: #cc0000;
}


.cart-summary {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}


#checkout {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #ff5722;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#checkout:hover {
    background-color: #e64a19;
}


.back-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #007bff;
    border-radius: 5px;
    transition: 0.3s;
}

.back-button:hover {
    background-color: orange;
    color: white;
}
