﻿/* =========================
   BoShamlan – Global Styles (clean)
   ========================= */

/* Colors & radii */
:root {
    --primary: #2f63a6;
    --primary-700: #295796;
    --accent: #203F80;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #ffffff;
    --card: #ffffff;
    --line: #e5e7eb;
    --chip: #f1f5f9;
    --radius: 14px;
}

/* Base reset */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    font-family: "Cairo",system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Kufi Arabic",sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    width: 100%;
}
input[type]::placeholder {
    font-family: "Cairo",system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Kufi Arabic",sans-serif;
}
img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* Focus ring */
:where(a,button,[role="button"],select,input,details,summary):focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 16px;
}

/* Layout with Sidebar */
body {
    display: flex;
    min-height: 100vh;
}

.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 210px; /* Space for sidebar */
    transition: margin-right 0.3s ease;
    overflow: hidden;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Sidebar - Desktop: دائماً ظاهرة */
.sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 210px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid var(--line);
    z-index: 1000; /* أعلى من backdrop */
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 8px rgba(0,0,0,0.05);
    transform: translateX(0); /* ظاهرة على سطح المكتب */
    transition: transform 0.3s ease;
}

.sidebar.open {
    transform: translateX(0); /* تظهر عند النقر */
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.sidebar-header .logo {
    height: 50px;
    object-fit: contain;
}

.sidebar-close {
    display: block; /* يظهر على جميع الشاشات */
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.sidebar-close:hover {
    background: var(--chip);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 0;
    overflow-y: auto;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}

.sidebar-item:hover {
    background: var(--chip);
    border-right-color: var(--primary);
    color: var(--primary);
}

.sidebar-item.active {
    background: var(--chip);
    border-right-color: var(--primary);
    color: var(--primary);
}

.sidebar-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.sidebar-cta {
    background: var(--primary);
    color: #fff !important;
    margin: 16px;
    border-radius: 12px;
    border-right: none !important;
}

.sidebar-cta:hover {
    background: var(--primary-700);
    border-right: none !important;
}

.sidebar-dropdown {
    padding: 0;
}

.sidebar-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: inherit;
    cursor: pointer;
    text-align: right;
    transition: all 0.2s;
    border-right: 3px solid transparent;
}

.sidebar-dropdown-trigger:hover {
    background: var(--chip);
    border-right-color: var(--primary);
    color: var(--primary);
}

.sidebar-dropdown-trigger svg {
    margin-right: auto;
    transition: transform 0.2s;
}

.sidebar-dropdown-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    display: none;
    padding: 8px 0;
    background: var(--chip);
}

.sidebar-dropdown-menu.open {
    display: block;
}

.sidebar-dropdown-menu a {
    display: block;
    padding: 10px 20px 10px 40px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
}

.sidebar-dropdown-menu a:hover {
    background: rgba(255,255,255,0.5);
    color: var(--primary);
}

/* Topbar (simplified) */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.topbar-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    height: 82px;
}

.topbar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.main-content {
    flex: 1;
    padding: 0;
    overflow: scroll;
}

/* Search Results Layout - 3 Columns */
.search-results-layout {
    display: flex;
    height: 100vh;
    overflow: scroll;
    overflow-x: scroll;
    width: 100%;
}

/* ========== Desktop Styles ========== */
@media (min-width: 1025px) {
    /* Desktop: القائمة الجانبية دائماً ظاهرة */
    .sidebar {
        transform: translateX(0) !important; /* دائماً ظاهرة على سطح المكتب */
    }

    /* Desktop: إخفاء الـ backdrop */
    .backdrop {
        display: none !important;
    }

    /* Desktop: إخفاء زر الإغلاق في القائمة */
    .sidebar-close {
        display: none !important;
    }

    /* Desktop: إظهار بوكس البحث والنتائج جنباً إلى جنب */
    .search-box {
        display: block !important;
        width: 500px;
        min-width: 500px;
        max-width: 500px;
        position: relative !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 7px 7px;
        border-left: 1px solid var(--line);
        border-right: none;
        box-shadow: none;
        z-index: 99 !important;
    }
    
    /* على الديسكتوب: search-box.open لا يغير transform */
    .search-box.open {
        transform: none !important;
    }

    .search-box2 {
        flex: 1;
        max-width: none;
        margin: 0;
        margin-top: 0; /* يبدأ مباشرة تحت الـ chat */
        text-align: center;
        padding: 25px;
        padding-top: 0; /* بدون padding في الأعلى */
        position: relative;
        z-index: 99;
        background: var(--bg);
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 82px); /* ناقص ارتفاع الـ topbar */
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* على الديسكتوب: إخفاء toggle button و overlay */
    .search-toggle-btn {
        display: none !important;
    }

    .search-overlay {
        display: none !important;
    }

    .search-close-btn,
    #searchCloseBtnInside {
        display: none !important;
    }

    /* تعديل التخطيط على Desktop - البحث والنتائج */
    .search-results-layout {
        display: flex;
        height: 100vh;
        overflow: hidden;
        overflow-x: hidden;
        width: 100%;
    }
}

/* Default styles for search-box (Desktop) */
.search-box {
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    margin: 0;
    text-align: center;
    
    position: relative;
    z-index: 99;
    background: #fff;
    border-left: 1px solid var(--line);
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
}

/* تقليل الـ padding الرأسي للعنوان */
.search-box h2 {
    margin-top: 0px;
    margin-bottom: 8px;
    padding: 0;
}

.search-box2 {
    flex: 1;
    max-width: none;
    margin: 0;
    margin-top: 0;
    text-align: center;
    padding: 25px;
    padding-top: 0; /* يبدأ مباشرة تحت الـ chat */
    position: relative;
    z-index: 99;
    background: var(--bg);
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 82px); /* ناقص ارتفاع الـ topbar */
    display: flex;
    flex-direction: column;
    width: 100%;
}

#listings-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

#pagination-container {
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 10;
    background-color: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 20px 10px;
}

#pagination-container[style*="display: block"] {
    display: block !important;
}

#pagination-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    min-height: 44px;
    margin: 20px 0;
}

.pagination-btn {
    padding: 10px 16px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    cursor: pointer;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled) {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 102, 194, 0.3);
}

.pagination-btn.active {
    background: #0a66c2;
    color: white;
    border-color: #0a66c2;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(10, 102, 194, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.pagination-ellipsis {
    padding: 10px 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

#pagination-info {
    margin-bottom: 15px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

/* مؤشر التحميل للتمرير اللانهائي */
.infinite-loader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    color: #6b7280;
    font-size: 0.95rem;
}

.infinite-loader .loader-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e7eb;
    border-top-color: #0a66c2;
    border-radius: 50%;
    animation: infiniteLoaderSpin 0.8s linear infinite;
}

.infinite-loader .loader-text {
    font-weight: 600;
}

@keyframes infiniteLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile & Tablet: Hide sidebar, show hamburger */
@media (max-width: 1024px) {
    .main-wrapper {
        margin-right: 0;
    }

    /* على الموبايل: القائمة مخفية افتراضياً */
    .sidebar {
        transform: translateX(100%); /* مخفية على الموبايل */
        transition: transform 0.3s ease;
    }

    .sidebar.open {
        transform: translateX(0); /* تظهر عند النقر */
    }

    .sidebar-close {
        display: block;
    }

    /* على الموبايل: إظهار زر الهامبرجر */
    .hamburger {
        display: inline-grid;
    }

    .backdrop.show {
        opacity: 1;
    }

    /* Mobile: Stack search and results vertically */
    .search-results-layout {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        position: relative;
    }

    /* ========== Mobile Search Styles ========== */
    
    /* Toggle Button للموبايل */
    .search-toggle-btn {
        display: flex !important;
        align-items: center;
        gap: 8px;
        position: fixed;
        top: 10px;
        left:  5px;
        z-index: 10001;
        background: #0a66c2;
        color: white;
        border: none;
        padding: 12px 10px;
        border-radius: 15px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
        transition: all 0.3s ease;
    }

    .search-toggle-btn:hover {
        background: #095195;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(10, 102, 194, 0.4);
    }

    .search-toggle-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Overlay للموبايل */
    .search-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .search-overlay.show {
        display: block;
        opacity: 1;
    }

    /* بوكس البحث كـ Drawer على الموبايل */
    .search-box {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 85% !important;
        max-width: 400px !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 9999 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15) !important;
        border-left: none !important;
        border-right: 1px solid var(--line) !important;
        padding: 30px 20px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .search-box.open {
        transform: translateX(0) !important;
    }

    /* زر الإغلاق */
    .search-close-btn,
    #searchCloseBtnInside {
        display: none !important;
    }
    
    .search-box.open #searchCloseBtnInside {
        display: flex !important;
        position: absolute;
        top: 15px;
        
        background: #f3f4f6;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10000;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        right:10px;
    }

    .search-box.open #searchCloseBtnInside:hover {
        background: #e5e7eb;
        transform: rotate(90deg);
    }

    .search-box.open #searchCloseBtnInside svg {
        width: 20px;
        height: 20px;
        color: #374151;
    }

    .search-box h2 {
        font-size: 18px;
        margin-bottom: 8px;
        margin-top: 8px;
        padding: 0;
    }

    .search-box2 {
        height: auto;
        min-height: 40vh;
        padding: 15px;
        width: 100%;
        margin-top: 0;
    }

    #listings-container {
        width: 100%;
    }

    /* تحسين البطاقات على الموبايل */
    .post-card {
        padding: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .post-card-content {
        flex-direction: column !important; /* رأسي على الموبايل */
        gap: 12px;
    }

    .post-card-image {
        width: 100% !important;
        height: 250px !important;
        order: -1 !important; /* الصورة في الأعلى على الموبايل */
        border-radius: 10px;
        flex: 0 0 auto !important;
    }

    .post-card-info {
        width: 100%;
    }
    
    /* على الموبايل: البيانات رأسية */
    .post-card-info .info-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    .post-card-info .info-row-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }
    
    .post-card-info .price-col {
        text-align: right !important;
        width: 100%;
    }
    
    /* على الموبايل: معلومات العقار في صفين */
    .post-card-info .info-row-compact {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        row-gap: 8px;
    }
    
    .post-card-info .info-col-compact {
        font-size: 0.85rem !important;
    }

    .post-card-info .info-row {
        gap: 10px;
        font-size: 12px;
    }

    .post-card-info .info-icon {
        font-size: 14px;
    }

    .post-card-info .info-text {
        font-size: 12px;
    }

    .post-card .title {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .post-card .meta {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 8px;
    }

    .post-card .price {
        font-size: 1rem;
    }

    .post-card .desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        line-height: 1.5;
    }

    /* تحسين المعلومات الإضافية على الموبايل */
    .post-card .content > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 8px !important;
        padding: 10px !important;
    }

    .post-card .content > div[style*="display: flex"] > div {
        font-size: 12px !important;
        padding: 4px 0;
    }

    /* تحسين الأزرار على الموبايل */
    .post-card .import-btn {
        width: 100%;
        margin: 10px 0 0 0 !important;
        padding: 10px !important;
        font-size: 13px !important;
        align-self: stretch !important;
    }

    /* تحسين تخطيط البطاقة على الموبايل */
    .post-card > div[onclick] {
        flex-direction: column !important;
        width: 100%;
    }

    /* تحسين الحقول على الموبايل */
    .form-group {
        margin-bottom: 15px;
    }

    .tag-box {
        padding: 12px 15px;
    }

    /* تحسين الـ range slider على الموبايل */
    .range-container {
        padding: 15px 10px;
    }

    .range-slider-wrapper {
        margin: 20px 0;
    }

    /* تحسين textbox السعر على الموبايل */
    .search-box > div[style*="direction: rtl"] {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .search-box > div[style*="direction: rtl"] > label {
        font-size: 13px !important;
        margin-bottom: 4px;
    }

    .search-box input[type="number"]#minPriceInput,
    .search-box input[type="number"]#maxPriceInput {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 12px !important;
        font-size: 15px !important;
    }

    /* تحسين التبويبات على الموبايل */
    .tabs {
        grid-template-columns: repeat(2, 1fr); /* عمودان على الموبايل */
        gap: 8px;
    }

    .tabs .tab {
        min-width: 0;
    }

    .tabs button {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* تحسين الـ topbar على الموبايل */
    .topbar-content {
        padding: 12px 16px;
        height: auto;
        min-height: 60px;
    }

    .topbar-title {
        font-size: 0.8rem;
    }
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .search-box {
        padding: 60px;
    }

    .search-box h2 {
        font-size: 14px;
    }

    .search-box2 {
        padding: 11px;
    }

    .post-card {
        padding: 12px;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .post-card .thumb {
        height: 180px;
    }

    .post-card .title {
        font-size: 1rem;
    }

    .post-card .price {
        font-size: 0.95rem;
    }

    .tag-box {
        padding: 10px 12px;
        font-size: 14px;
    }

    .range-container {
        padding: 12px 8px;
    }

    /* تحسين المعلومات الإضافية على الشاشات الصغيرة */
    .post-card .content > div[style*="display: flex"] {
        padding: 8px !important;
    }

    .post-card .content > div[style*="display: flex"] > div {
        font-size: 11px !important;
    }
}

/* Legacy nav styles (kept for compatibility) */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 72px;
}

.nav-right, .nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #334155;
    font-weight: 700;
}

    .nav-links a {
        opacity: .9;
    }

        .nav-links a:hover {
            opacity: 1;
        }

/* Language btn */
.lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

/* Post pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    transition: .2s;
}

    .pill:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,.06);
    }

.plus {
    display: inline-grid; /* inline عشان يمشي مع النص داخل الـpill */
    place-items: center; /* يوسّط أفقياً ورأسياً */
    width: 22px;
    aspect-ratio: 1 / 1; /* دائرة مثالية */
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    font-size: 18px; /* عدّلها حسب المقاس اللي تحبه */
    line-height: 1; /* مهم: بلاش 22px عشان ما يزق الرمز لفوق/تحت */
    vertical-align: middle; /* يضبط محاذاته مع النص المجاور */
    padding: 0; /* علشان ما يغيّرش الأبعاد */
}


/* Hamburger (big) - مخفي على سطح المكتب */
.hamburger {
    display: none; /* مخفي على سطح المكتب */
    place-items: center;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .hamburger:focus {
        outline: 2px solid var(--accent);
        outline-offset: 2px;
    }

    .hamburger:hover {
        background: var(--chip);
        border-color: var(--primary);
    }

    .hamburger:active {
        transform: scale(0.95);
    }

/* Backdrop */
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,23,42,.45);
    backdrop-filter: saturate(1.2) blur(1px);
    z-index: 90; /* أقل من sidebar */
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none; /* لا يمنع النقر عندما يكون مخفياً */
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto; /* يسمح بالنقر عندما يكون ظاهراً */
    display: block !important;
}

/* Drawer (opens from right) */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    transform: translateX(100%);
    width: 320px;
    max-width: 86vw;
    background: #fff;
    border-inline-start: 1px solid var(--line);
    z-index: 160;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    top: 0px; /* تحت التوب بار */
}

    .drawer.open {
        transform: translateX(0);
    }

 

   
    

/* هيدر الدروَر: العناصر كلها على اليمين */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* يرصهم يمين */
    gap: 8px; /* مسافة بسيطة بين ✕ واللوجو */
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

    /* ترتيب واضح: ✕ ثم اللوجو */
    .drawer-header .icon-btn {
        order: 2;
    }

    .drawer-header .logo {
        order:1;
       
        height: 60px;
        padding:10px;
        margin:auto;
        object-fit: contain;
        border-radius: 8px; /* اختياري */
    }
    /* زر الإغلاق أقصى يمين */
    .drawer-header .drawer-brand {
        order: 2;
        display: flex;
        align-items: center;
        gap: 8px;
    }
/* موبايل: صغّر اللوجو شوية */
@media (max-width: 1024px) {
    .drawer-header .logo {
        
        height: 66px;
    }
}



/* تصغير النصوص في الموبايل لتفضل جنب ✕ بدون زحمة */
@media (max-width: 1024px) {
    .drawer-brand h2,
    .drawer-brand .badge {
        display: none;
    }

    .drawer-brand img {
        width: 36px;
        height: 36px;
    }
}

.icon-btn {
    border: none;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .drawer-brand img {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

.badge {
    display: inline-block;
    background: var(--chip);
    color: #475569;
    padding: 2px 8px;
    border-radius: 999px;
}

.drawer-nav {
    padding: 12px;
}

    .drawer-nav .item {
        display: block;
        padding: 14px 12px;
        border-radius: 12px;
        color: #0f172a;
        font-weight: 800;
    }

        .drawer-nav .item:hover {
            background: #f8fafc;
        }

        .drawer-nav .item.active {
            background: #eff6ff;
            color: #1d4ed8;
        }

    .drawer-nav .details {
        padding: 0 6px;
    }

        .drawer-nav .details summary {
            cursor: pointer;
            padding: 12px;
            border-radius: 12px;
            font-weight: 800;
            list-style: none;
        }

        .drawer-nav .details[open] summary {
            background: #f8fafc;
        }

    .drawer-nav .sub {
        display: grid;
        gap: 6px;
        padding: 8px 14px 14px;
    }

.cta-free {
    margin-top: 6px;
    background: #eef2ff;
}

.drawer-footer {
    margin-top: auto;
    padding: 16px;
    border-top: 1px solid var(--line);
}

    .drawer-footer .social {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .drawer-footer .sm {
        padding: 6px 10px;
    }
.bighero {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hero */
.hero {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .hero .wrap {
        padding: 56px 0 48px;
    }

    .hero h1 {
        margin: 0 0 8px;
        font-size: 25px;
        line-height: 1.2;
        text-align: center;
    }

    .hero p {
        margin: 0 0 26px;
        text-align: center;
        color: var(--muted);
        font-size: 15px;
    }

/* Search card */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(31,41,55,0.06);
    max-width: 930px;
    margin: 0 auto;
}

    .card .row {
        display: flex;
        gap: 10px;
        padding: 10px;
        flex-wrap: wrap;
    }

.field {
    position: relative;
    flex: 1 1 260px;
}

.input, .select {
    width: 100%;
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-size: 16px;
    color: var(--text);
}

    .input::placeholder {
        color: #9ca3af;
    }

/* icons inside fields */
.field .icon {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #64748b;
    pointer-events: none;
}

.field.icon-start .input, .field.icon-start .select {
    padding-inline-start: 44px;
}

/* custom chevron */
.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
}

.field .chev {
    position: absolute;
    inset-inline-start: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
}

    .field .chev::after {
        content: "▾";
        font-size: 18px;
        line-height: 1;
    }
 
.tabscontainer {
    margin: 14px auto 0;
    border: 1px solid #EEEEEE;
    border-radius: 25px;
    padding: 4px;
    width: 100%;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 أعمدة */
    gap: 8px; /* مسافة بسيطة بينهم */
    width: 100%;
}

.tab {
    padding: 6px 0;
    text-align: center;
    border: none;
    border-radius: 999px;
    background: #f8fafc;
    color: #334155;
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s, color 0.2s;
    min-width: 0; /* يسمح بالتصغير */
}

    .tab.focus, .tab.active {
        background: var(--primary);
        color: #fff;
        border-color: #fff;
        box-shadow: 0 2px 0 rgba(47,99,166,.15) inset;
        border-radius: 999px;
    }

/* Radio Buttons للبحث */
.search-source-radio {
    position: relative;
}

.search-source-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.search-source-radio .radio-button-label {
    display: block;
    cursor: pointer;
    user-select: none;
}

.search-source-radio:hover .radio-button-label {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-source-radio input[type="radio"]:checked + .radio-button-label {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.search-source-radio input[type="radio"]:checked + .radio-button-label:active {
    transform: translateY(0);
}

/* CTA */
.cta {
    display: block;
    
     width: 100%;
    margin: 22px auto 0;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
     
    transition: .2s;
}

    .cta:hover {
        background: var(--primary-700);
    }

/* Skyline */
.skyline {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1;
    pointer-events: none;
}

    .skyline img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .8;
    }

/* Desktop logo sizing */
.nav-right .logo,
.nav-right > img {
    height: 60px;
    width: auto;
    object-fit: contain;
    padding: 5px;
}

/* =========================
   Responsive (<= 900px)
   ========================= */
@media (max-width: 1024px) {
    .nav {
        position: relative;
        justify-content: center;
    }
    /* اللوجو في النص */
    .nav-left {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 12px;
    }

    .hamburger {
        display: inline-grid;
        place-items: center;
    }

    /* اللوجو في الوسط */
    .nav-right {
        flex: 0 0 auto;
    }

        .nav-right .logo,
        .nav-right > img {
            margin: 0 auto;
            height: 36px;
            padding: 0;
        }

    /* تقليل الزحمة */
    .nav-links, .lang, .pill {
        display: none;
    }

    /* Drawer header: اخفاء النصوص جنب اللوجو للموبايل */
    .drawer-brand h2, .drawer-brand .badge {
        display: none;
    }

    .drawer-brand img {
        width: 36px;
        height: 36px;
    }
}
/* .search-box and .search-box2 are now defined in the 3-column layout section above */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
}

.options {
    display: flex;
    justify-content: space-around;
}

    .options button {
        flex: 1;
        margin: 0 5px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #f8f9fa;
        cursor: pointer;
    }

.btn-search {
    width: 100%;
    padding: 14px;
    background: #2266cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}
/* الصندوق اللي جوّه التاجات والإنبوت */
.tag-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 25px;
    min-height: 45px;
    background: #fff;
    /* مساحة للأيقونة على الشمال */
    padding-left: 38px; /* مهم علشان ما تتغطّاش الأيقونة */
}
.form-group.options,
.btn-search {
    position: relative;
    z-index: 1; /* أقل من الليست */
}

/* أيقونة البحث على الشمال */
.search-icon {
    position: absolute;
    left: 12px; /* على الشمال */
    top: 60%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none; /* ما تمنعش الضغط داخل الصندوق */
}

/* الإنبت جوه الصندوق */
.tag-box input {
    border: none;
    outline: none;
    flex: 1 0 160px;
    min-width: 140px;
    background: transparent;
    font-size: 14px;
}
.tag-box:has(input:focus) .search-icon {
    color: #2266cc;
}
.custom-dropdown {
    position: relative;
    width: 100%;
    
    font-family: "Cairo", sans-serif;
    direction: rtl; /* يمين لليسار */
}

.dropdown-btn {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 50px; /* حواف دائرية */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #2f3b52;
    cursor: pointer;
}

    .dropdown-btn .arrow {
        font-size: 12px;
        color: #2f3b52;
    }

 

/* لو عايز الأيقونة كإيموجي بدل SVG
.search-icon{ font-size:18px; } */


    .tag-input

{
    display: flex;
    flex-wrap: wrap; /* اسمح ينزلوا أسطر */
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 25px; /* أو 25px لو عايزها كابسولة */
    min-height: 45px;
    max-height: 120px; /* حد أقصى للارتفاع */
    overflow-y: auto; /* Scroll رأسي */
    overflow-x: hidden; /* امنع الأفقي */
    background: #fff;
    /* تنسيق الاسكرول (اختياري) */
    scrollbar-width: thin;
    scrollbar-color: #bbb #f1f1f1;
}

.tag-input::-webkit-scrollbar {
    width: 8px;
}

.tag-input::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 8px;
}

.tag-input::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 8px;
}

    .tag-input::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

/* الـ input جوه التاجات */
.tag-input input {
    border: none;
    outline: none;
    flex: 1 0 160px; /* ياخد سطر لو المساحة ضاقت */
    min-width: 140px;
    background: transparent;
    font-size: 14px;
}


/* التاج */
.tag {
  background: #007bff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 25px;   /* الشكل الكابسولة */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;   /* ميكسرش النص */
}

.tag .remove-tag {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}

 
.dropdown {
    position: relative;
    width: 100%;
    font-family: "Cairo", sans-serif;
    direction: rtl; /* للغة العربية */
}

/* شكل الزرار */
.dropdown-select {
    padding:10px 15px;
    border: 1px solid #ccc;
    border-radius: 50px; /* نفس الشكل المدور */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #2f3b52;
    font-size: 15px;
}

    .dropdown-select .arrow {
        font-size: 12px;
        transition: transform 0.2s;
    }

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 9999 !important;
    /* بدلاً من display:none */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

    /* لما تبقى مفتوحة */
    .dropdown-list.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
.dropdown-field {
    position: relative;
}
#list-region {
    z-index: 9999;
}
.region-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: #fff;
    z-index: 99999; /* أعلى من أي زر أو فورم */

    margin-top: 10px;
    padding: 6px;
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

    .region-list.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity .22s ease, transform .22s ease, visibility 0s;
    }

.region-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
}

    .region-item:hover {
        background: #f7f9fc;
    }

    .region-item .info {
        display: flex;
        align-items: center;
        gap: 8px;
    }


.slider-container {
    z-index: 10;
    position: relative;
}

/* --- Price Dual Range --- */
.range-group {
    margin: 20px 0;
    text-align: center;
}

.range-label {
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
    color: #334155;
}

.range-values {
    font-weight: bold;
    color: var(--primary);
    margin-top: 8px;
    display: block;
    font-size: 16px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 44px;
    direction: ltr; /* مهم جداً مع صفحات RTL */
}

    .slider-container::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 6px;
        background: #e5e7eb;
        border-radius: 3px;
        z-index: 1;
    }

/* الشريط بين الحدين */
.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    z-index: 2;
    left: 0;
    width: 0;
}

/* مدخلَي الرينج فوق الشريط */
input[type="range"].dual {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    background: transparent;
    outline: none;
    border: 0;
    pointer-events: none; /* نخلي التراك مش قابل للنقر */
    z-index: 3; /* thumbs فوق */
    touch-action: none; /* أفضل تفاعل على الموبايل */
}

    /* WebKit thumb */
    input[type="range"].dual::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary);
        border: 0;
        cursor: pointer;
        pointer-events: auto; /* نفعّل السحب على الإبهام */
    }

    input[type="range"].dual::-webkit-slider-runnable-track {
        height: 6px;
        background: transparent;
    }

    /* Firefox thumb */
    input[type="range"].dual::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary);
        border: 0;
        cursor: pointer;
        pointer-events: auto;
    }

    input[type="range"].dual::-moz-range-track {
        height: 6px;
        background: transparent;
    }

    /* فوكس واضح */
    input[type="range"].dual:focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 4px;
    }
/* Thumb الأدنى */
#minPrice.dual::-webkit-slider-thumb {
    background: #22c55e; /* أخضر */
}

#minPrice.dual::-moz-range-thumb {
    background: #22c55e;
}

/* Thumb الأعلى */
#maxPrice.dual::-webkit-slider-thumb {
    background: #ef4444; /* أحمر */
}

#maxPrice.dual::-moz-range-thumb {
    background: #ef4444;
}
/* الإبهام الأخضر (الحد الأدنى) */
input[type="range"].dual.min::-webkit-slider-thumb {
    background: #16a34a; /* أخضر */
}

input[type="range"].dual.min::-moz-range-thumb {
    background: #16a34a;
}

/* الإبهام الأحمر (الحد الأعلى) */
input[type="range"].dual.max::-webkit-slider-thumb {
    background: #dc2626; /* أحمر */
}

input[type="range"].dual.max::-moz-range-thumb {
    background: #dc2626;
}

/* اللابيل فوق كل إبهام */
.thumb-label {
    position: absolute;
    top: -35px; /* فوق التراك */
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    white-space: nowrap;
    pointer-events: none;
}

/* النص تحت الإبهام */
.thumb-text {
    position: absolute;
    top: 28px; /* تحت التراك */
    transform: translateX(-50%);
    font-size: 12px;
    color: #444;
    font-weight: 700;
    pointer-events: none;
}

@media (max-width: 600px) {
    .search-box h2 {
        font-size: 16px;
    }
}


:root {
    --card-bg: #f8eff1; /* الخلفية الوردية */
    --card-stroke: #e7dfe2; /* لون الإطار الخفيف */
    --card-shadow: rgba(0,0,0,.06);
    --title: #0b1426;
    --muted: #6b7280; /* نص ثانوي */
    --price: #0a66c2; /* الأزرق للسعر */
    --featured: #e11d48; /* أحمر "مميز" */
}

/* الحاوية */
.post-card {
    position: relative;
    
    border: 1px solid #e5e7eb; /* بدون border */
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* ظل خفيف */
    margin-top: 20px;
    margin-bottom: 20px;
    direction: rtl;
    transition: all 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* المحتوى الرئيسي: على الديسكتوب أفقي (صورة على اليمين، معلومات على اليسار) */
.post-card-content {
    display: flex;
    flex-direction: row-reverse; /* صورة على اليمين، معلومات على اليسار */
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

/* الصورة على اليمين (على الديسكتوب) */
.post-card-image {
    position: relative;
    flex: 0 0 280px; /* عرض ثابت للصورة */
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a5f3f; /* خلفية خضراء داكنة */
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex-shrink: 0;
    order: 2; /* الصورة على اليمين */
}

/* شارة "مميز" حمراء - يتم إضافتها عبر HTML */
.post-card-image .featured-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626; /* أحمر */
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: rotate(-5deg); /* دوران بسيط */
}

/* المعلومات على اليسار (على الديسكتوب) */
.post-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0; /* للسماح بالتقليص */
}

/* كل صف من المعلومات */
.post-card-info .info-row {
    display: flex;
    flex-direction: row; /* أفقي على الديسكتوب */
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
}

/* صف المكتب والسعر (تحت الوصف) */
.post-card-info .info-row-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.post-card-info .info-col-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.post-card-info .price-col {
    flex: 0 0 auto;
    text-align: left;
}

.post-card-info .info-row-columns {
    flex-wrap: wrap;
    gap: 12px;
}

/* صف المعلومات المدمج (سطر واحد على الديسكتوب) */
.post-card-info .info-row-compact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 0;
}

/* كل عمود في الصف */
.post-card-info .info-col {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

/* عمود في الصف المدمج */
.post-card-info .info-col-compact {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.9rem;
}

.post-card-info .info-icon {
    font-size: 16px;
    color: #6b7280;
}

.post-card-info .info-text {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* صف الأزرار */
.post-card-actions {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

/* العنوان */
.post-card .title {
    margin: 0;
    font-weight: 800;
    color: #111827;
    text-align: right;
    font-size: 14px;
    line-height: 1.7;
}

/* السعر */
.post-card .price {
    color: #0a66c2;
    font-weight: 900;
    font-size: 1.15rem;
}

/* الوقت */
.post-card time {
    color: #6b7280;
    font-size: 0.9rem;
}

/* الوصف */
.post-card .desc {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    text-align: right;
}

    /* شارة "مميز" مع الذيل */
    .post-card .featured {
        position: absolute;
        top: -10px;
        inset-inline-end: 12px;
        background: var(--featured);
        color: #fff;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 8px;
    }

        .post-card .featured::after {
            content: "";
            position: absolute;
            inset-inline-end: 6px;
            bottom: -6px;
            border-width: 6px 6px 0 6px;
            border-style: solid;
            border-color: var(--featured) transparent transparent transparent;
        }

/* استجابة بسيطة */
@media (min-width: 1024px) {
    .post-card {
        padding: 16px 18px;
        border-radius: 16px;
    }

        .post-card .thumb {
            flex-basis: 110px;
            height: 110px;
        }
}
.prop-nav {
    position: relative;
    display: inline-block;
}

.prop-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #0b1727;
    font-weight: 800;
    padding: 8px 6px;
    border-radius: 10px;
}

    .prop-trigger:focus {
        outline: 2px solid #dbeafe;
        outline-offset: 2px;
    }

.prop-menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    width: 280px;
    max-height: 75vh;
    overflow: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
    transition: .18s ease;
    padding: 10px;
    z-index: 50;
}

    .prop-menu.open {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

.menu-section {
    padding: 6px 6px 2px;
}

.menu-title {
    font-weight: 800;
    color: #1f2a3a;
    margin: 4px 6px 8px;
}

.menu-item {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    font-weight: 400;
}

    .menu-item:hover {
        background: #f1f5f9;
        color: #0f172a;
    }

.prop-menu hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin: 8px 6px;
}

@media (max-width:480px) {
    .prop-menu {
        width: 88vw;
        inset-inline-start: 50%;
        transform: translate(-50%,6px) scale(.98);
    }

        .prop-menu.open {
            transform: translate(-50%,0) scale(1);
        }
}
