
        /* استایل‌های اختصاصی برای کارت‌های آگهی حرفه‌ای */
        .property-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        .property-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .property-card:hover .property-title,
        .property-card:focus-within .property-title {
            color: #c79452;
        }
        .property-img {
            position: relative;
            height: 220px;
            overflow: hidden;
            flex: 0 0 auto;
        }
        .property-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .property-card:hover .property-img img {
            transform: scale(1.05);
        }
        .property-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 6px;
            max-width: calc(100% - 24px);
        }
        .property-badge span {
            background: rgba(31, 42, 68, 0.88);
            color: #fff;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            backdrop-filter: blur(6px);
        }
        .property-badge .featured {
            background: #c79452;
            margin-left: 0;
        }
        .property-type {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(199, 148, 82, 0.96);
            color: #fff;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            max-width: calc(100% - 24px);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .property-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .property-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.45;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3.1em;
        }
        .property-address {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            min-height: 1.4em;
        }
        .property-price {
            color: #2c3e50;
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 12px;
            line-height: 1.5;
            min-height: 2.2em;
        }
        .property-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            border-top: 1px solid #ecf0f1;
            padding-top: 12px;
            margin-top: auto;
        }
        .property-features span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: #5a6e7a;
            white-space: nowrap;
        }
        .btn-detail {
            background: #f8f9fa;
            color: #2c3e50;
            border: none;
            border-radius: 12px;
            padding: 8px 0;
            font-weight: 600;
            transition: all 0.2s;
            width: 100%;
            margin-top: 12px;
        }
        .btn-detail:hover {
            background: #4c6ef5;
            color: #fff;
        }

        .ad-load-more-hidden {
            display: none !important;
        }

        .ad-load-more-controls {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding-top: 18px;
            padding-bottom: 12px;
        }

        .ad-load-more-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            min-width: 210px;
            min-height: 48px;
            padding: 10px 24px;
            border: 1px solid #c79452;
            border-radius: 14px;
            background: #fff;
            color: #9b6a2c;
            font-family: inherit;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(199, 148, 82, 0.12);
            transition: all 0.18s ease;
        }

        .ad-load-more-button:hover,
        .ad-load-more-button:focus-visible {
            background: #c79452;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(199, 148, 82, 0.24);
        }

        .ad-load-more-button i {
            font-size: 19px;
        }

        .ad-load-more-status {
            margin: 0;
            color: #7a8798;
            font-size: 0.78rem;
        }
        @media (max-width: 768px) {
            .property-img { height: 200px; }
        }

        /* Property details page */
        .info-ad-page {
            direction: rtl;
        }

        .info-ad-gallery {
            overflow: hidden;
            border-radius: 22px;
            background: #eef2f6;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
        }

        .info-ad-gallery-image {
            height: 480px;
            object-fit: cover;
        }

        .info-ad-thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 4px 2px 8px;
            scrollbar-width: thin;
        }

        .info-ad-thumbnail {
            width: 88px;
            height: 66px;
            flex: 0 0 auto;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 12px;
            opacity: 0.82;
            transition: all 0.18s ease;
        }

        .info-ad-thumbnail:hover {
            opacity: 1;
            border-color: #c79452;
        }

        .info-ad-summary-card {
            position: sticky;
            top: 88px;
            border: 1px solid #edf1f5;
            border-radius: 22px;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
        }

        .info-ad-summary-card .card-body {
            padding: 24px;
        }

        .info-ad-summary-card .card-title {
            color: #1f2a44;
            font-size: 1.35rem;
            font-weight: 900;
            line-height: 1.7;
        }

        .info-ad-highlights {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0;
            padding: 14px 0;
            border-top: 1px solid #edf1f5;
            border-bottom: 1px solid #edf1f5;
        }

        .info-ad-highlight-item {
            min-width: 0;
            padding: 7px 10px;
        }

        .info-ad-highlight-item:not(:nth-child(3n + 1)) {
            border-right: 1px solid #edf1f5;
        }

        .info-ad-highlight-content {
            text-align: center;
            color: #526075;
            font-size: 0.8rem;
            line-height: 1.7;
        }

        .info-ad-highlight-content i {
            display: block;
            margin-bottom: 4px;
            color: #c79452;
            font-size: 21px;
        }

        .info-ad-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 18px 0 8px;
            color: #1f2a44;
            font-weight: 900;
        }

        .info-ad-section-title i {
            color: #c79452;
            font-size: 20px;
        }

        .info-ad-facts {
            margin: 0 0 18px;
        }

        .info-ad-facts tr {
            border-bottom: 1px solid #edf1f5;
        }

        .info-ad-facts tr:last-child {
            border-bottom: 0;
        }

        .info-ad-facts th,
        .info-ad-facts td {
            padding: 11px 4px;
            border: 0;
            background: transparent;
            vertical-align: middle;
        }

        .info-ad-facts th {
            width: 44%;
            color: #7a8798;
            font-weight: 600;
        }

        .info-ad-facts td {
            color: #1f2a44;
            font-weight: 800;
            text-align: left;
        }

        .info-ad-details-card {
            overflow: hidden;
            border: 1px solid #edf1f5;
            border-radius: 22px;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
        }

        .info-ad-details-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            border-bottom: 1px solid #edf1f5;
            background: #fff;
        }

        .info-ad-details-header strong {
            display: block;
            margin-bottom: 5px;
            color: #1f2a44;
            font-size: 1.05rem;
        }

        .info-ad-details-header p {
            color: #7a8798;
            font-size: 0.82rem;
        }

        .info-ad-details-header > i {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 14px;
            background: rgba(199, 148, 82, 0.12);
            color: #c79452;
            font-size: 24px;
        }

        .info-ad-details-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0 24px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .info-ad-details-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
            padding: 13px 2px;
            border-bottom: 1px solid #edf1f5;
            color: #344257;
            font-weight: 700;
        }

        .info-ad-details-list li i {
            width: 25px;
            height: 25px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.1);
            color: #168743;
        }

        @media (max-width: 991.98px) {
            .info-ad-summary-card {
                position: static;
            }

            .info-ad-gallery-image {
                height: 400px;
            }

            .info-ad-details-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 575.98px) {
            .info-ad-gallery {
                border-radius: 16px;
            }

            .info-ad-gallery-image {
                height: 280px;
            }

            .info-ad-summary-card,
            .info-ad-details-card {
                border-radius: 18px;
            }

            .info-ad-summary-card .card-body {
                padding: 18px;
            }

            .info-ad-highlights {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .info-ad-highlight-item:not(:nth-child(3n + 1)) {
                border-right: 0;
            }

            .info-ad-highlight-item:nth-child(even) {
                border-right: 1px solid #edf1f5;
            }

            .info-ad-details-header {
                padding: 18px;
            }

            .info-ad-details-list {
                grid-template-columns: 1fr;
            }
        }

        /* Horizontal ad cards used only on the home page (Divar-style). */
        .home-property-card {
            min-height: 220px;
            flex-direction: row;
            direction: ltr;
            border: 1px solid #e2e5e9;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(18, 33, 58, 0.05);
        }

        .home-property-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(18, 33, 58, 0.1);
        }

        .home-property-card .property-img,
        .home-property-card .property-content {
            width: 50%;
            flex: 0 0 50%;
        }

        .home-property-card .property-img {
            height: auto;
            min-height: 220px;
        }

        .home-property-card .property-content {
            min-width: 0;
            padding: 16px;
            direction: rtl;
            text-align: right;
        }

        .home-property-card .property-title {
            font-size: 1rem;
            min-height: 2.9em;
            margin-bottom: 10px;
        }

        .home-property-card .property-price {
            font-size: 1rem;
            min-height: auto;
            margin-bottom: 10px;
        }

        .home-property-card .property-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 5px;
            padding-top: 9px;
        }

        .home-property-card .property-features span {
            overflow: hidden;
            font-size: 0.78rem;
            text-overflow: ellipsis;
        }

        .home-property-card .property-badge {
            right: 10px;
            top: 10px;
        }

        .home-property-card .property-badge span,
        .home-property-card .property-type {
            padding: 4px 9px;
            font-size: 11px;
        }

        @media (max-width: 575.98px) {
            .home-ad-column {
                margin-bottom: 12px !important;
            }

            .home-property-card {
                min-height: 180px;
            }

            .home-property-card .property-img {
                height: auto;
                min-height: 180px;
            }

            .home-property-card .property-content {
                padding: 12px;
            }

            .home-property-card .property-title {
                font-size: 0.92rem;
            }

            .home-property-card .property-address,
            .home-property-card .property-price {
                font-size: 0.8rem;
                margin-bottom: 7px;
            }

            .home-property-card .property-features {
                gap: 3px;
                padding-top: 7px;
            }

            .home-property-card .property-features span {
                font-size: 0.7rem;
            }
        }

        /* Brand gold for the main ad actions */
        .product-view3,
        .product-view4 {
            --bs-btn-color: #fff;
            --bs-btn-bg: #c79452;
            --bs-btn-border-color: #c79452;
            --bs-btn-hover-color: #fff;
            --bs-btn-hover-bg: #b8843d;
            --bs-btn-hover-border-color: #b8843d;
            --bs-btn-focus-shadow-rgb: 199, 148, 82;
            --bs-btn-active-color: #fff;
            --bs-btn-active-bg: #a87333;
            --bs-btn-active-border-color: #a87333;
            background-color: #c79452;
            border-color: #c79452;
            color: #fff;
            box-shadow: 0 0.6rem 1.2rem rgba(199, 148, 82, 0.22);
        }

        .product-view3:hover,
        .product-view4:hover,
        .product-view3:focus-visible,
        .product-view4:focus-visible {
            background-color: #b8843d;
            border-color: #b8843d;
            color: #fff;
            box-shadow: 0 0.75rem 1.4rem rgba(199, 148, 82, 0.3);
        }

        /* Shared auth and dashboard polish */
        .auth-flow-shell {
            direction: rtl;
        }

        .auth-flow-card {
            border: 0;
            border-radius: 28px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .check-code-shell {
            min-height: calc(100vh - 180px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-code-card {
            width: 100%;
            max-width: 620px;
            margin-inline: auto;
        }

        .header-user-trigger {
            display: inline-flex !important;
            align-items: center;
            gap: 10px;
        }

        .header-user-name {
            max-width: 190px;
            overflow: hidden;
            color: #1f2a44;
            font-size: 0.88rem;
            font-weight: 800;
            line-height: 1.4;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .auth-flow-aside {
            min-height: 100%;
            padding: 28px;
            color: #fff;
            background: linear-gradient(160deg, #12213a 0%, #22385e 60%, #c79452 165%);
        }

        .auth-flow-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.2px;
        }

        .auth-flow-note {
            border-radius: 18px;
            padding: 16px 18px;
            background: rgba(255, 255, 255, 0.11);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
        }

        .auth-flow-list {
            display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .auth-flow-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .auth-flow-list i {
            flex: 0 0 auto;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
        }

        .auth-flow-form .form-label {
            font-weight: 700;
            color: #1f2a44;
        }

        .auth-flow-form .form-control,
        .auth-flow-form .form-select {
            min-height: 52px;
            border-radius: 16px;
            border-color: #dbe3ee;
            box-shadow: none;
        }

        .auth-flow-form .form-control:focus,
        .auth-flow-form .form-select:focus {
            border-color: #c79452;
            box-shadow: 0 0 0 0.2rem rgba(199, 148, 82, 0.14);
        }

        .auth-flow-help {
            color: #718096;
            font-size: 0.88rem;
            line-height: 1.8;
        }

        .support-shell {
            direction: rtl;
        }

        .support-card {
            overflow: hidden;
        }

        .support-aside {
            background: linear-gradient(150deg, #12213a 0%, #1f3557 52%, #c79452 170%);
        }

        .support-auto-fill {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            border-radius: 18px;
            padding: 14px 16px;
            background: rgba(199, 148, 82, 0.08);
            border: 1px solid rgba(199, 148, 82, 0.16);
            color: #6d5200;
            line-height: 1.8;
        }

        .support-auto-fill i {
            flex: 0 0 auto;
            color: #c79452;
            font-size: 20px;
            margin-top: 2px;
        }

        .support-code-box {
            border-radius: 22px;
            padding: 18px;
            background: linear-gradient(135deg, #12213a 0%, #22385e 62%, #c79452 165%);
            color: #fff;
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
        }

        .support-code-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .support-code-label {
            font-size: 0.92rem;
            font-weight: 800;
        }

        .support-code-hint {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.86rem;
            line-height: 1.7;
        }

        .support-code-value {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 74px;
            border-radius: 18px;
            border: 1px dashed rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 0.3rem;
            direction: ltr;
            user-select: all;
        }

        .support-code-input {
            direction: ltr;
            text-align: center;
            font-size: 1.25rem;
            letter-spacing: 0.3rem;
            font-weight: 800;
        }

        .support-code-input::placeholder {
            letter-spacing: 0;
            font-weight: 600;
        }

        .help-shell {
            direction: rtl;
        }

        .help-hero {
            border: 0;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(140deg, #12213a 0%, #22385e 58%, #c79452 160%);
            color: #fff;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .help-hero .text-muted {
            color: rgba(255, 255, 255, 0.78) !important;
        }

        .help-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .help-card {
            overflow: hidden;
        }

        .help-aside {
            background: linear-gradient(150deg, #12213a 0%, #1f3557 52%, #c79452 170%);
        }

        .help-quick-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }

        .help-quick-link {
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 16px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            line-height: 1.7;
            transition: all 0.18s ease;
        }

        .help-quick-link:hover,
        .help-quick-link:focus-visible {
            color: #fff;
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-1px);
        }

        .help-quick-link i {
            flex: 0 0 auto;
            font-size: 18px;
        }

        .help-search-wrap {
            display: flex;
            align-items: flex-end;
            gap: 12px;
        }

        .help-search-count {
            flex: 0 0 auto;
            min-width: 124px;
            border-radius: 16px;
            padding: 12px 14px;
            background: #f8fbfd;
            border: 1px solid #dbe3ee;
            color: #1f2a44;
            font-weight: 800;
            text-align: center;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
        }

        .help-topic-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 18px;
        }

        .help-topic-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: #f4f7fb;
            border: 1px solid #e2e8f0;
            color: #22385e;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.18s ease;
        }

        .help-topic-chip:hover,
        .help-topic-chip:focus-visible {
            background: #12213a;
            color: #fff;
        }

        .help-section + .help-section {
            margin-top: 24px;
        }

        .help-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: #1f2a44;
            font-weight: 900;
        }

        .help-section-title i {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(199, 148, 82, 0.12);
            color: #c79452;
            flex: 0 0 auto;
        }

        .help-faq-accordion .accordion-item {
            margin-bottom: 12px;
            border: 1px solid #edf1f6;
            border-radius: 18px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
        }

        .help-faq-accordion .accordion-button {
            padding: 18px;
            background: #fff;
            color: #1f2a44;
            font-weight: 800;
            line-height: 1.8;
        }

        .help-faq-accordion .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #fff8e3, #f7e0a6);
            color: #6d5200;
            box-shadow: none;
        }

        .help-faq-accordion .accordion-button::after {
            margin-left: 0;
            margin-right: auto;
        }

        .help-faq-accordion .accordion-body {
            padding: 0 18px 18px;
            color: #51617c;
            line-height: 1.95;
        }

        .help-faq-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .help-faq-meta span {
            padding: 6px 10px;
            border-radius: 999px;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            color: #5a6e7a;
            font-size: 12px;
        }

        .help-empty {
            border: 1px dashed #d7e0ea;
            border-radius: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
            padding: 32px 24px;
            text-align: center;
            margin-bottom: 18px;
        }

        .help-empty-icon {
            width: 84px;
            height: 84px;
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(199, 148, 82, 0.12);
            color: #c79452;
            margin-bottom: 16px;
        }

        .help-empty-icon i {
            font-size: 44px;
        }

        .help-note {
            border-radius: 18px;
            padding: 14px 16px;
            background: rgba(199, 148, 82, 0.08);
            border: 1px solid rgba(199, 148, 82, 0.16);
            color: #6d5200;
            line-height: 1.8;
        }

        .otp-grid {
            direction: ltr;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
        }

        .otp-grid input {
            height: 64px;
            border-radius: 18px;
            border: 1px solid #dbe3ee;
            background: #fff;
            font-size: 1.75rem;
            font-weight: 800;
            text-align: center;
            color: #1f2a44;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
        }

        .otp-grid input:focus {
            border-color: #c79452;
            box-shadow: 0 0 0 0.2rem rgba(199, 148, 82, 0.14);
        }

        .otp-grid input::-webkit-outer-spin-button,
        .otp-grid input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .my-ad-hero {
            border: 0;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(135deg, #12213a 0%, #22385e 58%, #c79452 160%);
            color: #fff;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .my-ad-hero .text-muted {
            color: rgba(255, 255, 255, 0.78) !important;
        }

        .my-ad-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .my-ad-stat {
            height: 100%;
            border-radius: 20px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
        }

        .my-ad-stat .label {
            display: block;
            margin-bottom: 6px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.82rem;
        }

        .my-ad-stat .value {
            display: block;
            font-size: 1.4rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
        }

        .my-ad-section {
            border: 0;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
        }

        .my-ad-section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
        }

        .my-ad-empty {
            border: 1px dashed #d7e0ea;
            border-radius: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
            padding: 42px 24px;
        }

        .my-ad-empty-icon {
            width: 84px;
            height: 84px;
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(199, 148, 82, 0.12);
            color: #c79452;
            margin-bottom: 16px;
        }

        .my-ad-empty-icon i {
            font-size: 44px;
        }

        .my-ad-request-card {
            border: 1px solid #edf1f6;
            border-radius: 22px;
            background: #fff;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
            height: 100%;
        }

        .my-ad-request-card .request-meta {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .my-ad-request-card .request-meta li {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 14px;
            color: #51617c;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .my-ad-request-card .request-meta strong {
            color: #1f2a44;
            font-weight: 800;
            text-align: left;
        }

        .edit-ad-shell {
            direction: rtl;
        }

        .edit-ad-hero {
            border: 0;
            border-radius: 28px;
            overflow: hidden;
            background: linear-gradient(135deg, #12213a 0%, #22385e 58%, #c79452 160%);
            color: #fff;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
        }

        .edit-ad-hero .text-muted {
            color: rgba(255, 255, 255, 0.78) !important;
        }

        .edit-ad-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border-radius: 999px;
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 800;
        }

        .edit-ad-card,
        .edit-ad-preview-card {
            border: 0;
            border-radius: 24px;
            background: #fff;
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
        }

        .edit-ad-preview-card {
            position: sticky;
            top: 16px;
        }

        .edit-ad-section {
            border: 1px solid #edf1f6;
            border-radius: 22px;
            background: #fff;
            padding: 18px;
        }

        .edit-ad-section + .edit-ad-section {
            margin-top: 18px;
        }

        .edit-ad-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #1f2a44;
            font-weight: 900;
            margin-bottom: 14px;
        }

        .edit-ad-choice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
        }

        .edit-ad-choice-card {
            position: relative;
            min-height: 54px;
        }

        .edit-ad-choice-card input {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
        }

        .edit-ad-choice-card span {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            border: 1px solid #d9e2ef;
            border-radius: 14px;
            background: #f8fafc;
            color: #25324b;
            font-weight: 800;
            line-height: 1.8;
            padding: 11px 12px;
            text-align: center;
            transition: all 0.18s ease;
        }

        .edit-ad-choice-card input:checked + span {
            border-color: #c79452;
            background: linear-gradient(135deg, #fff8e3, #f6d878);
            color: #6d5200;
            box-shadow: 0 0 0 3px rgba(199, 148, 82, 0.12);
        }

        .edit-ad-choice-card input:focus-visible + span {
            outline: 3px solid rgba(199, 148, 82, 0.16);
        }

        .edit-ad-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
        }

        .edit-ad-note {
            border-radius: 18px;
            padding: 14px 16px;
            background: rgba(199, 148, 82, 0.08);
            border: 1px solid rgba(199, 148, 82, 0.16);
            color: #6d5200;
            line-height: 1.8;
        }

        .edit-ad-image-stage {
            border: 1px solid #e6edf7;
            border-radius: 22px;
            background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
        }

        .edit-ad-current-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .edit-ad-current-grid img {
            width: 100%;
            height: 84px;
            object-fit: cover;
            border-radius: 14px;
            border: 1px solid #dbe3ee;
        }

        .edit-ad-thumb-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            direction: ltr;
        }

        .edit-ad-thumb {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid #dbe3ee;
            background: #fff;
            aspect-ratio: 1 / 1;
        }

        .edit-ad-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            position: relative;
            z-index: 0;
        }

        .edit-ad-thumb input {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            z-index: 1;
        }

        .edit-ad-thumb span {
            position: absolute;
            left: 8px;
            right: 8px;
            bottom: 8px;
            padding: 4px 8px;
            border-radius: 999px;
            background: rgba(18, 33, 58, 0.85);
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            z-index: 2;
        }

        .edit-ad-thumb button {
            z-index: 3;
        }

        .edit-ad-thumb input:checked + span {
            background: #c79452;
        }

        .edit-ad-summary {
            display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .edit-ad-summary li {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eef2f7;
            line-height: 1.7;
        }

        .edit-ad-summary strong {
            font-weight: 800;
            color: #1f2a44;
            text-align: left;
        }

        .edit-ad-existing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 10px;
            direction: ltr;
        }

        .edit-ad-existing-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid #dbe3ee;
            background: #fff;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            transition: all 0.18s ease;
        }

        .edit-ad-existing-card:hover {
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
            transform: translateY(-2px);
        }

        .edit-ad-existing-card input {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            z-index: 2;
        }

        .edit-ad-existing-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: all 0.18s ease;
        }

        .edit-ad-existing-main,
        .edit-ad-existing-delete {
            position: absolute;
            left: 8px;
            right: 8px;
            padding: 5px 8px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            text-align: center;
            z-index: 3;
        }

        .edit-ad-existing-main {
            top: 8px;
            background: rgba(18, 33, 58, 0.86);
            color: #fff;
        }

        .edit-ad-existing-delete {
            bottom: 8px;
            background: rgba(255, 255, 255, 0.92);
            color: #b42318;
            border: 1px solid rgba(180, 35, 24, 0.16);
        }

        .edit-ad-existing-card input:checked ~ img {
            filter: grayscale(0.35) saturate(0.9);
            opacity: 0.48;
        }

        .edit-ad-existing-card input:checked ~ .edit-ad-existing-delete {
            background: #dc3545;
            color: #fff;
            border-color: #dc3545;
        }

        .edit-ad-existing-card input:checked ~ .edit-ad-existing-main {
            background: rgba(220, 53, 69, 0.92);
        }

        .hazf-ad-shell {
            direction: rtl;
        }

        .hazf-ad-warning {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            border-radius: 18px;
            padding: 16px 18px;
            background: rgba(199, 148, 82, 0.08);
            border: 1px solid rgba(199, 148, 82, 0.18);
            color: #6d5200;
            line-height: 1.8;
        }

        .hazf-ad-warning i {
            flex: 0 0 auto;
            margin-top: 2px;
            color: #c79452;
            font-size: 22px;
        }

        .hazf-ad-preview {
            display: grid;
            grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
            gap: 18px;
            align-items: start;
            border: 1px solid #edf1f6;
            border-radius: 22px;
            background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
            padding: 18px;
        }

        .hazf-ad-preview-media {
            overflow: hidden;
            border-radius: 18px;
            border: 1px solid #dbe3ee;
            background: #f1f5f9;
            aspect-ratio: 1 / 1;
        }

        .hazf-ad-preview-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hazf-ad-preview-body {
            min-width: 0;
        }

        .hazf-ad-summary {
            display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hazf-ad-summary li {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eef2f7;
            line-height: 1.7;
            color: #51617c;
        }

        .hazf-ad-summary strong {
            font-weight: 800;
            color: #1f2a44;
            text-align: left;
        }

        .hazf-ad-note {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            border-radius: 18px;
            padding: 14px 16px;
            background: rgba(199, 148, 82, 0.08);
            border: 1px solid rgba(199, 148, 82, 0.16);
            color: #6d5200;
            line-height: 1.8;
        }

        .hazf-ad-note i {
            flex: 0 0 auto;
            margin-top: 2px;
            color: #c79452;
            font-size: 20px;
        }

        .hazf-ad-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hazf-ad-actions > * {
            flex: 1 1 220px;
        }

        .hazf-ad-actions .btn {
            width: 100%;
        }

        .hazf-ad-side {
            border: 0;
            border-radius: 24px;
            background: linear-gradient(135deg, #12213a 0%, #22385e 58%, #c79452 160%);
            color: #fff;
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
        }

        .hazf-ad-side .text-muted {
            color: rgba(255, 255, 255, 0.78) !important;
        }

        .hazf-ad-side-list {
            display: grid;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hazf-ad-side-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.8;
        }

        .hazf-ad-side-list i {
            flex: 0 0 auto;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
        }

        .w-46 {
            width: 46px !important;
        }

        .h-46 {
            height: 46px !important;
        }

        .w-60 {
            width: 60px !important;
        }

        .h-60 {
            height: 60px !important;
        }

        @media (max-width: 991.98px) {
            .auth-flow-aside {
                min-height: auto;
            }

            .help-search-wrap {
                flex-direction: column;
                align-items: stretch;
            }

            .help-search-count {
                width: 100%;
            }

            .support-code-head {
                align-items: flex-start;
            }

            .my-ad-section-header {
                flex-direction: column;
                align-items: stretch;
            }

            .edit-ad-preview-card {
                position: static;
            }

            .hazf-ad-preview {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .otp-grid {
                gap: 10px;
            }

            .otp-grid input {
                height: 56px;
                font-size: 1.45rem;
                border-radius: 16px;
            }

            .auth-flow-aside,
            .my-ad-empty {
                padding: 22px;
            }

            .help-quick-grid {
                grid-template-columns: 1fr;
            }

            .help-hero,
            .help-card,
            .help-aside {
                border-radius: 20px;
            }

            .help-topic-chip {
                width: 100%;
                justify-content: center;
            }

            .help-empty {
                padding: 24px 18px;
            }

            .support-code-box {
                padding: 16px;
            }

            .support-code-value {
                min-height: 64px;
                font-size: 1.7rem;
                letter-spacing: 0.22rem;
            }

            .support-code-head {
                flex-direction: column;
                align-items: stretch;
            }

            .edit-ad-current-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .edit-ad-existing-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hazf-ad-preview {
                padding: 16px;
            }

            .hazf-ad-summary li {
                flex-direction: column;
                align-items: flex-start;
            }

            .hazf-ad-actions > * {
                flex-basis: 100%;
            }

            .edit-ad-card,
            .edit-ad-preview-card,
            .edit-ad-image-stage {
                border-radius: 20px;
            }
        }
