/* سيكشن ازرار الاتصال العائمة */
.qtnrctafbe {
    position: fixed;
    left: 16px;
    bottom: 18px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 48px;
    direction: ltr;
}

/* الزر */
.qtnrctafbebtn {
    position: relative;
    display: flex;
    align-items: flex-end;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

/* حاوية الايقونة */
.qtnrctafbeicon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 58px;
    margin-right: -18px;
    color: var(--secondary);
    font-size: 22px;
    font-weight: 900;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--helper) 145%);
    clip-path: polygon(22% 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
    z-index: 2;
}

/* الجزء الاساسي */
.qtnrctafbemain {
    display: flex;
    align-items: center;
    height: 44px;
    min-width: 152px;
    padding: 0 20px 0 32px;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    background-color: var(--secondary);
    border-radius: 0 10px 10px 0;
    transition: color 0.25s ease, background-color 0.25s ease;
    z-index: 1;
}

/* شريط الرقم */
.qtnrctafberibbon {
    position: absolute;
    left: 40px;
    bottom: 100%;
    margin-bottom: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 5px 24px 7px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
    white-space: nowrap;
    background-image: linear-gradient(120deg, var(--primary) 0%, var(--helper) 150%);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%);
    z-index: 3;
}

/* حالة المرور */
.qtnrctafbebtn:hover .qtnrctafbemain {
    color: var(--secondary);
    background-color: var(--primary);
}

/* استجابة الشاشات */
@media (max-width: 480px) {

    .qtnrctafbe {
        gap: 30px;
    }

    .qtnrctafbemain {
        min-width: 128px;
        font-size: 14px;
    }

    .qtnrctafberibbon {
        min-width: 168px;
        font-size: 13px;
    }

}
