* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-weight: bolder;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: #1e293b;
            overflow-x: hidden;
        }

.cart-container {
    max-width: 1200px;
    margin: 120px auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 140px;
    border-radius: 10px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #ff8c42;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 700;
}

.qty {
    display: flex;
    gap: 10px;
    font-weight: bold;
}

.cart-summary {
    margin-top: 20px; 
    padding: 20px; 
}

button {
    background: #ff8c42;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 2px;
}