.trzyczajki-floating-buttons-wrapper {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.trzyczajki-floating-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background-color: #ffffff; /* bubble */
    color: #000000;
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background-color 0.15s ease-out;
}

.trzyczajki-floating-button:hover {
    transform: translateX(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    background-color: #fefefe;
}

.trzyczajki-floating-button-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fcae1e; /* main accent */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #ffffff;
}

.trzyczajki-floating-button-icon img {
    max-width: 24px;
    max-height: 24px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.trzyczajki-floating-button-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.trzyczajki-floating-button-text {
    white-space: nowrap;
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .trzyczajki-floating-buttons-wrapper {
        top: auto;
        transform: none;
        bottom: 16px;
        right: 12px;
        gap: 8px;
    }

    .trzyczajki-floating-button {
        padding: 6px 10px 6px 6px;
        font-size: 13px;
        max-width: 80vw;
    }

    .trzyczajki-floating-button-text {
        white-space: normal;
    }

    .trzyczajki-floating-button-icon {
        width: 30px;
        height: 30px;
    }
}

