:root {
    --abcsl-green: #73b33f;
    --abcsl-dark: #242424;
    --abcsl-orange: #D68000;
    --abcsl-soft: #f4f8ef;
    --abcsl-border: #cbdcb7;
    --abcsl-text: #000000;
    --abcsl-muted: #5d5d5d;
    --abcsl-radius: 20px;
}

.abcsl-home-locations,
.abcsl-store-locator {
    color: var(--abcsl-text);
    font-family: inherit;
}

.abcsl-locator-heading {
    text-align: center;
    margin-bottom: 24px;
}

.abcsl-locator-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
}

.abcsl-locator-heading p {
    margin: 0 auto;
    max-width: 620px;
    color: var(--abcsl-text);
    font-size: 16px;
    line-height: 1.45;
}

.abcsl-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 40px;
}

.abcsl-filter {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: var(--abcsl-soft);
    color: var(--abcsl-dark);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 11px 22px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.abcsl-filters button.abcsl-filter {
    font-weight: 500;
    background-color: #EFF7E9;
    color: #000;
    border: 0;
    border-radius: 200px;
    padding: 10px 25px;
    line-height: 1;
}
.abcsl-filter:hover,
.abcsl-filter:focus,
.abcsl-filter.is-active {
    background: #D68000 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.abcsl-map-wrap {
    position: relative;
    margin-bottom: 40px;
}

.abcsl-map {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #edf4e8;
}

.abcsl-map-notice {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 560px);
    background: #ffffff;
    border: 1px solid var(--abcsl-border);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    color: var(--abcsl-text);
    padding: 16px 18px;
    text-align: center;
    z-index: 1;
}

.abcsl-loading {
    margin: 0 0 18px;
    text-align: center;
    font-weight: 700;
    color: var(--abcsl-green);
}

.abcsl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
    column-gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.abcsl-grid.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.abcsl-card {
    background: #ffffff;
    border: 1px solid var(--abcsl-border);
    border-radius: var(--abcsl-radius);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    padding: 12px 12px 21px;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.abcsl-card:hover {
    border-color: var(--abcsl-green);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
}

.abcsl-card-image {
    display: block;
    background: var(--abcsl-soft);
    border-radius: 20px;
	overflow: hidden;
}

.abcsl-card-image img {
    width: 100%;
	min-height: 215px;
	max-height: 215px;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.abcsl-card:hover .abcsl-card-image img {
    transform: scale(1.04);
}

.abcsl-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--abcsl-green);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

/* .abcsl-card-body {
    padding: 18px 18px 16px;
} */

.abcsl-card-title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}
.abcsl-card-title a {
    font-size: 20px;
    font-weight: 600 !important;
    color: #000 !important;
    line-height: 1.2;
}

.abcsl-card-title a {
    color: var(--abcsl-dark);
    text-decoration: none;
}

.abcsl-card-title a:hover {
    color: var(--abcsl-green);
}

.abcsl-card-type {
    margin-bottom: 10px;
    color: #242424;
    font-size: 16px;
	line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.abcsl-card-description {
    margin: 0 0 20px;
    color: var(--abcsl-text);
    font-size: 14px;
    line-height: 1.6;
	min-height: 45px;
}

.abcsl-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    font-size: 14px;
    line-height: 1.35;
}

.abcsl-card-meta strong {
    color: var(--abcsl-orange);
}
.abcsl-card-meta span {
    font-weight: 600;
    color: #242424;
}
.abcsl-card-phone {
    margin-top: 10px;
}

.abcsl-card-phone a {
    color: var(--abcsl-dark) !important;
    font-weight: 600;
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.abcsl-card-phone a::before {
    content: "";
	height: 17px;
	width: 17px;
	background-image: url(/wp-content/uploads/2026/06/abc-icon-phone.svg);
	background-size: contain;
	background-position: center center;
    margin-right: 6px;
    color: var(--abcsl-dark);
}

.abcsl-home-button-wrap {
    margin-top: 40px;
    text-align: center;
}

.abcsl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    min-height: 42px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.abcsl-button-primary {
    background: var(--abcsl-orange);
    color: #ffffff !important;
	font-weight: 500;
}

.abcsl-button:hover,
.abcsl-button:focus {
    color: #ffffff;
    opacity: 0.92;
    transform: translateY(-1px);
}

.abcsl-empty-message {
    grid-column: 1 / -1;
    margin: 0;
    padding: 22px;
    background: var(--abcsl-soft);
    border: 1px solid var(--abcsl-border);
    border-radius: var(--abcsl-radius);
    text-align: center;
    font-weight: 700;
}

.abcsl-info-window {
    display: grid;
    gap: 6px;
    min-width: 190px;
    max-width: 260px;
    font-size: 13px;
    line-height: 1.35;
}

.abcsl-info-window strong {
    font-size: 14px;
}

.abcsl-info-window a {
    color: #000 !important;
    font-weight: 600;
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .abcsl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .abcsl-filters {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .abcsl-filter {
        flex: 0 0 auto;
        padding: 10px 17px;
    }

    .abcsl-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .abcsl-card-body {
        padding: 15px;
    }
}
