/*
========================================
IMAGINE PDF DOWNLOAD
========================================
*/

.imagine-pdf-download {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}


/*
========================================
BUTTON
========================================
*/

.imagine-pdf-button {

    display: inline-flex;

    align-items: center !important;
    justify-content: center !important;

    gap: 8px !important;

    height: 46px;

    padding: 0 18px;

    border: 1px solid #7A7A7A !important;

    border-radius: 10px;

    background: #7A7A7A ;

    color: #7A7A7A !important;

    font-size: 15px;

    font-weight: 600;

    line-height: 1;

    cursor: pointer;

    transition: background 0.2s ease;
}


/*
Hover শুধু button-এর design change করবে.

Hover করলে menu OPEN হবে না.
*/

.imagine-pdf-button:hover,.imagine-pdf-button:focus {
    background: #D3B167 !important;
    color: #ffffff !important;
	text-decoration: none !important;
}


/*
========================================
ARROW
========================================
*/

.imagine-pdf-arrow {

    font-size: 12px;

    transition:
        transform 0.2s ease;
}


/*
CLICK করলে arrow rotate
*/

.imagine-pdf-download.is-open
.imagine-pdf-arrow {

    transform:
        rotate(180deg);
}


/*
========================================
MENU
========================================
*/

/*
IMPORTANT:

Default অবস্থায় menu completely hidden.
*/

.imagine-pdf-menu {

    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    width: 240px;

    padding: 8px;

    box-sizing: border-box;

    background: #ffffff;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.15);

    z-index: 999999;

    display: none;
}


/*
ONLY CLICK করলে
.is-open class যোগ হবে
*/

.imagine-pdf-download.is-open
.imagine-pdf-menu {

    display: block;
}


/*
========================================
PDF ITEM
========================================
*/

.imagine-pdf-item {

    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 12px;

    box-sizing: border-box;

    color: #111827;

    background: transparent;

    text-decoration: none;

    font-size: 14px;

    font-weight: 500;

    border-radius: 8px;

    transition:
        background 0.15s ease;
}


.imagine-pdf-item:hover {

    background: #f3f4f6;

    color: #111827;
}


/*
========================================
EMPTY MESSAGE
========================================
*/

.imagine-pdf-empty {

    padding: 12px;

    color: #6b7280;

    font-size: 14px;
}


/*
========================================
MOBILE
========================================
*/

@media (max-width: 767px) {


    /*
    Download text hide
    */

    .imagine-pdf-text {

        display: none;
    }


    /*
    Arrow hide
    */

    .imagine-pdf-arrow {

        display: none;
    }


    /*
    শুধু download icon
    */

    .imagine-pdf-button {

        width: 36px;

        height: 36px;

        padding: 0;

        gap: 0;
    }


    /*
    Mobile menu
    */

    .imagine-pdf-menu {

        width: 220px;
    }

}