/* ===== Store Locator – Frontend ===== */

.sl-container {
    font-family: inherit;
    max-width: 1100px;
    margin: 0 auto;
}

/* Karta */
.sl-map-wrapper {
    width: 100%;
    height: 420px;
    margin-bottom: 32px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
#sl-map {
    width: 100%;
    height: 100%;
}

/* Kortlista */
.sl-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Kort */
.sl-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: box-shadow .2s;
}
.sl-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.sl-card--active {
    border-color: #2271b1;
    box-shadow: 0 0 0 2px #2271b1;
}

.sl-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #1d2327;
}

.sl-card__section {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.sl-card__section:last-child {
    margin-bottom: 0;
}
.sl-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.sl-card__section a {
    color: #2271b1;
    text-decoration: none;
}
.sl-card__section a:hover {
    text-decoration: underline;
}
.sl-map-link {
    font-size: .85rem;
    display: inline-block;
    margin-top: 4px;
}

/* Öppettider */
.sl-hours {
    font-size: .9rem;
    width: 100%;
}
.sl-hours__row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}
.sl-hours__row--closed {
    color: #999;
}
.sl-hours__day {
    font-weight: 600;
    min-width: 36px;
}
.sl-hours__time {
    text-align: right;
}

/* Responsive */
@media (max-width: 600px) {
    .sl-map-wrapper {
        height: 280px;
    }
    .sl-list {
        grid-template-columns: 1fr;
    }
}
