/* =========================================
   الخطوط والإعدادات الأساسية (Base & Reset)
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
    --primary-color: #1A1A24;    /* لون داكن جداً للفخامة */
    --accent-color: #E63946;     /* أحمر رياضي */
    --accent-hover: #D62828;
    --bg-color: #F4F6F9;         /* رمادي فاتح جداً للخلفية */
    --card-bg: #FFFFFF;
    --text-dark: #2B2D42;
    --text-gray: #8D99AE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   التأثير الزجاجي (Glassmorphism)
========================================= */
.glass-effect, .glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* =========================================
   شريط التنقل العلوي (Navbar)
========================================= */
.navbar {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo h1 { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; }
.logo span { color: var(--accent-color); }

.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-item::after {
    content: ''; position: absolute; bottom: -5px; right: 0;
    width: 0; height: 3px; background-color: var(--accent-color);
    transition: width 0.3s ease;
}
html[dir="ltr"] .nav-item::after { right: auto; left: 0; }
.nav-item:hover::after, .nav-item.active::after { width: 100%; }

.lang-btn {
    cursor: pointer; background: rgba(255,255,255,0.1);
    padding: 8px 15px; border-radius: 5px; font-weight: 600;
    transition: background 0.3s;
}
.lang-btn:hover { background: rgba(255, 255, 255, 0.2); }

.logout-btn {
    background: rgba(255,255,255,0.1); padding: 8px 15px;
    border-radius: 5px; cursor: pointer; transition: background 0.3s; color: #ff4d4d;
}
.logout-btn:hover { background: rgba(255, 77, 77, 0.2); }

/* =========================================
   السلايدر (Hero Slider)
========================================= */
.hero-slider { position: relative; height: 500px; overflow: hidden; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.8s ease-in-out;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.slide::before {
    content: ''; position: absolute; top:0; left:0; right:0; bottom:0;
    background: rgba(26, 26, 36, 0.6);
}
.slide.active { opacity: 1; z-index: 1; }

.slide-content {
    position: relative; z-index: 2; color: white;
    transform: translateY(20px); transition: transform 0.8s ease;
}
.slide.active .slide-content { transform: translateY(0); }
.slide-content h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.slide-content p { font-size: 1.5rem; color: #e0e0e0; }

.slider-controls {
    position: absolute; top: 50%; width: 100%; display: flex;
    justify-content: space-between; padding: 0 30px; z-index: 5; transform: translateY(-50%);
}
.slider-controls button {
    background: rgba(255,255,255,0.2); border: none; color: white; font-size: 1.5rem;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer; backdrop-filter: blur(5px);
    transition: background 0.3s;
}
.slider-controls button:hover { background: var(--accent-color); }

/* =========================================
   فلاتر البحث (Search Filters)
========================================= */
.search-filters {
    background: var(--card-bg); padding: 20px 30px; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; gap: 20px;
    transform: translateY(-40px); position: relative; z-index: 10;
}
.filter-group {
    flex: 1; display: flex; align-items: center; background: var(--bg-color);
    padding: 0 15px; border-radius: 8px; border: 1px solid #e1e5ee;
}
.filter-group i { color: var(--accent-color); margin-left: 10px; }
html[dir="ltr"] .filter-group i { margin-left: 0; margin-right: 10px; }
.filter-group select {
    width: 100%; padding: 15px 0; border: none; background: transparent;
    outline: none; font-size: 1rem; font-family: inherit; color: var(--text-dark);
}
.btn-search {
    background: var(--accent-color); color: white; border: none; padding: 0 40px;
    border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: background 0.3s;
}
.btn-search:hover { background: var(--accent-hover); }

/* =========================================
   معرض السيارات (Cars Grid)
========================================= */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding-bottom: 50px; }
.car-card { background: var(--card-bg); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.car-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.car-badge { position: absolute; top: 15px; right: 15px; background: var(--accent-color); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; z-index: 2; }
html[dir="ltr"] .car-badge { right: auto; left: 15px; }
.car-image { height: 220px; background-size: cover; background-position: center; }
.car-details { padding: 25px; }
.car-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.car-title h3 { font-size: 1.4rem; color: var(--primary-color); }
.car-title .year { background: var(--bg-color); padding: 5px 10px; border-radius: 5px; font-weight: bold; color: var(--text-gray); }
.car-meta { display: flex; gap: 20px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; color: var(--text-gray); font-size: 0.9rem; }
.car-meta i { color: var(--accent-color); margin-left: 5px; }
html[dir="ltr"] .car-meta i { margin-left: 0; margin-right: 5px; }
.price-section { display: flex; justify-content: space-between; align-items: center; }
.prices { display: flex; flex-direction: column; }
.old-price { /*text-decoration: line-through;*/ color: #b2bec3; font-size: 0.9rem; }
.final-price { font-size: 1.4rem; font-weight: 800; color: var(--primary-color); }
.btn-details {
    background: var(--bg-color); color: var(--primary-color); border: none; padding: 10px 20px;
    border-radius: 8px; font-weight: bold; cursor: pointer; transition: all 0.3s; text-align: center; display: inline-block;
}
.btn-details:hover { background: var(--primary-color); color: white; }

/* =========================================
   صفحة التفاصيل (Details Page)
========================================= */
.details-container { padding: 40px 0; }
.btn-back { background: transparent; border: none; color: var(--primary-color); font-size: 1.1rem; font-weight: 700; cursor: pointer; margin-bottom: 25px; display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s; }
.btn-back:hover { color: var(--accent-color); }
.details-layout { display: flex; gap: 30px; align-items: flex-start; }
.car-info-col { flex: 1; width: 65%; }
.booking-col { width: 35%; position: sticky; top: 100px; }

.car-images-gallery { background: var(--card-bg); padding: 15px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); margin-bottom: 30px; }
.main-image { height: 450px; border-radius: 10px; background-size: cover; background-position: center; position: relative; margin-bottom: 15px; transition: background-image 0.4s ease-in-out; }
.status-badge { position: absolute; top: 20px; right: 20px; background: rgba(46, 204, 113, 0.9); color: white; padding: 8px 20px; border-radius: 30px; font-weight: bold; font-size: 0.9rem; backdrop-filter: blur(5px); }
html[dir="ltr"] .status-badge { right: auto; left: 20px; }
.thumbnails { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.thumb { height: 75px; border-radius: 8px; background-size: cover; background-position: center; cursor: pointer; opacity: 0.6; transition: all 0.3s; border: 3px solid transparent; }
.thumb:hover, .thumb.active { opacity: 1; border-color: var(--accent-color); }

.car-full-details { background: var(--card-bg); padding: 35px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.title-header { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.title-header h2 { font-size: 2.2rem; color: var(--primary-color); }
.title-header h2 span { color: var(--text-gray); font-weight: 400; }
.location { color: var(--text-gray); font-size: 1rem; margin-top: 10px; }
.section-block { margin-bottom: 30px; }
.section-block h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.section-block h3 i { color: var(--accent-color); }
.description-text { line-height: 1.8; color: var(--text-gray); font-size: 1.05rem; }

.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.spec-item { display: flex; align-items: center; gap: 15px; background: var(--bg-color); padding: 15px; border-radius: 10px; }
.spec-item .icon { width: 45px; height: 45px; background: rgba(230, 57, 70, 0.1); color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.spec-item .info { display: flex; flex-direction: column; }
.spec-item .info span { font-size: 0.85rem; color: var(--text-gray); }
.spec-item .info strong { font-size: 1rem; color: var(--primary-color); }

.price-header { text-align: center; margin-bottom: 20px; }
.price-header h2 { font-size: 2.5rem; color: var(--primary-color); margin-top: 5px; }
.price-header .currency { font-size: 1rem; color: var(--text-gray); font-weight: 600; }
.divider { border: 0; height: 1px; background: #eee; margin: 25px 0; }
.owner-info h4 { font-size: 1rem; color: var(--text-gray); margin-bottom: 15px; }
.owner-card { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.owner-avatar { width: 50px; height: 50px; background: var(--bg-color); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.owner-details h5 { font-size: 1.1rem; color: var(--primary-color); }
.owner-details p { font-size: 0.85rem; color: var(--text-gray); margin-top: 3px; }
.action-buttons { display: flex; flex-direction: column; gap: 12px; }
.action-buttons button { width: 100%; padding: 15px; border-radius: 8px; font-size: 1.05rem; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; border: none; }
.btn-book { background: var(--primary-color); color: white; }
.btn-book:hover { background: #111119; }
.btn-call { background: var(--bg-color); color: var(--primary-color); border: 1px solid #ddd !important; }
.btn-whatsapp { background: #25D366; color: white; }
.secure-note { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--text-gray); display: flex; align-items: center; justify-content: center; gap: 5px; }
.secure-note i { color: #f1c40f; }

/* =========================================
   صفحة تسجيل الدخول (Login Page)
========================================= */
.login-page {
    display: flex; justify-content: center; align-items: center; min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a5298 100%);
}
.login-lang { position: absolute; top: 20px; right: 30px; }
html[dir="ltr"] .login-lang { right: auto; left: 30px; }
.login-container { width: 100%; max-width: 450px; padding: 20px; }
.login-card { padding: 40px; text-align: center; }
.login-header h1 { font-size: 2.2rem; color: white; margin-bottom: 10px; }
.login-header h1 span { color: var(--accent-color); }
.login-header p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon i { position: absolute; right: 15px; color: var(--text-gray); }
html[dir="ltr"] .input-with-icon i { right: auto; left: 15px; }
.input-with-icon input { width: 100%; padding-right: 40px; }
html[dir="ltr"] .input-with-icon input { padding-right: 15px; padding-left: 40px; }
.login-card .input-box label { color: white; text-align: right; display: block; margin-bottom: 8px;}
html[dir="ltr"] .login-card .input-box label { text-align: left; }

/* =========================================
   لوحة الإدارة (Admin Dashboard & CRUD)
========================================= */
.admin-dashboard { padding: 40px 0; }
.admin-tabs { display: flex; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn { background: var(--card-bg); border: 1px solid #e1e5ee; padding: 15px 25px; border-radius: 10px; font-size: 1.05rem; font-weight: bold; color: var(--text-gray); cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 10px; }
.tab-btn:hover { background: #f8f9fa; }
.tab-btn.active { background: var(--primary-color); color: white; border-color: var(--primary-color); }

.admin-table-container { padding: 30px; overflow-x: auto; margin-bottom: 20px; }
.crud-table { width: 100%; border-collapse: collapse; margin-top: 15px; }
.crud-table th, .crud-table td { padding: 15px; text-align: right; border-bottom: 1px solid #eee; }
html[dir="ltr"] .crud-table th, html[dir="ltr"] .crud-table td { text-align: left; }
.crud-table th { background: rgba(0,0,0,0.02); color: var(--text-gray); font-weight: 600; }
.crud-table td { color: var(--primary-color); vertical-align: middle; }
.table-img { width: 80px; height: 50px; border-radius: 5px; object-fit: cover; }
.status-badge-sm { padding: 5px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; }
.status-badge-sm.success { background: rgba(46, 204, 113, 0.1); color: #2ecc71; }
.status-badge-sm.warning { background: rgba(241, 196, 15, 0.1); color: #f39c12; }
.actions-cell { display: flex; gap: 10px; }
.btn-edit, .btn-delete { border: none; padding: 8px 12px; border-radius: 5px; cursor: pointer; transition: all 0.3s; color: white; }
.btn-edit { background: #3498db; }
.btn-edit:hover { background: #2980b9; }
.btn-delete { background: #e74c3c; }
.btn-delete:hover { background: #c0392b; }

/* الفورم الإداري (الإدخال) */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 25px; }
.input-box { display: flex; flex-direction: column; gap: 8px; }
.input-box.full-width { grid-column: 1 / -1; }
.input-box label { font-weight: 600; color: var(--primary-color); font-size: 0.95rem; }
.input-box input, .input-box textarea { padding: 15px; border: 1px solid #e1e5ee; border-radius: 8px; background: var(--bg-color); font-size: 1rem; font-family: inherit; transition: border 0.3s, background 0.3s; outline: none;}
.input-box input:focus, .input-box textarea:focus { border-color: var(--accent-color); background: white; }
.file-upload { border: 2px dashed #e1e5ee; padding: 40px; text-align: center; border-radius: 8px; background: var(--bg-color); position: relative; cursor: pointer; transition: border 0.3s; }
.file-upload:hover { border-color: var(--accent-color); }
.file-upload i { font-size: 3rem; color: var(--text-gray); margin-bottom: 10px; }
.file-upload p { color: var(--text-gray); font-weight: 600; }
.file-upload input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.btn-submit { background: var(--accent-color); color: white; border: none; padding: 18px; border-radius: 8px; font-size: 1.2rem; font-weight: 800; cursor: pointer; width: 100%; transition: background 0.3s; }
.btn-submit:hover { background: var(--accent-hover); }

/* =========================================
   شريط التمرير (Scrollbar) والاستجابة
========================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); }
::-webkit-scrollbar-thumb { background: var(--text-gray); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

@media (max-width: 992px) {
    .details-layout { flex-direction: column; }
    .car-info-col, .booking-col { width: 100%; }
    .booking-col { position: static; }
    .form-grid { grid-template-columns: 1fr; }
}
/* =========================================
   تنسيقات إدارة المستخدمين والصلاحيات
========================================= */

.form-select {
    padding: 15px;
    border: 1px solid #e1e5ee;
    border-radius: 8px;
    background: var(--bg-color);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    width: 100%;
}

.permissions-box {
    background: rgba(0,0,0,0.02);
    border: 1px solid #e1e5ee;
    padding: 15px;
    border-radius: 8px;
}

.perm-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.perm-toggle:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.perm-toggle span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* تصميم زر الـ Toggle (Switch) */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}
input:checked + .slider {
    background-color: var(--accent-color);
}
input:focus + .slider {
    box-shadow: 0 0 1px var(--accent-color);
}
input:checked + .slider:before {
    transform: translateX(22px);
}
html[dir="rtl"] input:checked + .slider:before {
    transform: translateX(-22px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
/* =========================================
   تنسيقات بطاقات الإدخال (Form Section Cards)
========================================= */
.form-section-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* إضافة شريط جانبي ملون للبطاقة يتغير حسب الاتجاه */
html[dir="rtl"] .form-section-card { border-right: 4px solid var(--accent-color); }
html[dir="ltr"] .form-section-card { border-left: 4px solid var(--accent-color); }

.form-section-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.section-header i {
    font-size: 1.4rem;
    color: var(--accent-color);
    background: rgba(230, 57, 70, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.section-header h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* تحسين شكل حقول الإدخال لتتناسب مع البطاقات الجديدة */
.input-box input, .input-box textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.input-box input:focus, .input-box textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}


/* --- تحديث كرت الحجز والأزرار لضمان ظهورها كاملة --- */

.booking-card {
    height: auto !important; /* السماح للكرت بالتمدد حسب المحتوى */
    min-height: min-content;
    display: flex;
    flex-direction: column;
    padding: 30px !important;
    overflow: visible !important; /* التأكد من عدم قص أي محتوى */
}

.price-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .price-header .final-price-text {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--primary-color);
        line-height: 1.2; /* لضمان عدم تداخل الأسطر */
    }

/* تنسيق الأزرار لضمان عدم نقصها */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px; /* مسافة بين الأزرار */
    width: 100%;
    margin-top: 10px;
}

.btn-book, .btn-whatsapp {
    width: 100%;
    min-height: 60px; /* ضمان وجود مساحة كافية للنص والأيقونة */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    padding: 10px 20px;
}

.btn-book {
    background: var(--accent-color);
    color: white;
}

.btn-whatsapp {
    background-color: #25d366; /* لون واتساب الرسمي */
    color: white;
}

    .btn-whatsapp:hover {
        background-color: #128c7e;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

.btn-book:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
}

/* تأكد من أن كرت المالك لا يزاحم الأزرار */
.owner-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0,0,0,0.03);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}
/* تنسيق القوائم المنسدلة لتتناسب مع التصميم */
select {
    appearance: none; /* إزالة السهم الافتراضي للمتصفح */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: left 15px center !important; /* للسهم في الواجهة العربية */
    cursor: pointer;
}

[dir="ltr"] select {
    background-position: right 15px center !important;
}

select:focus {
    border-color: var(--accent-color) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}
/* =========================================
   تنسيق السعر في كارد السيارة (صفحة المعرض)
   ========================================= */

/* سعر العرض (الذي يراه العميل) */
.car-card .prices .old-price {
    font-size: 1.5rem !important; /* تكبير حجم الخط */
    font-weight: 900 !important; /* أغمق درجة ممكنة (Bold) */
    color: var(--primary-color, #2c3e50) !important; /* لون غامق وواضح */
    text-decoration: none !important; /* إزالة خط الشطب إذا كان موجوداً مسبقاً */
    display: inline-block;
}

/* السعر النهائي (الذي يراه الإدمن فقط) */
.car-card .prices .final-price {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    color: #e74c3c !important; /* لون أحمر لتمييزه للإدارة */
    background: rgba(231, 76, 60, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 10px;
}