/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Title of the Page */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-top: 40px;
    color: #333;
}

/* Container for all store cards */
.store-container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* Individual Store Card */
.store-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* Store Image */
.store-image {
    height: 200px;
    overflow: hidden;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.1);
}

/* Store Information Section */
.store-info {
    padding: 20px;
    text-align: center;
}

.store-link {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.store-link:hover {
    color: #3498db;
}

/* View Store Button */
.view-button {
    background-color: #3498db;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.view-button:hover {
    background-color: #2980b9;
}

/* No Stores Found Message */
.no-stores {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }

    .store-container {
        grid-template-columns: 1fr;
    }

    .store-link {
        font-size: 1.4rem;
    }

    .view-button {
        padding: 8px 12px;
    }
}
