.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;
}

.store-card-hours {
    margin: 12px 0;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.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;
    }
}
