.cv-icon-bar-vertical-sticky {
    width: 90px;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000 !important;
}

.cv-icon-bar-vertical-sticky button {
    margin: 0 !important;
    padding: 12px;
    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: 80px;
    height: 80px;
}

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

/* ✨ جلوه نئونی در hover و active */
.cv-icon-bar-vertical-sticky button:hover,
.cv-icon-bar-vertical-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-vertical-sticky button:hover i,
.cv-icon-bar-vertical-sticky button.cv-active i {
    color: #ff3333;
    text-shadow: 0 0 15px #ff3333, 0 0 5px #ff3333;
}

/* ✅ آیکون‌های داخل .cv-one-yourmenu دست‌نخورده باقی می‌مانند */
.cv-one-yourmenu li i {
    float: left;
    padding-top: 5px;
    font-size: 15px;
    /* همان حالت قبلی */
    color: inherit;
    text-shadow: none;
}

/* انیمیشن ظاهر شدن منو */
#cv-icon-bar-vertical {
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-in-out;
}

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

/* استایل منوی کشویی */
.cv-one-yourmenu {
    border: 2px solid #fff;
    border-radius: 5px;
    width: 170px;
    background: #966F33;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.cv-one-yourmenu.cv-active {
    opacity: 1;
    height: 100px;
}

.cv-one-yournavbar li {
    list-style: none;
}

.cv-one-yournavbar li a {
    display: block;
    padding: 12px;
    color: #fff;
    text-decoration: none;
}

.cv-one-yournavbar li a:hover {
    background: gold;
}

.cv-one-yourmenu li {
    font-size: 15px;
    height: 50px;
}

/* 📱 موبایل کوچک */
@media only screen and (max-width: 420px) {
    #cv-one-yourmenu {
        position: fixed;
        bottom: 370px;
        right: 120px;
        z-index: 1000;
    }

    .cv-icon-bar-vertical-sticky {
        position: fixed;
        bottom: 250px;
        right: 10px;
        margin: auto;
        width: 90px;
        gap: 30px !important;
        z-index: 1000;
    }

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

    .cv-icon-bar-vertical-sticky button i {
        font-size: 36px;
    }
}

/* 📱 تبلت */
@media screen and (min-width: 421px) and (max-width: 900px) {
    #cv-one-yourmenu {
        position: fixed;
        bottom: 370px;
        right: 120px;
        z-index: 1000;
    }

    .cv-icon-bar-vertical-sticky {
        position: fixed !important;
        right: 10px !important;
        bottom: 50% !important;
        transform: translateY(50%) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 90px !important;
        margin: 0 !important;
        z-index: 1000 !important;
    }

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

    .cv-icon-bar-vertical-sticky button i {
        font-size: 36px;
    }
}

/* 💻 دسکتاپ معمولی */
@media screen and (min-width: 901px) and (max-width: 2000px) {
    #cv-one-yourmenu {
        position: fixed;
        bottom: 370px;
        right: 120px;
        z-index: 1000;
    }

    .cv-icon-bar-vertical-sticky {
        width: 90px;
        position: fixed;
        bottom: 250px;
        right: 10px;
        margin: auto;
        gap: 50px !important;
        z-index: 1000;
    }

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

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

/* 🖥 مانیتورهای خیلی بزرگ */
@media screen and (min-width: 2001px) {
    #cv-one-yourmenu {
        position: fixed;
        bottom: 370px;
        right: 120px;
        z-index: 1000;
    }

    .cv-icon-bar-vertical-sticky {
        width: 90px;
        position: fixed;
        bottom: 250px;
        right: 10px;
        margin: auto;
        gap: 50px !important;
        z-index: 1000;
    }

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

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