.rc-share-plugin__button {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #4361ee;
    border: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 860px) {
    .rc-share-plugin__button {
        width: 45px;
        height: 45px;
        bottom: 95px;
        right: 12px;
        font-size: 18px;
    }
}

.rc-share-plugin__button:hover,
.rc-share-plugin__button:focus-visible {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    outline: none;
}

.rc-share-plugin__button i {
    pointer-events: none;
}

.rc-share-plugin__options {
    position: fixed;
    bottom: 185px;
    right: 35px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

@media (max-width: 768px) {
    .rc-share-plugin__options {
        bottom: 155px;
        right: 15px;
        gap: 12px;
    }
}

.rc-share-plugin__options.is-open {
    display: flex;
}

.rc-share-plugin__option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none;
    border: 0;
}

@media (max-width: 768px) {
    .rc-share-plugin__option {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.rc-share-plugin__option:hover,
.rc-share-plugin__option:focus-visible {
    transform: scale(1.1);
    text-decoration: none;
    outline: none;
}

.rc-share-plugin__option--facebook {
    background-color: #1877f2;
}

.rc-share-plugin__option--twitter {
    background-color: #1da1f2;
}

.rc-share-plugin__option--whatsapp {
    background-color: #25d366;
}

.rc-share-plugin__option--telegram {
    background-color: #0088cc;
}
