.qty-container {
        display: flex;
        align-items: center;
        border: 1px solid #007bff;
        border-radius: 6px;
        overflow: hidden;
        width: fit-content;
    }

    /* Minus and Plus buttons */
    .quantity-controls {
        display: flex;
         background: #007bff;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .quantity-btn {
        width: 50px;
        height: 40px;
        border-radius: 50rem !important;
        background: #007bff;
        color: white;
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    

    

    .quantity-btn:hover {
        background: #0056b3;
    }

    .quantity-btn:active {
        transform: scale(0.95);
    }

    .quantity-input {
        width: 70px;
        height: 40px;
        border: none;
        background: #007bff;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        outline: none;
        color: white;
        transition: all 0.3s ease;
    }

    .quantity-input:focus {
        background: #e9ecef;
    }

    /* Dot animation styles */
    .dot {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.8);
        opacity: 0;
    }

    .dot-1 {
        top: 15px;
        left: 15px;
    }

    .dot-2 {
        top: 15px;
        right: 15px;
    }

    .dot-3 {
        bottom: 15px;
        left: 22px;
    }

    .animate-dots .dot-1 {
        animation: dotAnimation 0.6s ease-out;
    }

    .animate-dots .dot-2 {
        animation: dotAnimation 0.6s ease-out 0.1s;
    }

    .animate-dots .dot-3 {
        animation: dotAnimation 0.6s ease-out 0.2s;
    }

    @keyframes dotAnimation {
        0% {
            transform: scale(0);
            opacity: 0;
        }

        50% {
            transform: scale(1.5);
            opacity: 1;
        }

        100% {
            transform: scale(0);
            opacity: 0;
        }
    }

    .value-change {
        animation: valueChange 0.3s ease;
    }

    @keyframes valueChange {
        0% {
            transform: scale(1);
            background: #f8f9fa;
        }

        50% {
            transform: scale(1.1);
            background: #e3f2fd;
        }

        100% {
            transform: scale(1);
            background: #f8f9fa;
        }
    }

    .instructions {
        margin-top: 30px;
        color: #666;
        font-size: 16px;
        line-height: 1.6;
    }

    .instructions p {
        margin-bottom: 10px;
    }

    @media (max-width: 480px) {
        .container {
            padding: 30px 20px;
        }

        .quantity-btn {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .quantity-input {
            width: 60px;
            height: 45px;
            font-size: 18px;
        }
    }