.stores-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.store-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.store-info {
    padding: 1.5rem;
}

.store-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.store-details {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.store-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-details i {
    color: var(--primary-900);
    width: 20px;
}

.store-actions {
    display: flex;
    gap: 1rem;
}

.store-button {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.directions-btn {
    background-color: var(--primary-900);
    color: var(--btn-text);
}

.directions-btn:hover {
    background-color: var(--accent-color);
}


.store-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-button {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-900);
    border-radius: 6px;
    background: none;
    color: var(--primary-900);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-button.active,
.filter-button:hover {
    background-color: var(--primary-900);
    color: var(--btn-text);
}

.map-section {
    margin-top: 4rem;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.page-title {
    text-align: center;
    margin: 3rem 0;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.page-description {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}