/* FLOATING BUTTON */
.floating-share {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    transition: 0.3s;
}

.floating-share:hover {
    transform: scale(1.1);
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup Box */
.popup {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    width: 340px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
}

.social-icons a {
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
}

.facebook { background: #1877f2; }
.twitter { background: #000; }
.whatsapp { background: #25d366; }
.linkedin { background: #0077b5; }

/* Copy */
.copy-box {
    margin-top: 20px;
    display: flex;
}

.copy-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
}

.copy-box button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}
