/* ===== CART + WISHLIST STYLING ===== */

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Page title */
h1 {
    text-align: center;
    padding: 20px;
    color: #111;
}

/* Container */
#cartContainer,
#wishlistContainer {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Item card */
#cartContainer > div,
#wishlistContainer > div {
    display: flex;
    align-items: center;
    gap: 20px;

    background: white;
    margin-bottom: 15px;
    padding: 15px;

    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: 0.3s;
    flex-wrap: wrap;
}

#cartContainer > div:hover,
#wishlistContainer > div:hover {
    transform: scale(1.01);
}

/* Product image */
img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

/* Product name */
h3 {
    margin: 0;
    font-size: 18px;
}

/* Price */
p {
    margin: 5px 0;
    color: #444;
    font-weight: bold;
}

/* Remove button */
button {
    margin-left: auto;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;

    background: #d4af37;
    color: white;
    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    background: #b8922f;
}

/* Total price (cart page) */
#totalPrice {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
    color: #111;
    font-weight: bold;
}