/* تنسيقات الإعلانات والزر العائم */

/* =========================================================================
   0. إصلاحات عامة (Global Fixes) - لمنع الانزياح
   ========================================================================= */
html {
    /* السماح بالسكرول بحرية تامة */
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    /* مهم للـ fixed elements */
}

.site {
    overflow-x: hidden !important;
    width: 100%;
}

/* =========================================================================
   1. الإعلانات (Ad Containers / Promo Boxes)
   ========================================================================= */
.ad-container,
.promo-box {
    display: block !important;
    text-align: center;
    margin: 1.5rem auto;
    clear: both;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: #fdfdfd;
    padding: 10px;
    box-sizing: border-box;
    /* مهم جداً */
}

.ad-header,
.promo-header {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ad-top,
.promo-top {
    margin-bottom: 2rem;
}

.ad-middle,
.promo-middle {
    margin: 2rem auto;
}

.ad-bottom,
.promo-bottom {
    margin-top: 2rem;
}


/* =========================================================================
   2. الزر العائم للتعليقات (Floating Comment)
   ========================================================================= */
.floating-comment-btn {
    position: fixed;
    bottom: 100px !important;
    right: 25px !important;
    z-index: 99999 !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;

    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff !important;

    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);

    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    animation: pulse-float 3s infinite;
}

.floating-comment-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.floating-comment-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.floating-comment-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* RTL Support for Comment Button */
body.rtl .floating-comment-btn,
[dir="rtl"] .floating-comment-btn {
    right: auto !important;
    left: 25px !important;
}


/* =========================================================================
   3. زر CTA العائم الجديد (فسر حلمك) - CTA Button
   ========================================================================= */
.floating-cta-btn {
    position: fixed;
    bottom: 100px !important;
    left: 25px !important;
    z-index: 99999 !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;

    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #ffffff !important;

    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);

    font-weight: 800;
    font-size: 15px;
    text-decoration: none !important;
    cursor: pointer;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cta-pulse 2s infinite;
}

/* RTL Support for CTA Button */
body.rtl .floating-cta-btn,
[dir="rtl"] .floating-cta-btn {
    left: auto !important;
    right: 25px !important;
}

.floating-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.6);
    background: linear-gradient(135deg, #db2777, #7c3aed);
}

.floating-cta-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}


/* Mobile Styling (للجوال) */
@media (max-width: 600px) {
    .floating-comment-btn {
        bottom: 110px !important;
        right: 15px !important;
        left: auto !important;
        padding: 10px 15px;
        font-size: 14px;
    }

    body.rtl .floating-comment-btn,
    [dir="rtl"] .floating-comment-btn {
        right: auto !important;
        left: 15px !important;
    }

    .floating-cta-btn {
        bottom: 110px !important;
        left: 15px !important;
        font-size: 13px;
        padding: 10px 15px;
    }

    body.rtl .floating-cta-btn,
    [dir="rtl"] .floating-cta-btn {
        right: 15px !important;
        left: auto !important;
    }
}


/* Animations */
@keyframes pulse-float {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

/* =========================================================================
   4. توسيط المحتوى وإصلاح الهيدر
   ========================================================================= */
/* شاشات سطح المكتب */
@media (min-width: 1025px) {

    .site-container,
    .site-main,
    .header-inner,
    .site-footer .footer-inner {
        max-width: 1280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        padding: 15px 30px;
    }

    .menu-toggle {
        display: none !important;
    }
}

/* إصلاح الهيدر للجوال والتابلت (أهم جزء) */
@media (max-width: 1024px) {
    .site-header {
        position: relative;
        z-index: 10002;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        width: 100%;
        /* تأكيد العرض */
    }

    .header-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* منع العناصر من النزول لسطر جديد */
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        padding: 0 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* العلامة التجارية */
    .site-branding {
        flex-grow: 1;
        order: 1;
        overflow: hidden;
        /* لمنع اللوجو من تمديد الحاوية */
        white-space: nowrap;
        text-overflow: ellipsis;
        padding: 0 10px;
    }

    .site-title {
        font-size: 1.2rem !important;
        /* تصغير الخط قليلاً */
        margin: 0 !important;
    }

    /* زر القائمة */
    .menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        /* منع الزر من الانكماش */
        order: 2;
        margin: 0 !important;
        background: transparent;
        border: none;
        color: #333;
        padding: 8px;
        /* مساحة للنقر */
    }

    /* إصلاح RTL لزر القائمة */
    body.rtl .menu-toggle,
    [dir="rtl"] .menu-toggle {
        margin-left: 0;
    }
}


/* =========================================================================
   5. تنسيقات الجداول الفاخرة (Premium Table Styles)
   ========================================================================= */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

table th,
table td {
    padding: 12px 15px;
    border-bottom: 1px solid #edf2f7;
    text-align: right;
    vertical-align: middle;
}

table th {
    background-color: #f8fafc;
    color: #2d3748;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

table tr:nth-child(even) {
    background-color: #fcfcfc;
}

table tr:hover {
    background-color: #f1f5f9;
}

@media (max-width: 768px) {

    /* جدول مضغوط - نمط Grid تقليدي */
    table {
        width: 100% !important;
        font-size: 9px !important;
        border-collapse: collapse !important;
        display: table !important;
        table-layout: auto !important;
    }

    table thead {
        display: table-header-group !important;
    }

    table tbody {
        display: table-row-group !important;
    }

    table tr {
        display: table-row !important;
    }

    table th,
    table td {
        display: table-cell !important;
        padding: 3px 2px !important;
        font-size: 9px !important;
        line-height: 1.1 !important;
        border: 1px solid #ddd !important;
        word-break: break-word !important;
        vertical-align: middle !important;
        text-align: center !important;
    }

    table th {
        background-color: #f3f4f6 !important;
        font-weight: 700 !important;
        font-size: 8px !important;
        color: #374151 !important;
        padding: 4px 2px !important;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }
}


/* =========================================================================
   6. إصلاح ترقيم الصفحات (Horizontal Pagination)
   ========================================================================= */
.pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
    list-style: none !important;
    flex-direction: row !important;
}

.pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #fff;
    color: #4a5568 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.pagination .dots {
    border: none !important;
    background: transparent !important;
}

body.rtl .pagination,
[dir="rtl"] .pagination {
    flex-direction: row-reverse !important;
}

/* =========================================================================
   7. القائمة الموبايل الانزلاقية (Slide-Down Menu) + البحث
   ========================================================================= */

@media (max-width: 1024px) {
    .main-navigation {
        display: block !important;
        position: fixed;
        top: 70px;
        /* مطابق لارتفاع الهيدر الجديد */
        left: 0;
        right: 0;
        width: 100% !important;
        height: auto;
        min-height: auto;
        max-height: calc(100vh - 70px);
        background: #ffffff;
        z-index: 9999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        overflow-y: auto;

        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;

        display: flex !important;
        flex-direction: column;
    }

    .main-navigation.toggled {
        transform: translateY(0);
        visibility: visible;
    }

    .main-navigation ul {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 0;
        list-style: none;
    }

    .main-navigation li {
        border-bottom: 1px solid #f1f5f9;
        padding: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-navigation a:hover {
        background: #f8fafc;
        color: #2563eb;
    }

    .main-navigation a {
        display: block;
        padding: 15px 5px;
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .main-navigation.toggled li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-navigation.toggled li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-navigation.toggled li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-navigation.toggled li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-navigation.toggled li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .menu-toggle {
        display: flex !important;
        z-index: 10001;
    }
}


/* =========================================================================
   8. صندوق البحث المنبثق (Search Modal)
   ========================================================================= */
.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-modal-overlay.active .search-modal-content {
    transform: scale(1);
}


.close-search {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #dc2626;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #b91c1c;
    transform: scale(1.02);
}

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

[dir="rtl"] .close-search {
    flex-direction: row-reverse;
}

.search-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.search-field-modal {
    width: 100%;
    padding: 20px;
    font-size: 24px;
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #1a202c;
    outline: none !important;
}

.search-submit-modal {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #2563eb;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    align-self: center;
    margin-top: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-form-modal.has-text .search-submit-modal {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* =========================================================================
   Premium Related Posts Styling
   ========================================================================= */
.related-posts-premium {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 30px;
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.related-posts-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f3f4f6;
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.related-post-thumbnail {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.related-post-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}

.related-post-card:hover .related-post-thumbnail::before {
    opacity: 0.5;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.related-post-title a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    transition: color 0.2s;
    display: block;
}

.related-post-title a:hover {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .related-posts-premium {
        padding: 20px 15px;
        margin: 30px 0;
        border-radius: 8px;
    }

    .related-posts-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .related-post-thumbnail {
        height: 160px;
    }

    .related-post-content {
        padding: 15px;
    }

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

/* RTL Support */
body.rtl .related-posts-title,
[dir="rtl"] .related-posts-title {
    text-align: center;
}

/* =========================================================================
   Premium Tags Styling
   ========================================================================= */
.tags-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.tags-links svg {
    color: #6366f1;
    flex-shrink: 0;
}

.tags-label {
    font-weight: 700;
    color: #4b5563;
    margin-left: 8px;
}

.tags-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tags-links a:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

/* =========================================================================
   Premium Share Buttons
   ========================================================================= */
.share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);
}

.share-label {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    margin-left: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.share-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.share-facebook {
    background: rgba(59, 89, 152, 0.9);
}

.share-facebook:hover {
    background: #3b5998;
    box-shadow: 0 6px 12px rgba(59, 89, 152, 0.4);
}

.share-twitter {
    background: rgba(29, 161, 242, 0.9);
}

.share-twitter:hover {
    background: #1da1f2;
    box-shadow: 0 6px 12px rgba(29, 161, 242, 0.4);
}

.share-linkedin {
    background: rgba(0, 119, 181, 0.9);
}

.share-linkedin:hover {
    background: #0077b5;
    box-shadow: 0 6px 12px rgba(0, 119, 181, 0.4);
}

/* =========================================================================
   Premium Post Navigation
   ========================================================================= */
.post-navigation {
    margin: 50px 0;
    padding: 0;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    position: relative;
    padding: 25px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-previous::before,
.nav-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-previous:hover::before,
.nav-next:hover::before {
    transform: scaleX(1);
}

.nav-previous:hover,
.nav-next:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.nav-title a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.nav-title a:hover {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tags-links {
        padding: 15px;
        gap: 8px;
    }

    .tags-links a {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .share-buttons {
        padding: 20px 15px;
        gap: 10px;
    }

    .share-label {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 5px;
    }

    .share-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-previous,
    .nav-next {
        padding: 20px 15px;
    }

    .nav-title {
        font-size: 1rem;
    }
}

/* RTL Support */
body.rtl .tags-label,
[dir="rtl"] .tags-label {
    margin-left: 0;
    margin-right: 8px;
}

body.rtl .share-label,
[dir="rtl"] .share-label {
    margin-left: 0;
    margin-right: 10px;
}

/* =========================================================================
   Featured Image (Post Thumbnail) Optimization
   ========================================================================= */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 500px;
    /* تحديد أقصى ارتفاع للديسكتوب */
    object-fit: cover;
    display: block;
}

/* Mobile - تصغير أكثر لتحسين السرعة */
@media (max-width: 768px) {
    .post-thumbnail {
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .post-thumbnail img {
        max-height: 280px;
        /* ارتفاع أصغر للموبايل */
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .post-thumbnail img {
        max-height: 400px;
    }
}