.share-buttons-bar {
    width: auto;
    margin: 0 18px 10px;
    padding: 0;
    box-sizing: border-box;
}

.share-buttons-bar__inner {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(207, 56, 39, 0.12);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98)),
        linear-gradient(90deg, rgba(224, 40, 28, 0.04), rgba(255, 255, 255, 0));
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.share-buttons-bar__inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, #c91417, #f15a24 55%, #f5b044);
}

.share-buttons-bar__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
}

.share-buttons-bar__eyebrow {
    margin: 0 0 4px;
    color: #b42318;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.share-buttons-bar__intro h2 {
    margin: 0 0 2px;
    color: #111827;
    font-size: 1rem;
    line-height: 1.2;
}

.share-buttons-bar__intro p {
    margin: 0;
    max-width: 30rem;
    color: #475467;
    font-size: 0.8rem;
    line-height: 1.35;
}

.share-buttons-bar__actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.share-buttons-bar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 9px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.share-buttons-bar__button:hover,
.share-buttons-bar__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
    filter: saturate(1.02);
    outline: none;
}

.share-buttons-bar__button--facebook {
    background: linear-gradient(135deg, #275dc3, #1f4ea8);
}

.share-buttons-bar__button--whatsapp {
    background: linear-gradient(135deg, #238f53, #1b7645);
}

.share-buttons-bar__button--email {
    background: linear-gradient(135deg, #3a4558, #273141);
}

.share-buttons-bar__button--copy {
    background: linear-gradient(135deg, #f5f7fb, #e8edf5);
    color: #b42318;
    border-color: rgba(180, 35, 24, 0.18);
}

.share-buttons-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.share-buttons-bar__icon svg {
    width: 14px;
    height: 14px;
}

.share-buttons-bar__status {
    min-height: 1.2rem;
    margin: 6px 0 0;
    color: #166534;
    font-size: 0.76rem;
    font-weight: 700;
}

.share-buttons-bar__status.is-error {
    color: #b42318;
}

@media (max-width: 980px) {
    .share-buttons-bar__content {
        grid-template-columns: 1fr;
    }

    .share-buttons-bar__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .share-buttons-bar {
        margin: 0 10px 8px;
    }

    .share-buttons-bar__content {
        padding: 10px;
        gap: 10px;
    }

    .share-buttons-bar__actions {
        grid-template-columns: 1fr;
    }

    .share-buttons-bar__button {
        justify-content: flex-start;
    }
}

html[data-theme="dark"] .share-buttons-bar__inner {
    border-color: rgba(248, 113, 113, 0.16);
    background:
        linear-gradient(135deg, rgba(19, 27, 39, 0.96), rgba(14, 20, 31, 0.94)),
        linear-gradient(90deg, rgba(201, 20, 23, 0.11), rgba(15, 23, 42, 0));
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.38);
}

html[data-theme="dark"] .share-buttons-bar__intro h2 {
    color: #f8fafc;
}

html[data-theme="dark"] .share-buttons-bar__intro p {
    color: #c7d2e0;
}

html[data-theme="dark"] .share-buttons-bar__button--copy {
    background: linear-gradient(135deg, #192233, #121a29);
    color: #fca5a5;
    border-color: rgba(252, 165, 165, 0.18);
}

html[data-theme="dark"] .share-buttons-bar__status {
    color: #86efac;
}

html[data-theme="dark"] .share-buttons-bar__status.is-error {
    color: #fca5a5;
}