/* =============================================================
   SIA Share Links CSS  -  v1.0.60
   Horizontal share button row for single product pages.
   ============================================================= */

.sia-share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 20px 0 10px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.sia-share-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-right: 4px;
}

.sia-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    line-height: 0;
}

.sia-share:hover,
.sia-share:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.sia-share:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.sia-share-whatsapp:hover,
.sia-share-whatsapp:focus-visible {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
}

.sia-share-facebook:hover,
.sia-share-facebook:focus-visible {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.sia-share-twitter:hover,
.sia-share-twitter:focus-visible {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.sia-share-email:hover,
.sia-share-email:focus-visible {
    background: #6b7280;
    color: #ffffff;
    border-color: #6b7280;
}

.sia-share-copy {
    position: relative;
    font-family: inherit;
}

.sia-share-copy:hover,
.sia-share-copy:focus-visible {
    background: #f97316;
    color: #ffffff;
    border-color: #f97316;
}

.sia-share-copy-status {
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    transform: translateY(-50%);
    background: #111827;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1.4;
}

.sia-share-copy-status:empty {
    display: none;
}

@media (max-width: 480px) {
    .sia-share-row {
        gap: 6px;
    }
    .sia-share {
        width: 34px;
        height: 34px;
    }
    .sia-share svg {
        width: 16px;
        height: 16px;
    }
}
