/* تنسيقات زر التقييم المنبثق */
.floating-rate-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

html[dir="rtl"] .floating-rate-btn {
    left: 30px;
    right: auto;
}

.floating-rate-btn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e4b95b;
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-rate-btn a:hover {
    background-color: #d4a94a;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.floating-rate-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.floating-rate-btn span {
    font-size: 12px;
    font-weight: bold;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
}