.custom-container {
    display: flex;
    flex-wrap: wrap;
}


.cart-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.cart-items {
    flex: 3;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.item-details {
    display: flex;
    align-items: center;
}

.item-details img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.item-info h2 {
    font-size: 18px;
    margin: 0;
}

.item-info p {
    font-size: 14px;
    color: #666;
}

.item-price span {
    font-size: 18px;
    font-weight: bold;
}

.cart-summary {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    text-align: right;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.summary-item.total {
    font-size: 20px;
    font-weight: bold;
}

.cart-buttons {
    margin-top: 20px;
}

.checkout-btn, .continue-btn {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    margin-bottom: 10px;
}

.continue-btn {
    background-color: #6c757d;
}

.remove-btn {
    background-color: #ff4d4f;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.remove-btn:hover {
    background-color: #ff7875;
    transform: scale(1.05);
}





.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-message h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.empty-cart-message p {
    font-size: 18px;
}

.empty-cart-message a {
    color: #007bff;
    text-decoration: none;
}




/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .item-details {
        flex-direction: column;
        text-align: center;
    }

    .item-price {
        text-align: center;
    }

    .cart-summary {
        margin-top: 20px;
        text-align: center;
    }

    .checkout-btn, .continue-btn {
        width: 100%;
    }
}


