.wp-block-awt-author-pro-book-carousel {

    .rswpbs-book-loop-btn {
        display: inline-block;
        margin-right: 5px;
        margin-bottom: 0px;
        position: relative;

        a.button {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            gap: 8px;

            background-color: #ea580c !important;
            color: #ffffff !important;
            border: 1px solid #ea580c !important;
            border-radius: 4px !important;

            padding: 8px 16px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            text-transform: capitalize;
            text-decoration: none !important;
            line-height: 1.2 !important;
            min-height: 38px;
            transition: all 0.3s ease;

            // Fix 1: & যোগ করা হয়েছে
            &:hover {
                background-color: #c2410c !important;
                border-color: #c2410c !important;
                transform: translateY(-1px);
            }

            // Fix 2: & যোগ করা হয়েছে
            &.loading {
                opacity: 0.7;
                cursor: wait;
            }

            // Fix 3: & যোগ করা হয়েছে (এজন্যই আইকন দেখা যাচ্ছিল না)
            &::before {
                content: '';
                display: inline-block;
                width: 14px;
                height: 14px;
                background-color: currentColor;

                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');
                mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>');

                -webkit-mask-repeat: no-repeat;
                mask-repeat: no-repeat;
                -webkit-mask-position: center;
                mask-position: center;
            }

            // Fix 4: & যোগ করা হয়েছে (Added state এর জন্য)
            &.added::before {
                -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
                mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
            }
        }

        a.added_to_cart.wc-forward {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;

            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #111827;
            color: #fff;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
    }

    /* Glide & Arrows */
    .glide {
        position: relative;
        /* রিলেটিভ পজিশন সেট করা হলো */
    }

    /* অ্যারো কন্টেইনারকে পুরো স্ক্রিন জুড়ে ছড়িয়ে দেওয়া */
    .glide__arrows {
        position: absolute;
        top: 45%;
        /* ইমেজের মাঝ বরাবর রাখার জন্য পজিশন */
        left: 50%;
        transform: translate(-50%, -50%);
        /* একদম মাঝখানের জন্য */
        width: 95vw;
        /* স্ক্রিনের ৯৮% জুড়ে থাকবে (একদম কিনারা) */
        display: flex;
        justify-content: space-between;
        z-index: 50;
        pointer-events: none;
        /* ক্লিক যাতে মাঝখানের কনটেন্টে বাধা না দেয় */
    }

    /* বাটনের স্টাইল */
    .glide__arrow {
        pointer-events: auto;
        /* বাটনে ক্লিক কাজ করানোর জন্য */
        border: none !important;
        box-shadow: 0 4px 15px rgb(0 0 0 / 0.15) !important;
        background-color: white !important;
        color: #1a202c !important;
        border-radius: 50% !important;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .glide__arrow:hover {
        background-color: #1a202c !important;
        color: white !important;
        transform: scale(1.1);
    }

    .glide__bullet {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #e5e7eb;
        border: none;
        padding: 0;
        margin: 0 4px;
        transition: all 0.3s ease;
        cursor: pointer;

        &--active {
            background-color: #374151;
            transform: scale(1.2);
        }
    }
}