.zsdh-share {
    --zsdh-navy: #101445;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 2px;
    position: relative;
}

/* The new direct buttons replace the theme's duplicate share modal trigger. */
.listing-details-head .social-share-li {
    display: none !important;
}

.zsdh-share__label {
    color: var(--zsdh-navy);
    font-size: 14px;
    font-weight: 800;
    margin-right: 2px;
}

.zsdh-share__button {
    align-items: center;
    appearance: none;
    background: #fff;
    border: 1px solid #e5e7ef;
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(16, 20, 69, .07);
    color: var(--zsdh-navy);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    gap: 7px;
    justify-content: center;
    line-height: 1;
    min-height: 40px;
    padding: 9px 14px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.zsdh-share__button:hover,
.zsdh-share__button:focus-visible {
    border-color: #ff8a00;
    box-shadow: 0 8px 20px rgba(16, 20, 69, .12);
    color: var(--zsdh-navy);
    outline: none;
    transform: translateY(-1px);
}

.zsdh-share__button svg {
    fill: currentColor;
    flex: 0 0 18px;
    height: 18px;
    width: 18px;
}

.zsdh-share__button--facebook {
    color: #1877f2;
}

.zsdh-share__button--viber {
    color: #7360f2;
}

.zsdh-share__button--whatsapp {
    color: #16a85a;
}

.zsdh-share__button--copy {
    color: #ff7900;
}

.zsdh-share__status {
    background: var(--zsdh-navy);
    border-radius: 8px;
    bottom: calc(100% + 8px);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    opacity: 0;
    padding: 7px 10px;
    pointer-events: none;
    position: absolute;
    transform: translateY(4px);
    transition: opacity .18s ease, transform .18s ease;
    visibility: hidden;
    z-index: 5;
}

.zsdh-share__status.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.zsdh-share__status.is-error {
    background: #c73535;
}

@media (max-width: 575px) {
    .zsdh-share {
        gap: 8px;
        margin-top: 14px;
    }

    .zsdh-share__label {
        flex: 0 0 100%;
    }

    .zsdh-share__button {
        flex: 1 1 calc(50% - 4px);
        padding-inline: 10px;
    }
}
