/* ─────────────────────────────────────────────────────── */
/* SHARE WIDGET STYLES                                     */
/* ─────────────────────────────────────────────────────── */

.share-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
    padding: 16px;
    background: #f9f9f9;
    border-left: 4px solid #000;
    border-radius: 2px;
}

.share-toolbar__label {
    font: 800 0.75rem/1 'Manrope', 'Outfit', system-ui;
    color: #666;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-right: 12px;
    white-space: nowrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid #000;
    background: #fff;
    color: #000;
    font: 700 0.85rem/1 'Manrope', 'Outfit', system-ui;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    border-radius: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.share-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Network-specific colors on hover */
.share-btn.linkedin:hover {
    border-color: #0A66C2;
    background: #0A66C2;
    color: #fff;
}

.share-btn.facebook:hover {
    border-color: #1877F2;
    background: #1877F2;
    color: #fff;
}

.share-btn.twitter:hover {
    border-color: #000;
    background: #000;
    color: #fff;
}

.share-btn.whatsapp:hover {
    border-color: #25D366;
    background: #25D366;
    color: #fff;
}

.share-btn.copy:hover {
    border-color: #4CAF50;
    background: #4CAF50;
    color: #fff;
}

.share-btn.pdf:hover {
    border-color: #D32F2F;
    background: #D32F2F;
    color: #fff;
}

.share-btn__icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
}

.share-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    font: 600 0.9rem/1.2 'Manrope', 'Outfit', system-ui;
    z-index: 10000;
    animation: slideInToast 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes slideInToast {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .share-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .share-toolbar__label {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .share-toast {
        bottom: 12px;
        right: 12px;
        left: 12px;
        margin: 0 auto;
    }
}
