/* ===== Cairo Font Setup ===== */
@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Cairo";
    src: url("../fonts/Cairo-font/Cairo-ExtraBold.ttf") format("truetype");
    font-weight: 800;
}

:root {
    /* الألوان الأساسية */
    --bright-gold: #ffb600;
    --bright-gold-80: #ffc933;
    --bright-gold-60: #ffd966;
    --bright-gold-30: #ffe699;

    --rich-black: #030200;
    --rich-black-80: #262522;
    --rich-black-60: #4d4c4a;
    --rich-black-40: #5f6c72;
    --rich-black-30: #737271;

    --floral-white: #fff8ed;
    --floral-white-80: #fff9f0;
    --floral-white-60: #fffaf3;
    --floral-white-30: #fffdf9;

    /* الألوان الثانوية */
    --vivid-orange: #ff4c00;
    --vivid-orange-80: #ff6a33;
    --vivid-orange-60: #ff8c66;
    --vivid-orange-30: #ffb199;

    --vivid-red: #ff001f;
    --vivid-red-80: #ff3351;
    --vivid-red-60: #ff667f;
    --vivid-red-30: #ff99a8;
    --vivid-red-20: #ffc4cd;

    --azure-blue: #006aff;
    --azure-blue-80: #3388ff;
    --azure-blue-60: #66a3ff;
    --azure-blue-30: #99c2ff;
    --azure-blue-20: #e8f7ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif !important;
    color: var(--rich-black);
    font-size: 16px;
    line-height: 1.6;
    scroll-behavior: smooth;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.header .top-bar {
    background-color: #000;
    color: #fff;
    font-size: 14px;
}

.header .top-bar a,
.header .top-bar button {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.header .top-bar a:hover,
.header .top-bar button:hover {
    color: var(--bright-gold);
}

.header .top-bar .dropdown-menu,
.header .navbar .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header .navbar .dropdown-menu {
    position: absolute;
    top: 35px;
    right: auto;
}

.header .navbar .dropdown .dropdown-toggle {
    width: 75px;
}

.header .top-bar .dropdown-item,
.header .navbar .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--rich-black-40) !important;
    font-size: 17px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.header .top-bar .dropdown-item:hover,
.header .navbar .dropdown-item:hover,
.header .dropdown-item.active,
.header .dropdown-item:active {
    background-color: #f5f5f5;
    color: var(--rich-black-80) !important;
}

.header .top-bar .header-border {
    background: var(--rich-black-80);
    width: 1px;
    height: 25px;
}

.header .middle-bar {
    background-color: #ffb600;
    padding: 10px 0;
}

.header .middle-bar .fas.fa-search {
    right: 15px;
    color: var(--rich-black-60);
}

.header .middle-bar .search-box {
    max-width: 450px;
}

.header .middle-bar .search-box .form-control {
    padding: 0.6rem 2.5rem 0.6rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0px 16px 41px 0px #00000014;
}

.header .middle-bar .search-box .form-control:focus {
    border-color: var(--rich-black-60);
}

.header .middle-bar .search-box .form-control::placeholder {
    color: var(--rich-black-30);
}

.header .middle-bar .navbar-nav a,
.header .middle-bar .navbar-nav button {
    color: #000;
    transition: all 0.3s ease;
}

.header .middle-bar .navbar-nav a:hover,
.header .middle-bar .navbar-nav button:hover {
    color: #fff;
}

.header .bottom-bar {
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.header .btn-add-ad {
    background-color: #ffb600;
    color: #000;
    font-weight: bold;
    border-radius: 0.375rem;
}

.header .btn-add-ad:hover {
    background-color: #e0a800;
    color: #000;
}

.header .navbar-toggler {
    border: none;
    color: #fff;
}

.header .navbar-toggler:focus {
    box-shadow: none;
}

.header .logo-img {
    height: 45px;
}

.header .header-dropdowns .dropdown-menu {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1050;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 225px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    scrollbar-width: thin;
    scrollbar-color: #ccc #fff;
    direction: ltr;
    text-align: right;
}

.header .header-dropdowns .dropdown:hover > .dropdown-menu,
.header .header-dropdowns .dropend:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
}

.header .header-dropdowns .dropend > .dropdown-menu {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    direction: ltr;
    text-align: right;
    margin-left: 5px;
}

.header .header-dropdowns .dropend:hover > .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block !important;
}

.dropdown-bridge {
    position: fixed;
    background: transparent;
    pointer-events: auto;
    z-index: 1999;
    display: block !important;
}

.header .header-dropdowns .dropend .dropend:hover > .dropdown-menu {
    max-height: 175px;
}

.header .header-dropdowns .dropdown-menu::-webkit-scrollbar {
    width: 3px !important;
}

.header .header-dropdowns .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.header .header-dropdowns .dropdown-menu::-webkit-scrollbar-thumb {
    background: #b0b0b0;
    border-radius: 10px;
    transition: background 0.3s ease-in-out;
}

.header .header-dropdowns .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #909090;
}

.header .header-dropdowns .btn-white {
    background-color: white;
    border: none;
}

.header .header-dropdowns .dropdown-toggle::after {
    display: none;
}

.header .header-dropdowns .dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--rich-black-40);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 5px; */
    transition: all 0.3s ease-in-out;
}

.header .header-dropdowns .dropdown-item:hover {
    color: #000;
}

.header-dropdowns .dropend .dropdown-menu .dropdown-item.active {
    padding-right: 5px;
    padding-left: 5px;
}

.header .header-dropdowns .dropdown-item.active,
.header .header-dropdowns .dropdown-item:active {
    background-color: #f8f9fa;
    color: #000;
}

.header .bottom-bar .header-dropdowns .btn.dropdown-toggle {
    border: 1px solid #dadada;
    border-radius: 0;
    min-width: 160px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
}

.offcanvas {
    --bs-offcanvas-width: 300px !important;
}

.footer {
    background: #191c1f;
    color: #fff;
    padding: 40px 0 20px;
    border-top: 1px solid #444;
    position: static;
    margin-top: auto;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #fff;
}

.footer .app-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 20px;
}

.footer .app-button {
    background: #444;
    border-radius: 4px;
    padding: 15px 18px;
    color: white;
    width: 150px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.5rem;
}

.footer .app-button:hover {
    background: #555;
    color: white;
}

.footer .app-button i {
    font-size: 20px;
}

.footer .contact-info {
    font-size: 14px;
    line-height: 1.6;
    color: #b3b3b3;
}

.footer .contact-info .phone {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
    direction: ltr;
    text-align: right;
}

.footer .logo {
    width: 65px;
    height: 65px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer .copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
    .header .header-dropdowns .dropend > .dropdown-menu {
        max-height: 125px;
        min-width: 150px;
    }

    .header .header-dropdowns .dropend .dropend:hover > .dropdown-menu {
        max-height: 125px;
        min-width: 130px;
    }

    .header .navbar .dropdown-menu {
        right: 0;
        left: 0;
    }

    .header .header-dropdowns .dropdown-item {
        font-size: 13px;
    }

    .header .header-dropdowns .dropend > .dropdown-menu {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .header .header-dropdowns .dropdown-item {
        font-size: 12px;
        padding: 0.5rem;
    }

    .header .header-dropdowns .dropend .dropdown-item {
        font-size: 11px;
    }

    .header .header-dropdowns .dropdown-menu {
        min-width: 175px;
    }

    .header .header-dropdowns .dropend:hover > .dropdown-menu {
        max-height: 125px;
    }

    .header .header-dropdowns .dropend .dropend:hover > .dropdown-menu {
        max-height: 100px;
    }
}

.form-select,
.form-control {
    box-shadow: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.form-control::placeholder {
    color: var(--rich-black-30) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rich-black-60) !important;
}

.form-text {
    color: var(--rich-black-30) !important;
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
}

.btn-danger {
    --bs-btn-color: var(--vivid-red) !important;
    --bs-btn-bg: var(--vivid-red-20) !important;
    --bs-btn-border-color: var(--vivid-red-20) !important;
    --bs-btn-hover-bg: var(--vivid-red) !important;
    --bs-btn-hover-border-color: var(--vivid-red) !important;
    --bs-btn-active-bg: var(--vivid-red);
    --bs-btn-active-border-color: var(--vivid-red) !important;
    --bs-btn-disabled-bg: var(--vivid-red-20) !important;
    --bs-btn-disabled-border-color: var(--vivid-red-20) !important;
    font-weight: 700 !important;
}

.btn-info {
    --bs-btn-color: var(--azure-blue) !important;
    --bs-btn-bg: var(--azure-blue-20) !important;
    --bs-btn-border-color: var(--azure-blue-20) !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: var(--azure-blue) !important;
    --bs-btn-hover-border-color: var(--azure-blue) !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: var(--azure-blue) !important;
    --bs-btn-active-border-color: var(--azure-blue) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: var(--azure-blue-20) !important;
    --bs-btn-disabled-border-color: var(--azure-blue-20) !important;
    font-weight: 700 !important;
}

.dashboard {
    margin-bottom: 3rem;
}
.header-page-section {
    background-image: url(/assets/images/background.jpg);
}

.header-page-section .breadcrumb .active {
    color: var(--bright-gold);
}

.margin {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 7rem 0;
    margin-top: 10.5rem;
    margin-bottom: 3rem;
    color: var(--rich-black);
    overflow: hidden;
    position: relative;
}

/* .margin::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191f33cc;
    z-index: 1;
} */

.margin .container {
    position: relative;
    z-index: 2;
}

.margin a {
    color: var(--rich-black);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.margin a:hover {
    color: var(--bright-gold);
}

.margin i {
    color: var(--rich-black-30);
    font-size: 12px;
}

.login-section .card {
    box-shadow: 0px 24px 100px 0px #001d491f;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
}

.login-section .social-btns a {
    border: 1px solid #ebeef7;
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    color: var(--rich-black-40);
}

.login-section .social-btns a:hover {
    background-color: #f5f5f5;
    color: var(--rich-black);
}

.login-section .form-control {
    box-shadow: none !important;
    direction: rtl;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-color: #e5e7eb !important;
}

.login-section .form-control::placeholder {
    color: var(--rich-black-30);
}

.login-section .form-control:focus {
    border-color: var(--rich-black-60) !important;
}

.btn-primary {
    background: linear-gradient(
        92.03deg,
        #feb500 10.66%,
        #ffd640 31.18%,
        #feb500 51.71%
    );
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    color: var(--rich-black) !important;
    border: none !important;
    font-weight: 700 !important;
}

.btn-primary:hover {
    background: linear-gradient(
        92.03deg,
        #ffc800 0%,
        #ffb600 50%,
        #ffcf21 100%
    );
    color: var(--rich-black);
}

.login-section .create-account {
    transition: all 0.3s ease-in-out;
    color: var(--bright-gold-80);
    font-weight: 700;
}

.login-section .create-account:hover {
    color: var(--bright-gold);
}

.login-section .login-desc {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #ebeef7;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.login-section .login-desc img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.login-section .login-desc p {
    color: var(--rich-black-30);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .header-page-section {
        padding: 6rem 0;
    }
}

@media (max-width: 767px) {
    .header-page-section {
        padding: 5rem 0;
    }

    .login-section .login-desc {
        gap: 1rem;
    }

    .login-section .login-desc img {
        height: 40px;
        width: 40px;
    }
    .header .bottom-bar .header-dropdowns .btn.dropdown-toggle {
        min-width: 100%;
        font-size: 14px;
    }
}

@media (max-width: 567px) {
    .header .bottom-bar .header-dropdowns .btn.dropdown-toggle {
        font-size: 13px;
    }
}

.login-section .radio-container {
    display: flex;
    gap: 20px;
}

.login-section .radio-label {
    width: 100%;
    padding: 20px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.login-section .radio-label:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    background-color: #f5f5f5;
}

.login-section .radio-input {
    display: none;
}

.login-section .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.login-section .subtitle {
    font-size: 14px;
    color: var(--rich-black-40);
}

.login-section .radio-input:checked + .radio-label {
    border-color: var(--bright-gold);
    background-color: rgb(255 237 196 / 33%);
    box-shadow: 0 0 0 2px rgb(244 171 6 / 33%) !important;
}

.login-section .radio-input:checked + .radio-label .fa-user {
    color: var(--bright-gold);
}

.login-section .radio-input:checked + .radio-label .title {
    color: var(--bright-gold);
}

.sidebar {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ebeef7;
    box-shadow: 0px 12px 48px 0px #0022330f;
}

.sidebar .profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}

.sidebar .menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    margin-bottom: 5px;
    color: var(--rich-black-30);
    text-decoration: none;
    border-radius: 0px;
    font-size: 17px;
    transition: background 0.3s ease;
}

.sidebar .menu-link:hover,
.sidebar .menu-link.active {
    background: linear-gradient(
        93.15deg,
        #feb500 2.62%,
        #ffd640 27.61%,
        #feb500 52.61%
    );
    color: var(--rich-black);
}

.sidebar .menu-link.active {
    font-weight: 700;
}

.sidebar .menu-link i {
    font-size: 20px;
}

.gray-color {
    color: var(--rich-black-30);
}

.dashboard .form-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebeef7;
}

.dashboard .form-section .section-title {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.dashboard .form-section .phone-select {
    max-width: 75px;
    padding: 0.375rem 0.5rem 0.375rem 0rem !important;
    background-position: left 0.25rem center !important;
    background-size: 10px 10px !important;
    box-shadow: none !important;
    cursor: pointer;
}

.dashboard .form-section .avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: contain;
}

.dashboard .form-section .input-password .toggle-password {
    position: absolute !important;
    z-index: 5 !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    border: 0 !important;
}

.dashboard .form-section .input-password .form-control {
    border-radius: var(--bs-border-radius) !important;
}

.text-red {
    color: var(--vivid-red) !important;
}

.dashboard .form-section .info-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
}

.dashboard .form-section .info-card .label {
    font-weight: 500;
    color: var(--rich-black-30);
    margin-bottom: 5px;
}

.dashboard .form-section .info-card .value {
    font-weight: 600;
    color: var(--rich-black);
}

.value.tel {
    direction: ltr;
    text-align: right;
}

a {
    transition: all 0.3s ease-in-out;
}

.dashboard .first-card,
.dashboard .second-card,
.dashboard .third-card {
    border: none !important;
}

.dashboard .first-card .card-title,
.dashboard .second-card .card-title,
.dashboard .third-card .card-title {
    font-weight: 700;
}

.dashboard .first-card .card-icon,
.dashboard .second-card .card-icon,
.dashboard .third-card .card-icon {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
}

.dashboard .first-card {
    background: #e8f7ff !important;
}

.dashboard .second-card {
    background: #e4f9e0 !important;
}

.dashboard .third-card {
    background: #ffe6db !important;
}

.dashboard .ads .card {
    border: 1px solid #e4e7e9;
    height: 100%;
}

.dashboard .ads .card img {
    aspect-ratio: 16 / 9;
}

.dashboard .ads .card .card-title {
    font-size: 0.9rem;
    font-weight: 700;
}

.dashboard .ads .card .card-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--azure-blue);
}

.dashboard .ads .card .heart-icon {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 8px;
    background: #ffffffd2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.dashboard .ads .card .heart-icon i {
    color: var(--rich-black-60);

    transition: all 0.3s ease-in-out;
}

.dashboard .ads .card .heart-icon:hover {
    background: var(--vivid-red-20) !important;
    font-weight: 700;
}

.dashboard .ads .card .heart-icon i {
    transition: all 0.3s ease-in-out;
}

.dashboard .ads .card .heart-icon:hover i {
    color: var(--vivid-red) !important;
    font-weight: 700;
}

.dashboard .wallet-card,
.dashboard .custom-card,
.dashboard .balance-card {
    border: 1px solid #ebeef7 !important;
    box-shadow: 0px 12px 48px 0px #0022330f;
}

.dashboard .balance-card .quantity {
    background: #fde7a4;
    padding: 16px 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
}
@media (max-width: 1200px) {
    .dashboard .first-card .card-text,
    .dashboard .second-card .card-text,
    .dashboard .third-card .card-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        margin-bottom: 20px;
    }
}

.dashboard.wizard-page .steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 15px;
    background: #fff;
    box-shadow: 0px 1px 2px 0px #0000000d;
}

.dashboard.wizard-page .step {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 0;
}

.dashboard.wizard-page .step .title {
    font-size: 1rem;
    color: var(--rich-black);
}

.dashboard.wizard-page .step .sub {
    font-size: 0.8rem;
    color: var(--rich-black-30);
}

.dashboard.wizard-page .step .badge-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--rich-black-80);
    color: var(--rich-black-80);
    font-size: larger;
}

.dashboard.wizard-page .step.active {
    border-bottom: 3px solid var(--bright-gold-60);
    opacity: 1;
}

.dashboard.wizard-page .step.active .badge-dot {
    background: linear-gradient(180deg, #feb500 0%, #ffd640 50%, #feb500 100%);
    color: var(--rich-black);
    border: none;
    font-weight: 700;
}

.dashboard.wizard-page .step {
    opacity: 0.7;
}

.dashboard.wizard-page .step.done {
    opacity: 1;
}

.dashboard.wizard-page .step.done .badge-dot {
    background: green;
    color: #fff;
    border-color: green;
}

.dashboard.wizard-page .divider {
    flex: 1 1 24px;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
}

/* بطاقات المحتوى */
.dashboard.wizard-page .card {
    border: 1px solid #e5e7eb !important;
    box-shadow: 0px 1px 2px 0px #0000000d !important;
}

.dashboard.wizard-page .card-title {
    font-weight: 700;
    font-size: 1.05rem;
}

/* خريطة وهمية */
.dashboard.wizard-page .map-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #eef3f8;
}

.dashboard.wizard-page .map-fake {
    aspect-ratio: 16/6;
    width: 100%;
    background: radial-gradient(
                circle at 35% 60%,
                #ffd26e 0 9px,
                transparent 10px
            )
            0 0 / 100% 100% no-repeat,
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0.7)
        ),
        url("https://tile.openstreetmap.org/5/19/12.png");
    background-size: auto, auto, cover;
    filter: grayscale(20%);
}

.uploader {
    border: 2px dashed #d8dee5;
}

.dashboard.wizard-page .uploader .btn {
    background-color: var(--azure-blue-80);
    border: none;
}

.dashboard.wizard-page .uploader .btn:hover {
    background-color: var(--azure-blue);
}

.dashboard.wizard-page .mini-box {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #f3f5f7;
    color: rgba(0, 0, 0, 0.175);
}

/* أزرار التذييل */
.dashboard.wizard-page .wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.175);
    padding-top: 16px;
    margin-top: 20px;
}

.dashboard.wizard-page .btn-prev {
    border: 1px solid rgba(0, 0, 0, 0.175) !important;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

.dashboard.wizard-page .btn-next {
    font-weight: 600 !important;
}

.dashboard.wizard-page .btn-prev:hover {
    background-color: #e5e7eb;
}

.dashboard.wizard-page .btn-draft {
    color: #111;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    font-weight: 600;
}

.dashboard.wizard-page .btn-draft:hover {
    background-color: #e5e7eb;
}

.dashboard.wizard-page .hint {
    color: var(--rich-black-40);
    font-size: 0.9rem;
}

.dashboard.wizard-page .nav-clean .nav-link {
    border: 0;
    color: var(--rich-black-40);
    font-weight: 600;
}

.dashboard.wizard-page .nav-clean .nav-link:hover {
    color: var(--rich-black);
}

.dashboard.wizard-page .nav-clean .nav-link.active {
    color: var(--rich-black);
    border-bottom: 3px solid var(--bright-gold);
    border-radius: 0;
}

.dashboard.wizard-page .image-preview {
    position: relative;
    width: 120px;
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.dashboard.wizard-page .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard.wizard-page .remove-btn {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: var(--vivid-red-80);
    border: none;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.dashboard.wizard-page .remove-btn:hover {
    background-color: var(--vivid-red);
}

.btn-close {
    margin: 0 !important;
    box-shadow: none !important;
}

.offcanvas-header,
.modal-header {
    justify-content: space-between;
}
