
.me-store-locator {
    display: grid;
    gap: 40px;
}

.me-store-province-section {
    background: #ffffff;
    border: 1px solid #d9e2ec;
    padding: 32px 28px;
}

.me-store-province-header {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d9e2ec;
}

.me-store-province-header h2 {
    margin: 0;
    color: #133b73;
    font-size: clamp(2rem, 2.4vw, 2.9rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.me-store-area-block + .me-store-area-block {
    margin-top: 28px;
}

.me-store-area-head h3 {
    margin: 0 0 16px;
    color: #1e3d66;
    font-size: clamp(1.15rem, 1.6vw, 1.6rem);
    font-weight: 700;
}

.me-store-accordion-item {
    border-top: 1px solid #dbe3ec;
    border-left: 1px solid #dbe3ec;
    border-right: 1px solid #dbe3ec;
    background: #fff;
}

.me-store-accordion-item:last-child {
    border-bottom: 1px solid #dbe3ec;
}

.me-store-accordion-item + .me-store-accordion-item {
    margin-top: 14px;
}

.me-store-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    background: #eef3f7;
    color: #173b71;
    border: 0;
    border-left: 4px solid transparent;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.me-store-accordion-toggle:hover,
.me-store-accordion-toggle:focus-visible {
    background: #e8eef5;
    border-left-color: #173b71;
    outline: none;
}

.me-store-accordion-toggle[aria-expanded="true"] {
    background: #e7edf4;
    border-left-color: #173b71;
}

.me-store-accordion-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 1.5rem;
    line-height: 1;
    color: #173b71;
    font-weight: 400;
}

.me-store-accordion-panel {
    padding: 22px;
    background: #fff;
    border-top: 1px solid #dbe3ec;
}

.me-store-list {
    display: grid;
    gap: 18px;
}

.me-store-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.me-store-card__details {
    min-width: 0;
}

.me-store-card__top {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.me-store-card__logo {
    border: 1px solid #e2e8f0;
    background: #fff;
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.me-store-card__logo img {
    max-width: 100%;
    max-height: 96px;
    object-fit: contain;
}

.me-store-card__logo-placeholder,
.me-store-card__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5f7288;
    font-weight: 600;
    background: repeating-linear-gradient(
        45deg,
        #f8fafc,
        #f8fafc 12px,
        #eef3f8 12px,
        #eef3f8 24px
    );
}

.me-store-card__content h4 {
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 1.45vw, 1.75rem);
    line-height: 1.2;
    color: #173b71;
}

.me-store-card__address {
    margin: 0 0 16px;
    color: #304659;
    font-size: 1rem;
}

.me-store-card__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.me-store-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    padding: 0;
    background: transparent;
    color: #173b71;
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.me-store-contact-link:hover {
    color: #0e2a52;
    text-decoration: underline;
}

.me-store-icon {
    width: 18px;
    text-align: center;
    opacity: 0.8;
}

.me-store-card__map {
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.me-store-card__map iframe,
.me-store-card__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

.me-store-locator-empty {
    padding: 20px;
    border: 1px dashed #c7d2de;
    background: #f8fafc;
}

@media (max-width: 1024px) {
    .me-store-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .me-store-province-section {
        padding: 20px 16px;
    }

    .me-store-accordion-toggle,
    .me-store-accordion-panel,
    .me-store-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .me-store-card {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .me-store-card__top {
        grid-template-columns: 1fr;
    }

    .me-store-card__logo {
        min-height: 110px;
    }

    .me-store-card__map,
    .me-store-card__map iframe,
    .me-store-card__map-placeholder {
        min-height: 260px;
    }
}
