﻿/* =========================================================
   RADHIKA SEEDS
   FLOATING SOCIAL MEDIA
   ========================================================= */

.rs-social-float {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 9px;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.rs-social-btn {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.20);
    transition: width .25s ease, transform .25s ease, box-shadow .25s ease;
    overflow: visible;
}


    /* =========================================================
   ICON
   ========================================================= */

    .rs-social-btn i {
        font-size: 21px;
        line-height: 1;
    }


/* =========================================================
   LABEL
   ========================================================= */

.rs-social-label {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    padding: 7px 11px;
    border-radius: 5px;
    color: #ffffff;
    background: #18222d;
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}


    .rs-social-label::after {
        content: "";
        position: absolute;
        right: -5px;
        top: 50%;
        transform: translateY(-50%);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #18222d;
    }


/* =========================================================
   HOVER
   ========================================================= */

.rs-social-btn:hover {
    transform: translateX(-4px) scale(1.06);
    box-shadow: 0 9px 24px rgba(0,0,0,.28);
}


    .rs-social-btn:hover
    .rs-social-label {
        opacity: 1;
        visibility: visible;
        transform: translateY(-50%) translateX(0);
    }


/* =========================================================
   WHATSAPP
   ========================================================= */

.rs-whatsapp {
    background: #25D366;
}


/* =========================================================
   FACEBOOK
   ========================================================= */

.rs-facebook {
    background: #1877F2;
}


/* =========================================================
   INSTAGRAM
   ========================================================= */

.rs-instagram {
    background: linear-gradient( 135deg, #833AB4 0%, #E1306C 50%, #F77737 100% );
}


/* =========================================================
   YOUTUBE
   ========================================================= */

.rs-youtube {
    background: #FF0000;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rs-social-float {
        right: 9px;
        top: auto;
        bottom: 72px;
        transform: none;
        gap: 7px;
    }


    .rs-social-btn {
        width: 40px;
        height: 40px;
    }


        .rs-social-btn i {
            font-size: 18px;
        }


    /* Hide text labels on mobile */

    .rs-social-label {
        display: none;
    }


    .rs-social-btn:hover {
        transform: scale(1.05);
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .rs-social-float {
        right: 7px;
        bottom: 64px;
        gap: 6px;
    }


    .rs-social-btn {
        width: 37px;
        height: 37px;
    }


        .rs-social-btn i {
            font-size: 16px;
        }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 350px) {

    .rs-social-float {
        right: 5px;
        bottom: 58px;
        gap: 5px;
    }


    .rs-social-btn {
        width: 34px;
        height: 34px;
    }


        .rs-social-btn i {
            font-size: 14px;
        }
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .rs-social-btn,
    .rs-social-label {
        transition: none;
    }
}
