/* أزرار مشاركة المنتج — شريط منسّق */

.ahlmall-product-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #e8ecf1;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.ahlmall-product-share__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.ahlmall-share-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.ahlmall-share-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.ahlmall-share-chip::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.ahlmall-share-chip:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
    color: #fff;
    filter: brightness(1.05);
}

.ahlmall-share-chip:active {
    transform: translateY(-1px) scale(0.98);
}

.ahlmall-share-chip:focus-visible {
    outline: 2px solid var(--color-1st, #ff324d);
    outline-offset: 3px;
}

.ahlmall-share-chip--facebook {
    background: linear-gradient(145deg, #2d88ff 0%, #1877f2 100%);
}

.ahlmall-share-chip--twitter {
    background: linear-gradient(145deg, #2a2a2a 0%, #000 100%);
}

.ahlmall-share-chip--linkedin {
    background: linear-gradient(145deg, #0b7ad4 0%, #0a66c2 100%);
}

.ahlmall-share-chip--whatsapp {
    background: linear-gradient(145deg, #34e077 0%, #25d366 100%);
}

.ahlmall-share-chip--copy {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: var(--color-1st, #ff324d) !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.ahlmall-share-chip--copy::after {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ahlmall-share-chip--copy:hover {
    border-color: var(--color-1st, #ff324d);
    background: #fff5f6;
    color: var(--color-1st, #ff324d) !important;
    filter: none;
}

.ahlmall-share-chip--copy .ahlmall-share-chip__icon {
    font-size: 1.35rem;
    font-weight: 700;
}

.ahlmall-share-chip.is-copied {
    background: linear-gradient(145deg, #34d399 0%, #10b981 100%);
    border-color: #10b981;
    color: #fff !important;
}

.ahlmall-share-chip.is-copied .ahlmall-share-chip__icon {
    font-size: 1.1rem;
}

.ahlmall-product-share .social_icons {
    display: none !important;
}

[dir="rtl"] .ahlmall-product-share {
    flex-direction: row;
}

@media (max-width: 575px) {
    .ahlmall-product-share {
        padding: 10px 12px;
        gap: 10px;
    }

    .ahlmall-share-chip {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
        border-radius: 11px;
    }

    .ahlmall-share-chips {
        gap: 8px;
    }
}
