.ad-detail-tabs .nav-link.active {
    background-color: #FFC106;
    border-color: #ffc107 #ffc107 #ffc107;
}

.ad-price-standard {
    color: #f00;
    text-decoration: line-through;
}

.ad-price-standard-percentage {
    background-color: #f00;
    font-size: 16px;
}

/* Pending screen */
.pending-screen {
    background-color: #f2f2f2;
    color: #b31901;
}
.pending-screen img {
    height: 7em;
}
.pending-screen p {
    font-weight: 500;
}


/* by malik */

/* Property Header */
.property-header {
    background-color: #ffffff;
    padding: 6px 0;
}

.property-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    padding: 8px;
    border: 1px solid #a0a6bd;
    border-radius: 8px;
    background-color: #fafafa;
    cursor: pointer;
}

.view-count {
    background-color: #fafafa;
    border: 1px solid #a0a6bd;
    border-radius: 8px;
    padding: 6px 26px 6px 6px;
    font-size: 10px;
    font-weight: 700;
    color: #a0a6bd;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-title {
    font-size: 16px;
    font-weight: 700;
    color: #000829;
    line-height: 30px;
}


/* Main Content */
.main-content {
    padding: 10px 0;
    display: flex;
    gap: 24px;
    position: relative;
}

.sidebar {
    width: 272px;
    flex-shrink: 0;
}

.content-area {
    flex: 1;
    display: flex;
    gap: 24px;
}

.property-details {
    width: 320px;
    flex-shrink: 0;
}

.property-gallery {
    flex: 1;
}

/* Seller Card */
.seller-card {
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    margin-bottom: 12px;
}

.verified-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0062ff;
    color: #ffffff;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 0px 10px 0px 0px;
}

.seller-header {
    background-color: #0062ff;
    height: 60px;
    border-radius: 10px 10px 0px 0px;
}

.seller-info {
    padding: 16px;
    text-align: center;
}

.seller-avatar {
    width: 74px;
    height: 74px;
    border-radius: 36px;
    margin: -37px auto 16px;
}

.seller-name {
    font-size: 14px;
    font-weight: 700;
    color: #000829;
    margin-bottom: 16px;
}

.seller-actions {
    display: flex;
    background-color: #fafafa;
}

.seller-action {
    flex: 1;
    padding: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #a0a6bd4c;
    cursor: pointer;
}

.seller-action.chat {
    color: #0062ff;
    border-radius: 0px 0px 10px 0px;
}

.seller-action.call {
    color: #34c759;
    border-radius: 0px 0px 0px 10px;
}

/* Promotion Card */
.promotion-card {
    background-color: #e5ebf9;
    border-radius: 10px;
    padding: 16px 8px;
    text-align: center;
    margin: 32px;
}

.promotion-title {
    font-size: 12px;
    font-weight: 700;
    color: #000829;
    margin-bottom: 4px;
}

.promotion-text {
    font-size: 12px;
    font-weight: 600;
    color: #000829;
    margin-bottom: 14px;
}

.promotion-btn {
    background-color: #0062ff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 6px 34px 6px 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    width: calc(100% - 12px);
}

/* Property Details */
.price-section {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 12px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #000829;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: #000829;
}

.location-section {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 12px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.location {
    font-size: 12px;
    font-weight: 600;
    color: #000829;
}

.location .highlight {
    color: #0062ff;
}

.location-label {
    font-size: 12px;
    font-weight: 600;
    color: #000829;
}

.info-title {
    font-size: 14px;
    font-weight: 700;
    color: #5e688f;
    margin: 16px 0 8px;
    text-align: right;
}

.info-section {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #a0a6bd33;
}

.info-row:last-child {
    border-bottom: none;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: #000829;
}

.info-label {
    font-size: 10px;
    font-weight: 600;
    color: #5e688f;
}

/* Gallery */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-image {
    width: 100%;
    height: 408px;
    object-fit: cover;
    border-radius: 5px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.thumbnail {
    width: 100%;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.gallery-nav {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.pager-indicator {
    display: flex;
    gap: 4px;
}

.pager-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
}

.pager-dot.active {
    background-color: #0062ff;
}

/* Tabs */
.tab-container {
    margin-top: 16px;
}

.tab-header {
    display: flex;
    justify-content: flex-start;
}

.tab-btn {
    background-color: #ffffff;
    border: none;
    padding: 10px 44px 10px 26px;
    font-size: 14px;
    font-weight: 700;
    color: #5e688f;
    cursor: pointer;
    border-radius: 10px 10px 0px 0px;
    margin-left: 4px;
}

.tab-btn.active {
    background-color: #0062ff;
    color: #ffffff;
}

.tab-content {
    background-color: #ffffff;    
    border-top: 1px solid #5e688f;
}
       

/* Features Section */
.features-section {
    margin-top: 10px;
}

.features-title {
    font-size: 14px;
    font-weight: 700;
    color: #5e688f;
    text-align: right;
    margin-bottom: 4px;
}

.features-grid {
    background-color: #ffffff;
    border: 1px solid #bebdbd66;
    border-radius: 5px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.feature-text {
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.feature-text.active {
    color: #0062ff;
}

.feature-text.inactive {
    color: #a0a6bd;
}

.feature-icon {
    width: 18px;
    height: 18px;
}

/* Category Sections */
.category-section {
    margin-top: 10px;
    margin-bottom: 20px;
}

.category-header {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-right: 2px solid #0062ff;
    margin-bottom: 12px;
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #000829;
}

.category-tags {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
}

.category-tag {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    color: #000829;
}



@media screen and (max-width: 800px) {
    .property-title-section {
        display: flex;                
        flex-direction: column-reverse;
        gap: 14px;
    }
    .property-details {
        width: auto;
        flex-shrink: unset;
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
    }


}