/* XMTek Social Share Styling */

/* ========================================
   Inline Style - Dark buttons in a row (DEFAULT)
   ======================================== */

.xmtek-social-share,
.xmtek-share-inline {
    background: transparent;
    padding: 0;
    margin: 1rem 0;
    box-shadow: none;
    border-radius: 0;
}

.xmtek-share-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-right: 0.75rem;
}

.xmtek-share-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.xmtek-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #1a1a1a;
    color: #9ca3af;
}

.xmtek-share-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.xmtek-share-btn-text {
    display: none;
}

.xmtek-share-btn:hover {
    background: #6a996a;
    color: #ffffff;
}

/* Copied state */
.xmtek-share-copied {
    background: #6a996a !important;
    color: #ffffff !important;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 480px) {
    .xmtek-share-btn {
        width: 32px;
        height: 32px;
    }

    .xmtek-share-btn svg {
        width: 16px;
        height: 16px;
    }

    .xmtek-share-buttons {
        gap: 6px;
    }
}

/* Focus states for accessibility */
.xmtek-share-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(106, 153, 106, 0.4);
}

.xmtek-share-btn:focus-visible {
    outline: 2px solid #6a996a;
    outline-offset: 2px;
}
