/* ==========================================================
   SECTION STICKY ICON GROUP - MIDORI DECOR (BEM STANDARD)
   ========================================================== */

.sticky-icon-group {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    z-index: 999999 !important; /* Tránh bị Elementor đè */
}

.sticky-icon-group__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    transition: var(--transition-base, all 0.3s cubic-bezier(0.25, 1, 0.5, 1));
}

.sticky-icon-group__link:hover {
    transform: translateY(-2px);
}

/* Khung tròn chứa icon */
.sticky-icon-group__icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent, #456C35);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: stickyRippleGlow 2s infinite ease-out;
}

/* Hiệu ứng lan tỏa (Ripple Glow) */
@keyframes stickyRippleGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(69, 108, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(69, 108, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(69, 108, 53, 0);
    }
}

.sticky-icon-group__img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Nút điện thoại */
.sticky-icon-group__link--phone {
    background-color: var(--color-primary, #ffffff);
    border: 2px solid var(--color-accent, #456C35);
    border-radius: 60px;
    height: 50px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-icon-group__link--phone .sticky-icon-group__icon-wrapper {
    margin-left: -2px;
    margin-top: -2px;
    margin-bottom: -2px;
}

/* Số điện thoại bên trong nút */
.sticky-icon-group__phone-number {
    color: var(--text-dark, #0F0F0F);
    font-weight: 700;
    font-size: 16px;
    padding: 0 18px 0 12px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: var(--font-sans, "Open Sans", sans-serif);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .sticky-icon-group {
        bottom: 20px !important;
        left: 15px !important;
        gap: 10px;
    }

    .sticky-icon-group__icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .sticky-icon-group__img {
        width: 20px;
        height: 20px;
    }

    .sticky-icon-group__link--phone {
        height: 44px;
    }

    .sticky-icon-group__phone-number {
        font-size: 14px;
        padding: 0 14px 0 10px;
    }
}