/**
 * Store Locator List Shortcode Styles
 *
 * @package NB_Afhaalpunten
 * @since 1.8.0
 */

.nb-store-locator-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 20px;
}

.nb-store-locator-list__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.nb-store-locator-list__intro,
.nb-store-locator-list__filter {
    min-width: 350px;
}

.nb-store-locator-list__filter {
    display: flex;
    justify-content: flex-end;
}

.nb-store-locator-list__filter-select {
    max-width: 350px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.nb-store-locator-list__title,
.nb-store-locator-list__description {
    margin: 0 0 10px;
}

.nb-store-locator-list__item {
    position: relative;
    display: grid;
    grid-template-columns: 31% 1fr;
    border: 1px solid #D9D9D9;
    color: #414042;
}

.nb-store-locator-list__item:hover {
    background: #f5f5f5;
}

.nb-store-locator-list__item .nb-store-locator-list__item-link::after {
    content: '';
    position: absolute;
    inset: 0;
    display: flex;
    z-index: 1;
}

.nb-store-locator-list__item-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

img.nb-store-locator-list__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nb-store-locator-list__item-content {
    padding: 15px;
    display: grid;
    line-height: 100%;
}

.nb-store-locator-list__item-content::after {
    content: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDggMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2LjM1NzE0TDEgMTEiIHN0cm9rZT0iIzQxNDA0MiIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPg==');
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: auto;
    height: auto;
}

.nb-store-locator-list__item-city {
    font-size: 1.1em;
    font-weight: bold;
    color: #3F5C73;
}

h3.nb-store-locator-list__item-title {
    font-size: 0.85em;
    margin-block: 3px;
}

.nb-store-locator-list__item-title a {
    color: #414042;
    font-weight: 600;
}

.nb-store-locator-list__item-address {
    font-size: 0.85em;
    font-style: normal;
}

.nb-store-locator-list__item-province {
    font-weight: 500;
    color: #5881A1;
}

.nb-store-locator-list__empty {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nb-store-locator-list__header {
        flex-direction: column;
        align-items: stretch;
    }

    .nb-store-locator-list__intro,
    .nb-store-locator-list__filter {
        min-width: 100%;
    }

    .nb-store-locator-list__filter {
        justify-content: stretch;
    }

    .nb-store-locator-list__filter-select {
        max-width: 100%;
    }

    .nb-store-locator-list__grid {
        grid-template-columns: 1fr;
    }
}
