/* Artbin Elementor Addon Styles */

:root {
    --ab-color-primary: #F36E08; /* Orange */
    --ab-color-dark: #1e293b; /* Dark Slate */
    --ab-color-light: #f8fafc;
    --ab-color-gray: #64748b;
    --ab-border-radius: 12px;
    --ab-font-main: 'Montserrat', 'Inter', sans-serif;
}

.ab-widget-wrapper {
    font-family: var(--ab-font-main);
    color: var(--ab-color-dark);
}

/* Base Elements */
.ab-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.ab-title span {
    color: var(--ab-color-primary);
}
.ab-subtitle {
    font-size: 1.125rem;
    color: var(--ab-color-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ab-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--ab-color-primary);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.ab-btn:hover {
    background-color: #ea580c;
    color: #fff;
}
.ab-btn.ab-btn-outline {
    background-color: transparent;
    border: 1px solid var(--ab-color-primary);
    color: var(--ab-color-primary);
}
.ab-btn.ab-btn-outline:hover {
    background-color: var(--ab-color-primary);
    color: #fff;
}

/* Layout Utilities */
.ab-grid {
    display: grid;
    gap: 2rem;
}
.ab-grid-1 { grid-template-columns: 1fr; }
.ab-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ab-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ab-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
    .ab-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .ab-grid-3, .ab-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ab-grid-2, .ab-grid-3, .ab-grid-4 { grid-template-columns: 1fr; }
    .ab-title { font-size: 2rem; }
}

/* 1. Hero Widget */
.ab-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0;
}
.ab-hero-content {
    flex: 1;
}
.ab-hero-image-wrap {
    flex: 1;
    position: relative;
    border-radius: var(--ab-border-radius);
    overflow: hidden;
}
.ab-hero-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--ab-border-radius);
}

@media (max-width: 768px) {
    .ab-hero { flex-direction: column; text-align: center; }
}

/* 2. Properties Slider/Grid */
.ab-property-card {
    background: #fff;
    border-radius: var(--ab-border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}
.ab-property-card:hover {
    transform: translateY(-5px);
}
.ab-property-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.ab-property-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ab-property-meta {
    display: flex;
    gap: 1rem;
    color: var(--ab-color-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.ab-property-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.ab-property-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--ab-color-dark);
}
.ab-property-desc {
    font-size: 0.875rem;
    color: var(--ab-color-gray);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ab-property-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ab-property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ab-color-dark);
}

/* 3. Banner CTA */
.ab-banner-cta {
    background-size: cover;
    background-position: center;
    border-radius: var(--ab-border-radius);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.ab-banner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 41, 59, 0.7);
}
.ab-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}
.ab-banner-title {
    color: #fff;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .ab-banner-content { flex-direction: column; text-align: center; gap: 1.5rem; }
}

/* 4. Why Us */
.ab-why-us {
    padding: 3rem 0;
}
.ab-feature-box {
    background: var(--ab-color-light);
    padding: 2rem;
    border-radius: var(--ab-border-radius);
    height: 100%;
}
.ab-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.ab-feature-desc {
    color: var(--ab-color-gray);
    font-size: 0.95rem;
}

/* 5. About Us */
.ab-about {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}
.ab-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.ab-stat-item {
    background: var(--ab-color-light);
    padding: 1.5rem;
    border-radius: var(--ab-border-radius);
    text-align: center;
}
.ab-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ab-color-primary);
}

/* 6. Reviews */
.ab-review-card {
    background: var(--ab-color-dark);
    color: #fff;
    padding: 2rem;
    border-radius: var(--ab-border-radius);
}
.ab-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.ab-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.ab-review-name {
    font-weight: 600;
}
.ab-review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

/* 7. Blog */
.ab-blog-card {
    border-radius: var(--ab-border-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.ab-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.ab-blog-content {
    padding: 1.5rem;
}

/* ==========================================================================
   Houzez Search Builder Form Fields Styling Fix
   ========================================================================== */

/* Fix bootstrap-select dropdown menu width alignment in Houzez search forms */
.houzez-search-builder-wrapper .bootstrap-select .dropdown-menu,
.houzez-search-builder-form-js .bootstrap-select .dropdown-menu,
.houzez-search-builder-fields-wrap .bootstrap-select .dropdown-menu,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select .dropdown-menu,
.elementor-widget-houzez_elementor_search .bootstrap-select .dropdown-menu {
    min-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    margin-top: 4px !important;
    background-color: #fff !important;
    padding: 6px 0 !important;
    z-index: 99999 !important;
}

/* Fix dropdown menu items spacing and color */
.houzez-search-builder-wrapper .bootstrap-select .dropdown-menu li a,
.houzez-search-builder-fields-wrap .bootstrap-select .dropdown-menu li a,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select .dropdown-menu li a {
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: #334155 !important;
    font-weight: 400 !important;
    background-color: transparent !important;
    display: block !important;
    width: 100% !important;
    text-align: left !important;
}

.houzez-search-builder-wrapper .bootstrap-select .dropdown-menu li a:hover,
.houzez-search-builder-fields-wrap .bootstrap-select .dropdown-menu li a:hover,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select .dropdown-menu li a:hover {
    background-color: #f8fafc !important;
    color: #F36E08 !important; /* Orange theme main color */
}

/* Fix the dropdown toggle button container padding & border conflict */
.houzez-search-builder-wrapper .bootstrap-select.form-control,
.houzez-search-builder-fields-wrap .bootstrap-select.form-control,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select.form-control {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    height: auto !important;
}

/* Fix the actual dropdown button styling to match standard input styling (pill shaped) */
.houzez-search-builder-wrapper .bootstrap-select.form-control > .btn,
.houzez-search-builder-fields-wrap .bootstrap-select.form-control > .btn,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select.form-control > .btn,
.elementor-widget-houzez_elementor_search_builder .elementor-field-group .bootstrap-select > .btn {
    border: 1px solid #cbd5e1 !important;
    border-radius: 30px !important; /* Round pill style */
    background-color: #fff !important;
    height: 48px !important; /* Premium taller fields */
    padding: 0 20px !important;
    font-size: 14px !important;
    color: #475569 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease-in-out !important;
}

/* Hover & Focus state for dropdown button */
.houzez-search-builder-wrapper .bootstrap-select.form-control > .btn:hover,
.houzez-search-builder-fields-wrap .bootstrap-select.form-control > .btn:hover,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select.form-control > .btn:hover {
    border-color: #94a3b8 !important;
}

.houzez-search-builder-wrapper .bootstrap-select.show > .btn,
.houzez-search-builder-fields-wrap .bootstrap-select.show > .btn,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select.show > .btn,
.houzez-search-builder-wrapper .bootstrap-select.form-control > .btn:focus,
.houzez-search-builder-fields-wrap .bootstrap-select.form-control > .btn:focus,
.elementor-widget-houzez_elementor_search_builder .bootstrap-select.form-control > .btn:focus {
    border-color: #F36E08 !important; /* Orange theme focus color */
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15) !important;
    outline: none !important;
}

/* Align carets/arrows correctly in the button */
.elementor-widget-houzez_elementor_search_builder .bootstrap-select .dropdown-toggle::after {
    content: "\e92b" !important; /* Houzez chevron down icon */
    font-family: "houzez-iconfont" !important;
    font-size: 10px !important;
    border: none !important;
    margin: 0 !important;
    color: #64748b !important;
}

/* Live search input styling inside dropdown */
.elementor-widget-houzez_elementor_search_builder .bootstrap-select .bs-searchbox {
    padding: 8px 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    background-color: #fff !important;
}

.elementor-widget-houzez_elementor_search_builder .bootstrap-select .bs-searchbox input.form-control {
    border: 1px solid #cbd5e1 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
    height: 36px !important;
    line-height: normal !important;
    background-color: #f8fafc !important;
    color: #1e293b !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.elementor-widget-houzez_elementor_search_builder .bootstrap-select .bs-searchbox input.form-control:focus {
    border-color: #F36E08 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15) !important;
}

/* Search button styling */
.elementor-widget-houzez_elementor_search_builder button[type="submit"].btn-search,
.houzez-search-builder-form-js button[type="submit"] {
    height: 48px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    background-color: #1e293b !important; /* Dark premium background */
    color: #ffffff !important;
    border: none !important;
    transition: all 0.2s ease-in-out !important;
}

.elementor-widget-houzez_elementor_search_builder button[type="submit"].btn-search:hover,
.houzez-search-builder-form-js button[type="submit"]:hover {
    background-color: #0f172a !important; /* Slightly darker on hover */
}

/* Fix text visibility and styling for Select All / Deselect All buttons in dropdown */
.bootstrap-select .bs-actionsbox .btn-group button.actions-btn {
    color: #0f172a !important; /* Black/Dark Slate text */
    background-color: #f8fafc !important; /* Light background */
    border: 1px solid #cbd5e1 !important; /* Soft border */
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    transition: all 0.2s ease-in-out !important;
}

.bootstrap-select .bs-actionsbox .btn-group button.actions-btn:hover {
    color: #F36E08 !important; /* Orange text on hover */
    background-color: #f1f5f9 !important; /* Slightly darker background on hover */
    border-color: #cbd5e1 !important;
}

/* Pill shape styling for Select/Deselect All buttons */
.bootstrap-select .bs-actionsbox .btn-group button.actions-btn.bs-select-all {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.bootstrap-select .bs-actionsbox .btn-group button.actions-btn.bs-deselect-all {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none !important; /* Avoid double border in the center */
}

/* ==========================================================================
   Mortgage Calculator Redesign (Premium & Minimalist)
   ========================================================================== */

.property-mortgage-calculator-wrap {
    background-color: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.06) !important;
    border: 1px solid #f1f5f9 !important;
    margin-bottom: 30px !important;
}

.property-mortgage-calculator-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 25px !important;
    position: relative !important;
    padding-bottom: 10px !important;
}

.property-mortgage-calculator-wrap h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #F36E08; /* Orange accent line */
    border-radius: 2px;
}

/* Chart and Monthly Payment Card styling */
.mortgage-calculator-chart {
    position: relative !important;
    background-color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    max-width: 320px !important;
    margin-right: 0 !important;
}

.mortgage-calculator-monthly-payment-wrap {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.mortgage-calculator-monthly-payment {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    line-height: 1 !important;
}

.mortgage-calculator-monthly-requency {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #64748b !important;
    font-weight: 600 !important;
}

/* Fix Canvas Size constraints */
#mortgage-calculator-chart {
    max-width: 170px !important;
    max-height: 170px !important;
    display: block !important;
}

/* Data list styling */
.mortgage-calculator-data {
    padding-left: 10px !important;
}

.mortgage-calculator-data ul.list-unstyled {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.mortgage-calculator-data li.mortgage-calculator-data-1,
.mortgage-calculator-data li.mortgage-calculator-data-2,
.mortgage-calculator-data li.mortgage-calculator-data-3,
.mortgage-calculator-data li.mortgage-calculator-data-4,
.mortgage-calculator-data li.mortgage-calculator-data-5 {
    border: none !important;
    padding: 0 !important;
}

.mortgage-calculator-data .list-lined-item {
    border-bottom: 1px dashed #e2e8f0 !important;
    padding: 10px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 14px !important;
    color: #475569 !important;
}

.mortgage-calculator-data .list-lined-item span:first-child {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.mortgage-calculator-data .list-lined-item strong {
    font-weight: 500 !important;
    color: #334155 !important;
}

.mortgage-calculator-data .list-lined-item span:last-child {
    font-weight: 600 !important;
    color: #0f172a !important;
}

/* Colored dot indicators for chart legend items */
.mortgage-calculator-data .list-lined-item i.houzez-icon.icon-sign-badge-circle {
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #cbd5e1 !important; /* fallback */
    font-size: 0 !important;
    margin: 0 !important;
    border: none !important;
}

/* Match chart colors exactly:
   - Monthly Mortgage Payment: #ff6384 (Pink)
   - Property Tax: #36a2eb (Blue)
   - Home Insurance: #ffce56 (Yellow)
   - HOA: #c2d500 (Green)
   - PMI: #4bc0c0 (Teal)
*/
.mortgage-calculator-data li.stats-data-1 i.houzez-icon.icon-sign-badge-circle {
    background-color: #ff6384 !important;
}
.mortgage-calculator-data li.stats-data-01 i.houzez-icon.icon-sign-badge-circle {
    background-color: #94a3b8 !important; /* Loan amount gray */
}
.mortgage-calculator-data li.stats-data-2 i.houzez-icon.icon-sign-badge-circle {
    background-color: #36a2eb !important;
}
.mortgage-calculator-data li.stats-data-3 i.houzez-icon.icon-sign-badge-circle {
    background-color: #ffce56 !important;
}
.mortgage-calculator-data li.stats-data-4 i.houzez-icon.icon-sign-badge-circle {
    background-color: #4bc0c0 !important;
}
.mortgage-calculator-data li.stats-data-5 i.houzez-icon.icon-sign-badge-circle {
    background-color: #c2d500 !important;
}

/* Form controls styling */
#houzez-calculator-form {
    margin-top: 30px !important;
    padding-top: 25px !important;
    border-top: 1px solid #f1f5f9 !important;
}

#houzez-calculator-form .form-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

#houzez-calculator-form .input-group {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    overflow: hidden !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.02) !important;
}

#houzez-calculator-form .input-group:focus-within {
    border-color: #F36E08 !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1) !important;
}

#houzez-calculator-form .input-group-text {
    background-color: #f8fafc !important;
    border: none !important;
    border-right: 1px solid #e2e8f0 !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 46px !important;
}

#houzez-calculator-form input.form-control {
    border: none !important;
    height: 44px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    font-weight: 500 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

#houzez-calculator-form input.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Property Detail Page Layout & Redesign (Sunline Style)
   ========================================================================== */

/* 5% margin from top of the page */
.artbin-property-wrap {
    margin-top: 5% !important;
}

/* Hide any potential sidebar on property page */
.bt-sidebar-wrap, #sidebar, .sidebar-wrap, .widget-property-form, .widget-wrap.widget-property-form {
    display: none !important;
}

/* Force main content col to take 100% width on property detail pages */
.single-property .bt-content-wrap,
.single-property .col-lg-8.bt-content-wrap {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Make single property detail blocks stylish and minimal */
.property-view .block-wrap,
.property-section-wrap .block-wrap {
    background-color: #ffffff !important;
    border-radius: 20px !important; /* Elegant rounded corners */
    padding: 30px 35px !important;
    margin-bottom: 30px !important;
    border: 1px solid #e2e8f0 !important; /* Soft border */
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03) !important; /* Minimal drop shadow */
    transition: all 0.3s ease-in-out !important;
}

@media screen and (max-width: 768px) {
    .property-view .block-wrap,
    .property-section-wrap .block-wrap {
        border-radius: 12px !important;
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
}

/* Header of the blocks */
.property-view .block-title-wrap,
.property-section-wrap .block-title-wrap {
    border-bottom: none !important; /* Remove Houzez default border */
    padding-bottom: 12px !important;
    margin-bottom: 25px !important;
    position: relative !important;
}

/* Clean orange accent separator line under the block titles */
.property-view .block-title-wrap::after,
.property-section-wrap .block-title-wrap::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 45px !important; /* Short accent line */
    height: 3px !important;
    background-color: #F36E08 !important; /* Orange accent color */
    border-radius: 3px !important;
}

.property-view .block-title-wrap h2,
.property-view .block-title-wrap h3,
.property-section-wrap .block-title-wrap h2,
.property-section-wrap .block-title-wrap h3 {
    font-family: 'Gilroy', 'Montserrat', 'Inter', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

@media screen and (max-width: 768px) {
    .property-view .block-title-wrap h2,
    .property-view .block-title-wrap h3,
    .property-section-wrap .block-title-wrap h2,
    .property-section-wrap .block-title-wrap h3 {
        font-size: 18px !important;
    }
}

/* Content within blocks */
.property-view .block-content-wrap,
.property-section-wrap .block-content-wrap {
    color: #475569 !important; /* Slate gray text */
    font-size: 15px !important;
    line-height: 1.6 !important;
}

@media screen and (max-width: 768px) {
    .property-view .block-content-wrap,
    .property-section-wrap .block-content-wrap {
        font-size: 14px !important;
    }
}

/* Style property description layout */
.property-description-wrap p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #475569 !important;
    margin-bottom: 16px !important;
}

/* Style property overview/stats data grid */
.property-overview-wrap .property-overview-data {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.property-overview-wrap .property-overview-data .row {
    background-color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 !important;
    gap: 20px 0 !important;
}

.property-overview-wrap .property-overview-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: none !important;
    padding: 0 !important;
}

.property-overview-wrap .property-overview-item i {
    font-size: 20px !important;
    color: #F36E08 !important; /* Orange icons */
}

.property-overview-wrap .property-overview-item .overview-title {
    font-size: 12px !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
}

.property-overview-wrap .property-overview-item .overview-value {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

/* Style Property Features List (checklist) */
.property-features-wrap .list-unstyled {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 12px 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.property-features-wrap .list-unstyled li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.4 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.property-features-wrap .list-unstyled li a {
    color: #475569 !important;
}

.property-features-wrap .list-unstyled li i {
    color: #F36E08 !important; /* Orange checkmarks */
    font-size: 16px !important;
}

/* Style details field list (Details block) */
.property-details-wrap .list-unstyled {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 10px 30px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.property-details-wrap .list-unstyled li {
    border-bottom: 1px dashed #e2e8f0 !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    color: #475569 !important;
    display: flex !important;
    justify-content: space-between !important;
    margin: 0 !important;
}

.property-details-wrap .list-unstyled li strong {
    font-weight: 500 !important;
    color: #334155 !important;
}

.property-details-wrap .list-unstyled li span {
    font-weight: 600 !important;
    color: #0f172a !important;
}

/* Style Map block */
.property-map-wrap iframe,
.property-map-wrap #houzez-simple-map {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
}




