.cv-icon-bar-horizontal-sticky {
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.5s ease-in-out;
}

.cv-icon-bar-horizontal-sticky.cv-active {
    opacity: 1;
    transform: translateY(0);
}

.cv-icon-bar-horizontal-sticky button {
    padding: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 90px;
    height: 80px;
}

/* 🎯 آیکون‌ها داخل دکمه‌ها */
.cv-icon-bar-horizontal-sticky button i {
    font-size: 42px;
    /* متناسب با ابعاد دکمه */
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ✨ جلوه نئونی روی دکمه و آیکون */
.cv-icon-bar-horizontal-sticky button:hover,
.cv-icon-bar-horizontal-sticky button.cv-active {
    border-color: #ff3333;
    box-shadow: 0 0 20px #ff3333, 0 0 10px #ff3333;
    background: rgba(255, 255, 255, 0.5);
}

.cv-icon-bar-horizontal-sticky button:hover i,
.cv-icon-bar-horizontal-sticky button.cv-active i {
    color: #ff3333;
    text-shadow: 0 0 15px #ff3333, 0 0 5px #ff3333;
}

/* 📱 موبایل کوچک */
@media only screen and (max-width: 420px) {
    .cv-icon-bar-horizontal-sticky {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 20px;
        margin: 0;
        padding: 0;
        z-index: 1000;
    }

    .cv-icon-bar-horizontal-sticky button {
        width: 70px;
        height: 70px;
    }

    .cv-icon-bar-horizontal-sticky button i {
        font-size: 32px;
    }
}

/* 📱 تبلت */
@media screen and (min-width: 421px) and (max-width: 900px) {
    .cv-icon-bar-horizontal-sticky {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 20px;
        margin: 0;
        padding: 0;
        z-index: 1000;
    }

    .cv-icon-bar-horizontal-sticky button {
        width: 70px;
        height: 70px;
    }

    .cv-icon-bar-horizontal-sticky button i {
        font-size: 32px;
    }
}

/* 💻 دسکتاپ معمولی */
@media screen and (min-width: 901px) and (max-width: 2000px) {
    .cv-icon-bar-horizontal-sticky {
        position: fixed;
        top: 30px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px !important;
        z-index: 1000;
    }

    .cv-icon-bar-horizontal-sticky button {
        width: 90px;
        height: 80px;
    }

    .cv-icon-bar-horizontal-sticky button i {
        font-size: 42px;
    }

    #cv-icon-bar-horizontal {
        overflow: hidden;
        opacity: 0;
        transform: translateY(-50px);
        transition: all 0.5s ease-in-out;
    }

    #cv-icon-bar-horizontal.cv-active {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🖥 مانیتورهای خیلی بزرگ */
@media screen and (min-width: 2001px) {
    .cv-icon-bar-horizontal-sticky {
        position: fixed;
        top: 30px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px !important;
        z-index: 1000;
    }

    .cv-icon-bar-horizontal-sticky button {
        width: 90px;
        height: 80px;
    }

    .cv-icon-bar-horizontal-sticky button i {
        font-size: 42px;
    }

    #cv-icon-bar-horizontal {
        overflow: hidden;
        opacity: 0;
        transform: translateY(-50px);
        transition: all 0.5s ease-in-out;
    }

    #cv-icon-bar-horizontal.cv-active {
        opacity: 1;
        transform: translateY(0);
    }
}