/* ============================================================
   SOCIAL SHARE - STYLES
   ============================================================ */

.social-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.social-share .share-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2a3a;
    margin-right: 10px;
}

.social-share a,
.social-share button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    text-decoration: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-share a:hover,
.social-share button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== INDIVIDUAL BUTTON COLORS ===== */
.social-share .facebook { background: #1877f2; }
.social-share .twitter { background: #000000; }
.social-share .whatsapp { background: #25d366; }
.social-share .linkedin { background: #0a66c2; }
.social-share .copy-link {
    background: #4f46e5;
    color: white;
    width: auto;
    padding: 0 16px;
    border-radius: 40px;
    gap: 8px;
    font-size: 14px;
}

.social-share .copy-link:hover {
    background: #4338ca;
}

/* ===== TOAST NOTIFICATION ===== */
.share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a2a3a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.share-toast.show {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .social-share {
        justify-content: center;
    }
    .social-share a,
    .social-share button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .social-share .copy-link {
        padding: 0 12px;
        font-size: 12px;
    }
}