        body {
            background-color: #f1f1f1;
            color: #121212;
        }

        .cart-title {
            font-size: 2.2rem;
            font-weight: bold;
            color: #DAA520;
            margin: 30px 0;
            text-align: center;
            text-shadow: 1px 1px 5px #000;
        }

        .cart-card {
            background-color:rgb(217, 217, 217);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .row.align-items-center {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px 0;
            border-bottom: 1px solid #333;
        }

        .cart-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .product-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .product-name {
            font-size: 1.2rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #121212;
            margin: 0;
        }

        .product-desc {
            font-size: 0.9rem;
            color: #aaa;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin: 0;
        }

        .custom-quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px 10px;
    background-color: white;
    gap: 10px;
}

.quantity-btn {
    background: none;
    border: none;
    color: #ff6600;
    font-size: 16px;
    cursor: pointer;
}

.quantity-btn:focus {
    outline: none;
}

.quantity-field {
    border: none;
    width: 50px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: transparent;
}

.quantity-field:focus {
    outline: none;
}


        .grand-total {
            color: #121212;
            font-size: 1.4rem;
            font-weight: bold;
        }

        .btn-checkout {
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 8px;
            width: 100%;
        }

        footer {
            margin-top: auto;
        }

        @media (max-width: 768px) {
    .row.align-items-center {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .product-name {
        font-size: 1rem;
        margin-bottom: 2px;
        white-space: normal;
    }

    .product-desc {
        font-size: 0.85rem;
        color: #888;
        white-space: normal;
    }

    .quantity-col {
        width: 100%;
    }

    .quantity-col .d-flex {
        margin-top: 8px;
        justify-content: flex-start;
    }

    .quantity-field {
        width: 40px;
        font-size: 0.9rem;
    }

    .quantity-btn {
        font-size: 1rem;
    }

    .btn-checkout {
        width: 100%;
        font-size: 0.95rem;
    }
}


            .quantity-input input {
                width: 40px;
                font-size: 0.9rem;
            }

            .quantity-input button {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
        
    