/* ================= HERO WRAPPER ================= */
.reb-hero-section {
    position: relative;
    width: 100%;
}

/* ================= SLIDER ================= */
.reb-slider {
    height: 500px;
    position: relative;
}

.reb-slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(75%);
}

/* ================= SLIDER ARROWS ================= */
.carousel-control-prev,
.carousel-control-next {
    width: 70px !important;
    opacity: 1 !important;
}

.reb-arrow {
    width: 50px;
    height: 50px;
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #e1e1e1;
    background: rgba(255, 255, 255, 0.8);
}

.reb-arrow:hover {
    background: #fff;
    transform: scale(1.12);
}

.reb-arrow i {
    font-size: 20px;
    color: #0d1f2d;
}

/* ================= FLOATING SEARCH BOX ================= */
.reb-search-box-container {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 1150px;
    z-index: 10;
}

.reb-search-box {
    background: #fff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0px 18px 35px rgba(0, 0, 0, 0.15);
    animation: rebFade 0.7s ease-out;
}

@keyframes rebFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= LABEL ================= */
.reb-label {
    font-weight: 700;
    font-size: 14px;
    color: #0d1f2d;
}

/* ================= INPUTS ================= */
.reb-input,
.reb-select {
    border-radius: 10px;
    border: 1px solid #cfd6db;
    padding: 10px 12px;
}

.reb-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%230d1f2d' height='18' viewBox='0 0 20 20' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ================= ROOMS COUNTER ================= */
.reb-room-counter {
    display: flex;
    border: 1px solid #cfd6db;
    border-radius: 10px;
    overflow: hidden;
    height: 44px;
}

.reb-room-counter button {
    width: 47px;
    height: 44px;
    border: none;
    background: #f7f9fc;
    font-size: 19px;
    color: #0d1f2d;
    font-weight: 700;
    cursor: pointer;
}
/* ===== Extra Small (موبايل صغير) ===== */
@media (max-width: 575.98px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

/* ===== Small (موبايل كبير) ===== */
@media (min-width: 576px) and (max-width: 767.98px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

/* ===== Medium (تابلت) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

/* ===== Large (لابتوب صغير) ===== */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

/* ===== Extra Large ===== */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

/* ===== XXL شاشات كبيرة ===== */
@media (min-width: 1400px) {
    .reb-room-counter button {
        width: 157px !important;
    }
}

.reb-room-counter input {
    width: 60px;
    padding: 0;
    margin: 0;
    text-align: center;
    border: none;
    background: #fff;
    font-size: 17px;
    font-weight: 700;
    color: #0d1f2d;
}

/* ================= SEARCH BUTTON ================= */
.reb-search-btn {
    width: 100%;
    height: 46px;
    background: #38c172;
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.25s;
}

.reb-search-btn:hover {
    background: #2fa663;
    transform: translateY(-2px);
}

.reb-btn-col {
    display: flex;
    align-items: flex-end;
}

/* ================= FIX MOBILE FLOATING PROBLEM ================= */

/* Desktop: floating normal */
.reb-search-box-container {
    position: absolute !important;
    bottom: -65px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 88% !important;
    z-index: 10 !important;
}

/* Mobile: remove absolute COMPLETELY */
@media (max-width: 768px) {
    /* تحسين السلايدر للجوال */
    .reb-slider {
        height: 320px !important;
        margin-bottom: 0 !important;
        padding-bottom: 40px !important;
    }

    .reb-slider img {
        height: 320px !important;
        object-fit: cover !important;
        object-position: center !important;
        filter: brightness(70%);
    }

    .reb-search-box-container {
        position: relative !important;
        /* RESET */
        bottom: 0 !important;
        /* no overlap */
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        /* margin-top: 15px !important; */
        /* space below slider */
        padding: 0 14px !important;
        z-index: 5 !important;
        margin-top: -45px;
    }

    .reb-search-box {
        border-radius: 16px !important;
        padding: 22px !important;
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12) !important;
    }

    .reb-slider {
        margin-bottom: 20px !important;
        /* خلي مسافة ثابتة للسلايدر */
    }
}
/* ===== Section Titles ===== */
.dest-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #0d1f2d;
}

.dest-sub {
    text-align: center;
    margin-bottom: 40px;
    color: #777;
    font-size: 15px;
}

.explore-emirates {
    margin-top: 60px;
}

/* ===== GRID LIKE EXPLORIO ===== */
.explorio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== CARD ===== */
.explorio-card {
    width: 93%;
    height: 400px;
    /* نفس طول الكروت في Explorio */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}

/* Image wrapper */
.explorio-img-wrapper {
    width: 100%;
    height: 100%;
}

.explorio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s ease;
}

/* Hover */
.explorio-card:hover .explorio-img {
    transform: scale(1.04);
}

/* ===== Overlay ===== */
.explorio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 18px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.explorio-overlay h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.explorio-overlay p {
    margin: 3px 0 0;
    font-size: 14px;
    opacity: 0.85;
}

/* ===== Responsive ===== */

/* Large tablets (3 per row) */
@media (max-width: 1100px) {
    .explorio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets / small devices (2 per row) */
@media (max-width: 768px) {
    .explorio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .explorio-card {
        height: 220px;
    }
}

/* Mobile (2 per row but smaller height) */
@media (max-width: 480px) {
    .explorio-card {
        height: 200px;
    }
}

/* //header mobile */

/* ===== متغيرات الألوان ===== */
:root {
    --primary: #4eb9f4;
    --primary-dark: #3a8fc4;
    --secondary: #43a047;
    --secondary-dark: #2e7d32;
    --dark: #0d1f2d;
    --light: #f8fafc;
    --gray: #3d4f5f;
    --light-gray: #e0e6ee;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== تصميم القائمة الجوالة المحدث ===== */
.rb-mobile-menu {
    padding: 0;
    background: linear-gradient(135deg, var(--white) 0%, #f9fcff 100%);
    box-shadow: var(--shadow);
}

.rb-mobile-menu .offcanvas-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--light-gray);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.rb-mobile-menu .offcanvas-title {
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-mobile-menu .offcanvas-title i {
    color: var(--primary);
    font-size: 26px;
}

.rb-mobile-menu .btn-close {
    background: none;
    font-size: 18px;
    opacity: 0.7;
    transition: var(--transition);
}

.rb-mobile-menu .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.rb-mobile-menu .offcanvas-body {
    padding: 25px;
}

/* ===== روابط التنقل ===== */
.rb-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.rb-mobile-nav li {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 0.4s ease forwards;
}

.rb-mobile-nav li:nth-child(1) {
    animation-delay: 0.1s;
}

.rb-mobile-nav li:nth-child(2) {
    animation-delay: 0.15s;
}

.rb-mobile-nav li:nth-child(3) {
    animation-delay: 0.2s;
}

.rb-mobile-nav li:nth-child(4) {
    animation-delay: 0.25s;
}

.rb-mobile-nav li:nth-child(5) {
    animation-delay: 0.3s;
}

.rb-mobile-nav li:nth-child(6) {
    animation-delay: 0.35s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rb-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.rb-mobile-nav a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(78, 185, 244, 0.1),
        transparent
    );
    transition: right 0.6s ease;
}

.rb-mobile-nav a:hover::before {
    right: 100%;
}

.rb-mobile-nav a:hover {
    background: rgba(78, 185, 244, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.rb-mobile-nav a i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    transition: var(--transition);
}

.rb-mobile-nav a:hover i {
    color: var(--primary);
}

/* ===== الفواصل ===== */
.rb-divider {
    margin: 25px 0;
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--light-gray),
        transparent
    );
}

/* ===== قسم اللغة ===== */
.rb-mobile-lang label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rb-mobile-lang-options {
    display: flex;
    gap: 10px;
}

.rb-lang-option {
    flex: 1;
}

.rb-lang-option button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 12px;
    background: var(--light);
    border: 1px solid var(--light-gray);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.rb-lang-option.active button {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(78, 185, 244, 0.3);
}

.rb-lang-option button:hover {
    background: rgba(78, 185, 244, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.rb-lang-option.active button:hover {
    background: var(--primary-dark);
}

.rb-lang-option .flag {
    font-size: 18px;
}

/* ===== أزرار CTA ===== */
.rb-list-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(78, 185, 244, 0.2);
}

.rb-list-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(78, 185, 244, 0.4);
}

.rb-login-btn {
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(67, 160, 71, 0.2);
}

.rb-login-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(67, 160, 71, 0.4);
}

/* ===== تأثيرات إضافية ===== */
.offcanvas-backdrop.show {
    opacity: 0.5;
    backdrop-filter: blur(2px);
}

/* ===== تصميم متجاوب ===== */
@media (max-width: 576px) {
    .rb-mobile-menu .offcanvas-body {
        padding: 20px 15px;
    }

    .rb-mobile-lang-options {
        flex-direction: column;
    }
}

/* تنسيق شعار الشركة */
.rb-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* تنسيق زر الإغلاق المخصص */
.rb-close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #6c757d;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rb-close-btn:hover {
    background: rgba(108, 117, 125, 0.1);
    color: #495057;
    transform: rotate(90deg);
}

/* تنسيق الهيدر */
.offcanvas-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e0e6ee;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* تنسيق أزرار المصادقة في نفس الصف */
.rb-auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

/* تنسيق أزرار المستخدم في نفس الصف */
.rb-user-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

/* زر تسجيل الدخول */
.rb-login-btn {
    background: #4eb9f4;
    color: white;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(78, 185, 244, 0.3);
    white-space: nowrap;
}

.rb-login-btn:hover {
    background: #3a8fc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(78, 185, 244, 0.4);
}

/* زر تسجيل حساب جديد */
.rb-register-btn {
    background: #f9a23c;
    color: white;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(249, 162, 60, 0.3);
    white-space: nowrap;
}

.rb-register-btn:hover {
    background: #e8912a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(249, 162, 60, 0.4);
}

/* زر حسابي */
.rb-account-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.rb-account-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(102, 126, 234, 0.4);
}

/* زر تسجيل الخروج */
.rb-logout-btn {
    background: transparent;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid #e9ecef;
    font-size: 14px;
    white-space: nowrap;
}

.rb-logout-btn:hover {
    background: #f8f9fa;
    color: #dc3545;
    border-color: #dc3545;
    transform: translateY(-2px);
}

/* تأثيرات إضافية للزر */
.rb-login-btn,
.rb-register-btn,
.rb-account-btn,
.rb-logout-btn {
    position: relative;
    overflow: hidden;
}

.rb-login-btn::before,
.rb-register-btn::before,
.rb-account-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.rb-login-btn:hover::before,
.rb-register-btn:hover::before,
.rb-account-btn:hover::before {
    left: 100%;
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 576px) {
    .rb-auth-buttons,
    .rb-user-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rb-login-btn,
    .rb-register-btn,
    .rb-account-btn,
    .rb-logout-btn {
        padding: 14px 10px;
        font-size: 15px;
    }
}
/* بديل باستخدام Flexbox */
.rb-auth-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rb-user-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rb-login-btn,
.rb-register-btn,
.rb-account-btn,
.rb-logout-btn {
    flex: 1;
    min-width: 0; /* يمنع التمدد الزائد */
}

/* متغيرات الألوان */
:root {
    --rb-bg: #f8f9fa;
    --rb-border: #e9ecef;
    --rb-dark: #343a40;
    --rb-primary: #4eb9f4;
    --rb-hover: #e9f7fe;
}

/* تنسيق أزرار المستخدم في نفس الصف */
.rb-user-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* زر My Account المخصص */
.rb-account-btn-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--rb-bg);
    border: 1px solid var(--rb-border);
    border-radius: 999px;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.08s ease;
    color: var(--rb-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
}

.rb-account-btn-custom:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    background: var(--rb-hover);
    border-color: var(--rb-primary);
    color: var(--rb-primary);
}

/* الصورة الرمزية للحساب */
.rb-account-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

/* نص الحساب */
.rb-account-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

/* السهم */
.rb-account-arrow {
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.2s ease;
}

.rb-account-btn-custom:hover .rb-account-arrow {
    color: var(--rb-primary);
    transform: translateY(1px);
}

/* زر تسجيل الخروج المخصص */
.rb-logout-btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--rb-bg);
    border: 1px solid var(--rb-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--rb-dark);
    text-decoration: none;
}

.rb-logout-btn-custom:hover {
    background: #f8d7da;
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

/* أزرار المصادقة */
.rb-auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.rb-login-btn {
    background: #4eb9f4;
    color: white;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(78, 185, 244, 0.3);
    white-space: nowrap;
    text-decoration: none;
}

.rb-login-btn:hover {
    background: #3a8fc4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(78, 185, 244, 0.4);
}

.rb-register-btn {
    background: #f9a23c;
    color: white;
    font-weight: 700;
    padding: 12px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(249, 162, 60, 0.3);
    white-space: nowrap;
    text-decoration: none;
}

.rb-register-btn:hover {
    background: #e8912a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(249, 162, 60, 0.4);
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 576px) {
    .rb-auth-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rb-account-text {
        max-width: 80px;
    }

    .rb-login-btn,
    .rb-register-btn {
        padding: 14px 10px;
        font-size: 15px;
    }
}
/* بديل باستخدام Flexbox */
.rb-auth-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rb-user-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.rb-login-btn,
.rb-register-btn,
.rb-account-btn,
.rb-logout-btn {
    flex: 1;
    min-width: 0; /* يمنع التمدد الزائد */
}

/* ===== قسم اللغة - Switch Style ===== */
.rb-mobile-lang label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    color: var(--dark);
}

.rb-lang-switch {
    display: flex;
    background: var(--light);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--light-gray);
}

.rb-lang-option {
    flex: 1;
    position: relative;
}

.rb-lang-option button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.rb-lang-option.active button {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.rb-lang-option .flag {
    font-size: 16px;
}

.reviews-section .nav-btn {
    display: none !important;
}

/* الغلاف اللي جواه الصورة */
.hot-head {
    position: relative;
    overflow: hidden;
}

/* LEFT BADGE */
.hot-badge-left {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 15;
    background: #ff4d00;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

/* FAVORITE BUTTON RIGHT */
.hot-fav-btn {
    position: absolute !important;
    top: 10px;
    right: 10px;
    z-index: 15;
    width: 38px;
    height: 38px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.hot-fav-btn i {
    font-size: 22px;
    color: #777;
}

.hot-fav-btn i.ti-heart-filled {
    color: #28a745 !important;
}
