/*Begin Button elementor*/
.button-wrap-global .button-inner .icon-button-el ,
.button-wrap-global .button-inner .text-button{
    vertical-align: middle;
}
.button-wrap-global .icon-image-btn{
    position: relative;
    display: inline-block;
}
.button-wrap-global .icon-image-btn .icon_image_hover{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.button-wrap-global .button-inner:hover .icon-image-btn .icon_image_hover{
    opacity: 1;
}
.button-wrap-global .button-inner:hover .icon-image-btn>img{
    opacity: 0;
}
/*-------------------------------*/

/* DEFAULT STYLE - LARGER */
.elbzotech-bt-global-default{
    border: 0;
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 18px; /* Increased from 16px */
    font-weight: 700; /* Bolder for visibility */
    text-align: center;
    background: #dc3d87 !important; /* PakMeds Pink */
    border-radius: 60px;
    padding: 0 45px; /* Wider padding */
    height: 64px;    /* Increased from 56px */
    line-height: 64px; /* Matches height to center text vertically */
    display: inline-block;
    cursor: pointer;
    z-index: 1;
    position: relative;
    font-family: var(--bzo-body_typo-font-family);
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.elbzotech-bt-global-default:hover,
.elbzotech-bt-global-default:focus {
    color: #ffffff !important;
    background: #80cc28 !important; /* PakMeds Green */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

/* STYLE 2 - LARGER (Rounded Rect) */
.elbzotech-bt-global-style2{
    border: 0;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 18px; 
    font-weight: 700;
    background: #dc3d87 !important;
    border-radius: 15px;
    padding: 20px 40px; /* Increased padding */
    line-height: 1;
    display: inline-block;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.elbzotech-bt-global-style2:hover {
    background: #80cc28 !important;
    transform: translateY(-2px); /* Slight lift effect */
}

/* STYLE 3 - LARGER (Square-ish) */
.elbzotech-bt-global-style3{
    border: 0;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    background: #dc3d87 !important;
    border-radius: 5px;
    padding: 18px 36px; /* Increased padding */
    line-height: 1;
    display: inline-block;
    cursor: pointer;
}

.elbzotech-bt-global-style3:hover {
    background: #80cc28 !important;
}