/**
 * Component: Section Floating Contact Bar (Dải nút liên hệ nổi cố định bên phải)
 * Path: template-parts/sections/section-floating-contact/style.css
 */

.midori-right-floating-bar {
    position: fixed;
    top: 50%;
    right: 0 !important;
    left: auto !important;
    transform: translateY(-50%);
    z-index: 99999;
    background-color: #374426 !important; /* Mã màu xanh đâm #374426 */
    border-radius: 22px 0 0 22px !important; /* Bo tròn góc bên trái */
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.18);
}

.midori-float-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    outline: none !important;
}

.midori-float-icon-link:hover {
    transform: scale(1.15);
    opacity: 0.9;
}

.midori-float-icon-link img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

@media (max-width: 767px) {
    .midori-right-floating-bar {
        padding: 12px 9px;
        gap: 14px;
        border-radius: 18px 0 0 18px !important;
    }
    .midori-float-icon-link {
        width: 30px;
        height: 30px;
    }
    .midori-float-icon-link img {
        width: 22px;
        height: 22px;
    }
}