/* Floating Share Button Styles */
.share-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.share-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f50707 0%, #a81717 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(235, 37, 37, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.share-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.share-toggle:active {
    transform: translateY(-1px);
}

.share-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.share-widget.active .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-menu-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #4b5563;
    background: #f9fafb;
}

.share-option:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.share-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff;
}

.share-option.facebook .share-icon {
    background: #1877f2;
}

.share-option.twitter .share-icon {
    background: #1da1f2;
}

.share-option.whatsapp .share-icon {
    background: #25d366;
}

.share-option.telegram .share-icon {
    background: #0088cc;
}

.share-option.linkedin .share-icon {
    background: #0077b5;
}

.share-option.copy .share-icon {
    background: #6b7280;
}

.share-label {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: #4b5563;
}

.copy-notification {
    position: absolute;
    bottom: -35px;
    right: 0;
    background: #10b981;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

@media (max-width: 768px) {
    .share-widget {
        bottom: 20px;
        right: 20px;
    }

    .share-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .share-menu {
        min-width: 220px;
        bottom: 65px;
    }

    .share-options {
        gap: 8px;
    }

    .share-option {
        padding: 8px 5px;
    }

    .share-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .share-label {
        font-size: 10px;
    }
}