
/*coupon floating style start */
.coupon-circle {
    position: fixed;
    bottom: 40%;
    left: -75px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #ff6347;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease, width 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}


@media (max-width: 767px) {
    .coupon-circle {
        width: 90px;
        height: 90px;
        left: -50px;
    }

    .coupon-code {
        font-size: 12px;
        padding: 1px 3px;
    }
    
    .copy-btn {
        font-size: 8px;
        width: 60%;
        height: 60%;
        padding: 0;   /* Remove extra padding */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
}

.coupon-circle:hover, .coupon-circle:focus {
    left: 10px;
    transition: all 0.5s ease;
}

.coupon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: #fff;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

.coupon-code {
    color: #fff;
    margin: 0px;
    transform: rotate(90deg);
    border: 1px #000 dashed;
    padding: 2px 5px;
}

.copy-btn {
    padding: 5px 10px;
    background-color: #fff;
    color: #ff6347;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    width: 40%;
    position: relative;
    left: 5px;
}

.copy-btn:active {
    background-color: #e0e0e0;
}

.copy-btn.clicked {
    background-color: #f8c722;
}

/*coupon floating style ends*/
/*whatsapp floating icon start*/
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: unset;
    left: 18px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*whatsapp floating icon ends*/

