.store-locator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.store-locator-map {
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.store-locator-list {
    display: grid;
    gap: 24px;
}

.layout-grid .store-locator-list {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.layout-list .store-locator-list {
    grid-template-columns: 1fr;
}

.store-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.store-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.store-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card-content {
    padding: 20px;
}

.store-card-title {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.store-card-address {
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.store-card-phone,
.store-card-email,
.store-card-website {
    margin-bottom: 8px;
}

.store-card-phone a,
.store-card-email a,
.store-card-website a {
    color: #0073aa;
    text-decoration: none;
    font-size: 0.95rem;
}

.store-card-phone a:hover,
.store-card-email a:hover,
.store-card-website a:hover {
    text-decoration: underline;
}

/* Opening hours */
.store-card-hours {
    margin: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.store-hours-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    gap: 8px;
}

.store-hours-toggle:hover {
    color: #0073aa;
}

.store-hours-today-status {
    font-weight: 600;
    color: #1a7340;
}

.store-hours-today-status.store-hours-closed {
    color: #c0392b;
}

.store-hours-chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.store-hours-toggle.is-open .store-hours-chevron {
    transform: rotate(180deg);
}

.store-hours-panel {
    padding-bottom: 10px;
}

.store-hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    color: #555;
}

.store-hours-table td {
    padding: 4px 0;
    vertical-align: top;
}

.store-hours-day {
    width: 110px;
    color: #444;
}

.store-hours-today .store-hours-day,
.store-hours-today .store-hours-time {
    font-weight: 700;
    color: #1a1a1a;
}

.store-hours-closed {
    color: #c0392b;
}

.store-hours-unset {
    color: #aaa;
}

.store-hours-holidays {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed #ddd;
}

.store-hours-holidays-title {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 6px;
}

.store-hours-holiday-table .store-hours-day {
    width: 120px;
}

.store-card-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.social-link {
    display: inline-block;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.social-link:hover {
    background: #e0e0e0;
}

.social-facebook:hover {
    background: #1877f2;
    color: #fff;
}

.social-instagram:hover {
    background: #e4405f;
    color: #fff;
}

.social-twitter:hover {
    background: #1da1f2;
    color: #fff;
}

.social-linkedin:hover {
    background: #0077b5;
    color: #fff;
}

.social-youtube:hover {
    background: #ff0000;
    color: #fff;
}

.social-tiktok:hover {
    background: #000;
    color: #fff;
}

.social-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.store-locator-no-results {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .layout-grid .store-locator-list {
        grid-template-columns: 1fr;
    }

    .store-locator-map {
        height: 300px;
    }

    .store-card-content {
        padding: 16px;
    }
}
