/* Container */
.cart-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

/* Left side items list */
#cart-items {
    width: 70%;
    min-height: 300px;
}

/* Each item box */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.item-info {
    flex-grow: 1;
    margin-left: 15px;
}

.item-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.item-info p {
    margin: 4px 0;
}

.remove-btn {
    background: red;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* Right Side Summary */
.summary-box {
    width: 28%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 80px;
}

.summary-box h3 {
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: #ff9900;
    cursor: pointer;
    margin-top: 15px;
}