﻿
:root {
    --bg-color: #f4f6f9;
    --card-bg: #ffffff;
    --primary-color: #1e293b;
    --text-muted: #64748b;
    --accent-color: #0f766e;
    --border-color: #e2e8f0;
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body-store {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--primary-color);
    line-height: 1.5;
    padding: 2rem 1rem;
}

.container-store {
   margin-top:30px !important;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

    header h1 {
        font-size: 2.25rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

/* Responsive Flex Grid Layout alternative for standard web */
.store-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.store-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 1rem);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .store-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.image-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #cbd5e1;
    overflow: hidden;
}

/* SVG placeholder fallback representation */
.store-img {
    width: 500px;
    height:350px;
    object-fit: cover;
}

.tag-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card-content {
    padding: 1.5rem;
}

.store-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.info-label {
    font-weight: 600;
    width: 70px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.info-value {
    word-break: break-word;
}

    .info-value a {
        color: var(--accent-color);
        text-decoration: none;
    }

        .info-value a:hover {
            text-decoration: underline;
        }

/* Responsive Layout Adjustments */
@media (max-width: 992px) {
    .store-card {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 600px) {
    .store-card {
        width: 100%;
    }

    body {
        padding: 1rem;
    }
}
