:root {
    --ed-bg: #fbf7f3;
    --ed-card: #ffffff;
    --ed-text: #111111;
    --ed-muted: #68615c;
    --ed-border: #eadfd8;
    --ed-orange: #ef3e20;
    --ed-orange-dark: #d92f15;
    --ed-soft: #fff5f0;
    --ed-shadow: 0 14px 45px rgba(35, 24, 17, 0.08);
    --ed-radius: 18px;
    --ed-font-serif: Georgia, 'Times New Roman', serif;
    --ed-font-sans: Arial, Helvetica, sans-serif;
}

.ed-directory,
.ed-directory * {
    box-sizing: border-box;
}

.ed-directory {
    margin: 0;
    background: var(--ed-bg);
    color: var(--ed-text);
    font-family: var(--ed-font-sans);
    line-height: 1.45;
}

.ed-container {
    width: min(1320px, calc(100% - 34px));
    margin: 0 auto;
}

.ed-hero {
    position: relative;
    min-height: 350px;
    background: linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 38%, rgba(255,255,255,0.42) 70%, rgba(255,255,255,0.14) 100%), var(--ed-hero-image, none) center right / cover no-repeat;
    overflow: hidden;
}

.ed-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 40%, rgba(255,255,255,0.3), transparent 42%);
    pointer-events: none;
}

.ed-hero-inner {
    position: relative;
    min-height: 350px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
    align-items: center;
    padding: 26px 0 46px;
}

.ed-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    color: #211b18;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.ed-category-dropdown-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--ed-border);
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    font-weight: 800;
}

.ed-category-select {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--ed-text);
    font-weight: 800;
    cursor: pointer;
    padding-right: 18px;
    outline: none;
}

.ed-hero h1 {
    font-family: var(--ed-font-serif);
    font-size: clamp(39px, 4.1vw, 68px);
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.05;
    margin: 12px 0 8px;
}

.ed-hero-subtitle {
    font-family: var(--ed-font-serif);
    font-size: clamp(25px, 2.1vw, 34px);
    color: var(--ed-orange);
    max-width: 670px;
    margin: 0 0 18px;
    line-height: 1.18;
}

.ed-hero-description {
    max-width: 650px;
    font-size: 15px;
    font-weight: 700;
    color: #1f1d1b;
    margin: 0;
}

.ed-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 28px;
    font-size: 13px;
    font-weight: 800;
}

.ed-trust-row span {
    white-space: nowrap;
}

.ed-trust-row span::first-letter,
.ed-field-icon,
.ed-hero-card-icon {
    color: var(--ed-orange);
}

.ed-hero-card {
    align-self: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 18px;
    padding: 28px;
    min-height: 190px;
    box-shadow: var(--ed-shadow);
}

.ed-hero-card-icon {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--ed-orange);
    color: #fff;
    margin-bottom: 14px;
    font-size: 21px;
}

.ed-hero-card h3 {
    font-family: var(--ed-font-serif);
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.ed-hero-card p {
    font-size: 14px;
    margin: 8px 0;
    color: #342b27;
}

.ed-search-section {
    margin-top: -34px;
    position: relative;
    z-index: 5;
}

.ed-search-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 220px;
    background: #fff;
    border: 1px solid var(--ed-border);
    border-radius: 12px;
    box-shadow: var(--ed-shadow);
    overflow: hidden;
}

.ed-search-field {
    min-height: 76px;
    display: grid;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 14px;
    align-items: center;
    padding: 12px 22px;
    border-right: 1px solid var(--ed-border);
}

.ed-field-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--ed-soft);
    font-size: 20px;
}

.ed-search-field strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.ed-search-field input,
.ed-filter-card input[type='text'],
.ed-filter-card input[type='search'],
.ed-results-tools select,
.ed-inquiry-form input,
.ed-inquiry-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--ed-text);
    font: inherit;
}

.ed-search-field input::placeholder,
.ed-filter-card input::placeholder {
    color: #8c827c;
}

.ed-main-search-btn,
.ed-apply-btn,
.ed-card-btn-primary {
    border: none;
    background: var(--ed-text);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    border-radius: 9px;
    transition: transform .18s ease, background .18s ease;
}

.ed-main-search-btn:hover,
.ed-apply-btn:hover,
.ed-card-btn-primary:hover {
    background: var(--ed-orange);
    transform: translateY(-1px);
}

.ed-main-search-btn {
    margin: 14px;
    min-height: 50px;
    font-size: 15px;
}

.ed-chip-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px auto 16px;
}

.ed-chip {
    height: 35px;
    padding: 0 22px;
    border: 1px solid var(--ed-border);
    background: #fff;
    color: var(--ed-text);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.ed-chip.is-active,
.ed-chip:hover {
    border-color: var(--ed-orange);
    color: var(--ed-orange);
    background: #fff7f4;
}

.ed-main-grid {
    display: grid;
    grid-template-columns: 260px minmax(0,1fr) 410px;
    gap: 20px;
    align-items: start;
    padding: 0 0 34px;
}

.ed-filter-card,
.ed-results-card,
.ed-side-map-card,
.ed-popular-card,
.ed-why-card,
.ed-benefit-grid article {
    background: #fff;
    border: 1px solid var(--ed-border);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(33, 24, 18, 0.04);
}

.ed-filter-card {
    padding: 18px;
    position: sticky;
    top: 24px;
}

.ed-filter-head,
.ed-results-head,
.ed-popular-head,
.ed-filter-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.ed-filter-head h3,
.ed-results-head h3,
.ed-popular-card h3,
.ed-why-card h3 {
    margin: 0;
    font-family: var(--ed-font-serif);
}

.ed-filter-head button,
.ed-more-btn,
.ed-popular-head button {
    border: none;
    background: transparent;
    color: var(--ed-orange);
    font-weight: 900;
    cursor: pointer;
}

.ed-filter-group {
    border-top: 1px solid #efe5df;
    padding: 16px 0;
}

.ed-filter-group label,
.ed-filter-title-row label {
    font-weight: 900;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.ed-filter-card input[type='text'] {
    height: 42px;
    border: 1px solid #dfd4cd;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
}

.ed-filter-card input[type='range'] {
    width: 100%;
    accent-color: var(--ed-orange);
}

.ed-range-legend {
    display: flex;
    justify-content: space-between;
    color: #796f69;
    font-size: 11px;
    margin-top: 6px;
}

.ed-checkbox-list,
.ed-radio {
    display: grid;
    gap: 8px;
}

.ed-checkbox,
.ed-radio {
    grid-template-columns: 18px 1fr;
    align-items: center;
    color: #504842;
    font-size: 13px;
    font-weight: 500 !important;
    margin: 0 0 8px !important;
}

.ed-checkbox input,
.ed-radio input {
    accent-color: var(--ed-orange);
}

.ed-apply-btn {
    width: 100%;
    min-height: 48px;
    background: var(--ed-orange);
}

.ed-apply-btn:hover {
    background: var(--ed-orange-dark);
}

.ed-results-card {
    overflow: hidden;
}

.ed-results-head {
    min-height: 62px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ed-border);
}

.ed-results-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ed-results-tools select {
    height: 38px;
    min-width: 238px;
    border: 1px solid var(--ed-border);
    border-radius: 6px;
    padding: 0 10px;
    background: #fff;
}

.ed-view-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--ed-border);
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
}

.ed-view-btn.is-active,
.ed-view-btn:hover {
    border-color: var(--ed-orange);
    background: var(--ed-soft);
    color: var(--ed-orange);
}

.ed-results-list {
    display: grid;
}

.ed-results-list.is-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.ed-listing-card {
    position: relative;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 96px 132px;
    gap: 18px;
    align-items: center;
    padding: 18px 18px;
    border-bottom: 1px solid #eee2dc;
    min-height: 132px;
    background: #fff;
}

.ed-results-list.is-grid .ed-listing-card {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 16px;
    border-right: 1px solid #eee2dc;
}

.ed-listing-image {
    position: relative;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3e7e0;
}

.ed-results-list.is-grid .ed-listing-image {
    width: 100%;
    height: 155px;
}

.ed-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ed-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--ed-orange);
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 900;
}

.ed-listing-main {
    min-width: 0;
}

.ed-listing-main h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px;
    font-family: var(--ed-font-serif);
    font-size: 22px;
    line-height: 1.05;
}

.ed-verified {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 11px;
    flex: 0 0 auto;
}

.ed-meta-line,
.ed-rating-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #6b625d;
    font-size: 12px;
    margin-bottom: 4px;
}

.ed-rating-stars {
    color: var(--ed-orange);
    letter-spacing: 1px;
    font-size: 12px;
}

.ed-service-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 9px;
}

.ed-service-tags span {
    padding: 5px 10px;
    background: #f4eeea;
    border-radius: 5px;
    color: #554c47;
    font-size: 12px;
    font-weight: 700;
}

.ed-score-box {
    justify-self: center;
    text-align: center;
}

.ed-price {
    font-weight: 900;
    margin-bottom: 8px;
    font-size: 13px;
}

.ed-score-circle {
    width: 42px;
    height: 42px;
    border: 3px solid #27b35a;
    color: #138d3c;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin: 0 auto 3px;
    background: #fff;
}

.ed-score-text {
    font-size: 10px;
    color: #16843f;
    font-weight: 800;
}

.ed-actions {
    display: grid;
    gap: 8px;
}

.ed-card-btn,
.ed-card-btn-primary {
    min-height: 35px;
    border-radius: 6px;
    font-weight: 900;
    cursor: pointer;
    border: 1px solid var(--ed-border);
    background: #fff;
    color: var(--ed-text);
}

.ed-card-btn:hover {
    border-color: var(--ed-orange);
    color: var(--ed-orange);
}

.ed-card-btn-primary {
    border: none;
}

.ed-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--ed-border);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    color: #9c8d85;
}

.ed-fav-btn.is-active {
    background: var(--ed-orange);
    color: #fff;
    border-color: var(--ed-orange);
}

.ed-results-map {
    display: none;
    height: 620px;
    width: 100%;
    background: #e8e5df;
}

.ed-results-card.is-map .ed-results-list,
.ed-results-card.is-map .ed-pagination {
    display: none;
}

.ed-results-card.is-map .ed-results-map {
    display: block;
}

.ed-side-panel {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.ed-side-map-card {
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.ed-side-map {
    width: 100%;
    height: 290px;
    border-radius: 10px;
    background: #e8e5df;
    overflow: hidden;
}

.ed-map-expand {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    border: none;
    background: #111;
    color: #fff;
    border-radius: 5px;
    padding: 11px 24px;
    font-weight: 900;
    cursor: pointer;
    z-index: 401;
}

.ed-popular-card,
.ed-why-card {
    padding: 18px;
}

.ed-popular-services {
    display: grid;
    margin-top: 10px;
}

.ed-popular-service {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-top: 1px solid #eee2dc;
    padding: 9px 0;
    background: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
    text-align: left;
    color: var(--ed-text);
}

.ed-popular-service strong {
    white-space: nowrap;
}

.ed-why-card p {
    margin: 8px 0;
    font-size: 14px;
}

.ed-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 36px;
}

.ed-benefit-grid article {
    min-height: 82px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 15px;
    align-items: center;
}

.ed-benefit-grid span {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ed-soft);
    color: var(--ed-orange);
}

.ed-benefit-grid strong {
    font-weight: 900;
}

.ed-benefit-grid p {
    margin: 2px 0 0;
    color: #675f5a;
    font-size: 12px;
}

.ed-pagination {
    display: flex;
    justify-content: center;
    gap: 9px;
    padding: 18px;
}

.ed-page-btn {
    min-width: 36px;
    height: 36px;
    border: 1px solid var(--ed-border);
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
}

.ed-page-btn.is-active,
.ed-page-btn:hover {
    background: var(--ed-orange);
    border-color: var(--ed-orange);
    color: #fff;
}

.ed-marker {
    width: 34px !important;
    height: 34px !important;
    display: grid;
    place-items: center;
    margin-left: -17px !important;
    margin-top: -34px !important;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--ed-orange);
    border: 3px solid #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.ed-marker span {
    transform: rotate(45deg);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
}

.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.ed-map-popup strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--ed-font-serif);
    font-size: 16px;
}

.ed-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    place-items: center;
    padding: 20px;
    z-index: 9999;
}

.ed-modal.is-open {
    display: grid;
}

.ed-modal-dialog,
.ed-map-modal-dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: 88vh;
    overflow: auto;
    background: #fff;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 25px 75px rgba(0,0,0,0.28);
}

.ed-map-modal-dialog {
    width: min(1180px, 100%);
    padding: 12px;
}

.ed-modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    width: 34px;
    height: 34px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    font-size: 20px;
}

.ed-profile-hero {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    align-items: center;
}

.ed-profile-hero img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
}

.ed-profile-hero h2 {
    font-family: var(--ed-font-serif);
    margin: 0 0 6px;
}

.ed-inquiry-form {
    display: grid;
    gap: 12px;
}

.ed-inquiry-form input,
.ed-inquiry-form textarea {
    border: 1px solid var(--ed-border);
    border-radius: 8px;
    min-height: 44px;
    padding: 10px 12px;
}

.ed-inquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ed-form-success {
    display: none;
    color: #138d3c;
    font-weight: 900;
}

.ed-large-map {
    height: 78vh;
    width: 100%;
    border-radius: 12px;
    background: #e8e5df;
}

.ed-empty-state {
    padding: 40px 20px;
    text-align: center;
    color: #6b625d;
}

@media (max-width: 1180px) {
    .ed-main-grid {
        grid-template-columns: 250px minmax(0,1fr);
    }

    .ed-side-panel {
        grid-column: 1 / -1;
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .ed-side-map-card {
        grid-column: 1 / -1;
    }

    .ed-side-map {
        height: 360px;
    }

    .ed-listing-card {
        grid-template-columns: 160px minmax(0,1fr) 88px 120px;
    }
}

@media (max-width: 900px) {
    .ed-hero-inner {
        grid-template-columns: 1fr;
    }

    .ed-hero-card {
        max-width: 360px;
    }

    .ed-search-bar {
        grid-template-columns: 1fr;
    }

    .ed-search-field {
        border-right: none;
        border-bottom: 1px solid var(--ed-border);
    }

    .ed-main-grid {
        grid-template-columns: 1fr;
    }

    .ed-filter-card,
    .ed-side-panel {
        position: static;
    }

    .ed-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ed-results-tools {
        width: 100%;
        flex-wrap: wrap;
    }

    .ed-results-tools select {
        flex: 1 1 220px;
        min-width: 0;
    }

    .ed-listing-card {
        grid-template-columns: 135px minmax(0,1fr);
        align-items: start;
    }

    .ed-score-box,
    .ed-actions {
        grid-column: 2;
        justify-self: stretch;
    }

    .ed-actions {
        grid-template-columns: 1fr 1fr;
    }

    .ed-results-list.is-grid {
        grid-template-columns: 1fr;
    }

    .ed-side-panel,
    .ed-benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .ed-container {
        width: min(100% - 22px, 1320px);
    }

    .ed-hero h1 {
        letter-spacing: 0.03em;
    }

    .ed-listing-card,
    .ed-profile-hero {
        grid-template-columns: 1fr;
    }

    .ed-listing-image {
        height: 190px;
    }

    .ed-score-box,
    .ed-actions {
        grid-column: auto;
    }

    .ed-actions {
        grid-template-columns: 1fr;
    }

    .ed-search-section {
        margin-top: -18px;
    }
}

/* Bricks child theme hardening fixes */
.ed-checkbox,
.ed-radio {
    display: grid;
}
.ed-directory button,
.ed-directory input,
.ed-directory select,
.ed-directory textarea {
    font-family: inherit;
}
.ed-directory .leaflet-container {
    font-family: var(--ed-font-sans);
    z-index: 1;
}
@media (max-width: 1360px) and (min-width: 1181px) {
    .ed-container { width: min(1240px, calc(100% - 30px)); }
    .ed-main-grid { grid-template-columns: 245px minmax(0,1fr) 360px; gap: 16px; }
    .ed-listing-card { grid-template-columns: 145px minmax(0,1fr) 82px 118px; gap: 12px; }
    .ed-listing-main h3 { font-size: 19px; }
}

/* ==========================================================
   Elenya v1.3 archive design parity fixes
   Keeps the page close to the supplied screenshot on Bricks archives.
   ========================================================== */
.ed-directory {
    --ed-bg: #fbf7f3;
    --ed-border: #eadfd8;
    --ed-orange: #ef3f22;
    --ed-text: #0c0b0b;
    --ed-muted: #645b55;
    --ed-soft: #fff2ed;
    --ed-shadow: 0 10px 34px rgba(44, 31, 22, .07);
    font-size: 14px;
}

.ed-container {
    width: min(1240px, calc(100% - 48px));
}

.ed-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
    flex: 0 0 auto;
}

.ed-svg-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

.ed-hero {
    min-height: 318px;
    background-position: center right;
    background-size: cover;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 32%, rgba(255,255,255,.72) 51%, rgba(255,255,255,.28) 76%, rgba(255,255,255,.08) 100%),
        var(--ed-hero-image, none);
}

.ed-hero-inner {
    min-height: 318px;
    grid-template-columns: minmax(0, 1fr) 258px;
    padding: 22px 0 54px;
}

.ed-breadcrumb {
    margin-bottom: 12px;
    font-size: 12px;
}

.ed-category-dropdown-wrap {
    min-width: 205px;
    height: 39px;
    padding: 0 16px;
    background: rgba(255,255,255,.92);
    box-shadow: none;
}

.ed-hero h1 {
    font-size: clamp(42px, 4.1vw, 58px);
    letter-spacing: .085em;
    margin: 15px 0 8px;
    font-weight: 500;
}

.ed-hero-subtitle {
    font-size: clamp(24px, 2.2vw, 34px);
    max-width: 650px;
    margin-bottom: 16px;
}

.ed-hero-description {
    max-width: 610px;
    font-size: 14px;
    line-height: 1.45;
}

.ed-trust-row {
    gap: 31px;
    margin-top: 26px;
    font-size: 12px;
    align-items: center;
}

.ed-trust-row span,
.ed-why-card p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ed-trust-row .ed-svg-icon,
.ed-why-card .ed-svg-icon {
    color: var(--ed-orange);
    font-size: 18px;
}

.ed-hero-card {
    width: 230px;
    min-height: 165px;
    padding: 23px 25px;
    border-radius: 15px;
    box-shadow: 0 16px 45px rgba(50, 35, 23, .08);
}

.ed-hero-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 13px;
}

.ed-hero-card-icon .ed-svg-icon {
    color: #fff;
    font-size: 20px;
}

.ed-hero-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.ed-hero-card p {
    font-size: 12px;
    line-height: 1.35;
    margin: 7px 0;
}

.ed-search-section {
    margin-top: -35px;
}

.ed-search-bar {
    grid-template-columns: 1.18fr 1.18fr .9fr 205px;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(44, 31, 22, .09);
}

.ed-search-field {
    min-height: 68px;
    grid-template-columns: 41px minmax(0,1fr);
    gap: 15px;
    padding: 10px 22px;
}

.ed-field-icon {
    width: 41px;
    height: 41px;
    border-radius: 8px;
    color: var(--ed-orange);
}

.ed-field-icon .ed-svg-icon {
    font-size: 20px;
}

.ed-search-field strong {
    font-size: 13px;
}

.ed-search-field input {
    font-size: 12px;
}

.ed-main-search-btn {
    min-height: 46px;
    margin: 11px;
    border-radius: 6px;
    font-size: 13px;
}

.ed-chip-row {
    gap: 10px;
    margin: 17px auto 18px;
}

.ed-chip {
    height: 32px;
    padding: 0 19px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
}

.ed-chip .ed-svg-icon {
    color: var(--ed-orange);
    font-size: 14px;
}

.ed-main-grid {
    grid-template-columns: 220px minmax(0, 1fr) 350px;
    gap: 20px;
    padding-bottom: 36px;
}

.ed-filter-card,
.ed-results-card,
.ed-side-map-card,
.ed-popular-card,
.ed-why-card,
.ed-benefit-grid article {
    border-radius: 9px;
    border-color: #e8ddd6;
    box-shadow: 0 6px 20px rgba(33, 24, 18, .035);
}

.ed-filter-card {
    padding: 16px;
    top: 18px;
}

.ed-filter-head h3,
.ed-results-head h3,
.ed-popular-card h3,
.ed-why-card h3 {
    font-size: 18px;
}

.ed-filter-head button,
.ed-more-btn,
.ed-popular-head button {
    font-size: 12px;
}

.ed-filter-group {
    padding: 13px 0;
}

.ed-filter-group label,
.ed-filter-title-row label {
    font-size: 12px;
    margin-bottom: 8px;
}

.ed-filter-card input[type='text'] {
    height: 37px;
    font-size: 12px;
}

.ed-checkbox,
.ed-radio {
    font-size: 11.5px;
    gap: 7px;
}

.ed-filter-group-gender,
.ed-filter-group-rating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
}

.ed-filter-group-gender > label:first-child,
.ed-filter-group-rating > label:first-child {
    grid-column: 1 / -1;
}

.ed-apply-btn {
    min-height: 43px;
    border-radius: 6px;
    font-size: 13px;
}

.ed-results-head {
    min-height: 53px;
    padding: 10px 14px;
}

.ed-results-tools select {
    height: 35px;
    min-width: 212px;
    font-size: 12px;
}

.ed-view-btn {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
}

.ed-view-btn .ed-svg-icon {
    font-size: 17px;
}

.ed-listing-card {
    grid-template-columns: 126px minmax(0, 1fr) 74px 178px;
    gap: 12px;
    min-height: 95px;
    padding: 11px 14px;
    align-items: center;
}

.ed-listing-image {
    height: 68px;
    border-radius: 5px;
}

.ed-badge {
    top: 6px;
    left: 6px;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 9px;
    letter-spacing: .02em;
}

.ed-listing-main h3 {
    font-size: 19px;
    line-height: 1.02;
    margin-bottom: 3px;
    max-width: 100%;
}

.ed-listing-main h3 > span:first-child {
    min-width: 0;
}

.ed-verified {
    width: 15px;
    height: 15px;
    font-size: 10px;
}

.ed-verified .ed-svg-icon {
    font-size: 10px;
}

.ed-meta-line,
.ed-rating-line {
    gap: 6px;
    font-size: 10.5px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.ed-rating-stars {
    font-size: 10px;
    letter-spacing: .5px;
}

.ed-service-tags {
    gap: 5px;
    margin-top: 5px;
}

.ed-service-tags span {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
}

.ed-price {
    font-size: 11px;
    margin-bottom: 4px;
    white-space: nowrap;
}

.ed-score-circle {
    width: 35px;
    height: 35px;
    border-width: 2px;
    font-size: 12px;
}

.ed-score-text {
    font-size: 8.5px;
}

.ed-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ed-card-btn,
.ed-card-btn-primary {
    min-height: 32px;
    height: 32px;
    padding: 0 7px;
    font-size: 11.5px;
    border-radius: 5px;
    line-height: 1.1;
}

.ed-fav-btn {
    width: 24px;
    height: 24px;
    top: 9px;
    right: 9px;
    display: grid;
    place-items: center;
}

.ed-fav-btn .ed-svg-icon {
    font-size: 13px;
}

.ed-side-panel {
    gap: 14px;
    top: 18px;
}

.ed-side-map-card {
    padding: 7px;
}

.ed-side-map {
    height: 205px;
    border-radius: 7px;
}

.ed-map-expand {
    bottom: 18px;
    border-radius: 4px;
    padding: 9px 24px;
    font-size: 12px;
}

.ed-popular-card,
.ed-why-card {
    padding: 16px 18px;
}

.ed-popular-service {
    padding: 8px 0;
    font-size: 12px;
}

.ed-popular-service strong {
    font-size: 12px;
}

.ed-why-card p {
    font-size: 12px;
    margin: 7px 0;
}

.ed-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 36px;
}

.ed-benefit-grid article {
    min-height: 76px;
    padding: 16px 20px;
    grid-template-columns: 44px 1fr;
}

.ed-benefit-grid span {
    width: 44px;
    height: 44px;
}

.ed-benefit-grid .ed-svg-icon {
    font-size: 23px;
}

.ed-benefit-grid strong {
    font-size: 13px;
}

.ed-benefit-grid p {
    font-size: 11px;
}

.ed-pagination {
    padding: 15px;
}

.ed-page-btn {
    min-width: 31px;
    height: 31px;
    border-radius: 5px;
    font-size: 12px;
}

.ed-marker {
    width: 30px !important;
    height: 30px !important;
    margin-left: -15px !important;
    margin-top: -30px !important;
}

.ed-marker span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    display: block;
    transform: rotate(45deg);
}

@media (max-width: 1280px) and (min-width: 1181px) {
    .ed-container { width: min(1180px, calc(100% - 42px)); }
    .ed-main-grid { grid-template-columns: 208px minmax(0, 1fr) 320px; gap: 16px; }
    .ed-listing-card { grid-template-columns: 112px minmax(0,1fr) 64px 154px; gap: 10px; padding: 10px 12px; }
    .ed-listing-image { height: 62px; }
    .ed-listing-main h3 { font-size: 17px; }
    .ed-actions { gap: 6px; }
    .ed-card-btn, .ed-card-btn-primary { font-size: 10.5px; padding: 0 5px; }
    .ed-side-map { height: 190px; }
}

@media (max-width: 1180px) {
    .ed-container { width: min(100% - 34px, 980px); }
    .ed-main-grid { grid-template-columns: 230px minmax(0, 1fr); gap: 16px; }
    .ed-side-panel { grid-column: 1 / -1; position: static; grid-template-columns: 1fr 1fr; }
    .ed-side-map-card { grid-column: 1 / -1; }
    .ed-side-map { height: 320px; }
    .ed-listing-card { grid-template-columns: 118px minmax(0, 1fr) 66px 156px; gap: 10px; }
    .ed-listing-main h3 { font-size: 17px; }
}

@media (max-width: 900px) {
    .ed-container { width: min(100% - 24px, 720px); }
    .ed-hero { min-height: 0; }
    .ed-hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 28px 0 62px; }
    .ed-hero-card { max-width: 310px; width: 100%; }
    .ed-search-bar { grid-template-columns: 1fr; }
    .ed-main-grid { grid-template-columns: 1fr; }
    .ed-filter-card, .ed-side-panel { position: static; }
    .ed-side-panel, .ed-benefit-grid { grid-template-columns: 1fr; }
    .ed-listing-card { grid-template-columns: 128px minmax(0,1fr); align-items: start; }
    .ed-score-box, .ed-actions { grid-column: 2; justify-self: stretch; }
    .ed-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .ed-container { width: min(100% - 20px, 460px); }
    .ed-hero h1 { font-size: 36px; letter-spacing: .05em; }
    .ed-hero-subtitle { font-size: 23px; }
    .ed-trust-row { gap: 14px; }
    .ed-listing-card { grid-template-columns: 1fr; }
    .ed-listing-image { height: 180px; }
    .ed-score-box, .ed-actions { grid-column: auto; }
    .ed-results-tools select { min-width: 100%; }
}

.ed-pagination{
    display: inline;
    text-align: center;
}
.ed-directory button, .ed-directory input, .ed-directory select, .ed-directory textarea{
    text-align:center;
}
.ed-results-card{
    padding:0;
}
.ed-results-head{
    min-width: 100%;
    display: inline-block;
}
