/**
 * تنسيقات الميزات التفاعلية للعقارات
 */

/* زر المقارنة العائم */
.compare-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

.compare-floating-btn.show {
    transform: translateY(0);
}

/* تنسيق صفحة المقارنة */
.comparison-table-wrapper {
    direction: rtl;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.1);
}

/* تنسيق أقسام الجولة الافتراضية والفيديو */
.virtual-tour-container,
.property-video-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* تنسيق زر إضافة للمقارنة */
#addToCompare {
    transition: all 0.3s ease;
}

#addToCompare:hover {
    background-color: var(--bs-primary);
    color: white;
}

/* تنسيق عداد المقارنة */
#compareCounter {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bs-danger);
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
