/* Stores 2026 - modern layout for Shops/view */

.stores-2026 {
    --s-accent: #d82125;
    --s-accent-dark: #b01a1e;
    --s-text: #2a2a2a;
    --s-muted: #666;
    --s-border: #e5e5e5;
    --s-bg: #fff;
    --s-bg-soft: #fafafa;
    --s-radius: 10px;
    --s-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);

    color: var(--s-text);
    font-family: inherit;
}

.stores-2026 .stores-heading {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--s-text);
}

.stores-2026 .breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--s-muted);
}

.store-card {
    background: var(--s-bg);
    border: 1px solid var(--s-border);
    border-radius: var(--s-radius);
    box-shadow: var(--s-shadow);
    padding: 24px;
    margin: 0 0 24px;
    scroll-margin-top: 20px;
}

.store-card-header {
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--s-accent);
}

.store-card-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: var(--s-text);
    line-height: 1.2;
}

.store-body {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.store-map {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--s-radius);
    overflow: hidden;
    background: var(--s-bg-soft);
    border: 1px solid var(--s-border);
}

.store-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.store-contact {
    margin: 0;
    display: grid;
    grid-template-columns: 22px auto;
    column-gap: 12px;
    row-gap: 14px;
    align-items: start;
    font-size: 14px;
    line-height: 1.5;
}

.store-contact .store-contact-icon {
    grid-column: 1;
    width: 22px;
    height: 22px;
    color: var(--s-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-contact .store-contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-contact .store-contact-field {
    grid-column: 2;
    min-width: 0;
}

.store-contact .store-contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--s-muted);
    margin: 0 0 2px;
}

.store-contact .store-contact-value {
    display: block;
    font-size: 14px;
    color: var(--s-text);
    font-weight: 500;
    word-wrap: break-word;
}

.store-contact .store-contact-value a {
    color: var(--s-accent);
    text-decoration: none;
}

.store-contact .store-contact-value a:hover {
    text-decoration: underline;
}

.store-contact .store-contact-info .store-contact-value {
    font-weight: 400;
    color: var(--s-muted);
    line-height: 1.5;
}

.shop-gallery {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--s-border);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.shop-gallery-title {
    grid-column: 1 / -1;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--s-text);
}

.shop-gallery a {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 6px;
    background: var(--s-bg-soft);
    border: 1px solid var(--s-border);
    transition: transform .18s ease, box-shadow .18s ease;
}

.shop-gallery a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.shop-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .store-body {
        grid-template-columns: 1fr;
    }
    .store-map {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 600px) {
    .store-card {
        padding: 16px;
    }
    .store-card-header h2 {
        font-size: 20px;
    }
    .shop-gallery {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }
}

/* Mobile theme overrides (when .stores-2026.mobile) */
.stores-2026.mobile .store-card {
    padding: 14px;
    border-radius: 8px;
}

.stores-2026.mobile .store-body {
    grid-template-columns: 1fr;
    gap: 16px;
}

.stores-2026.mobile .store-map {
    aspect-ratio: 16 / 10;
}

.stores-2026.mobile .store-contact {
    font-size: 15px;
}

.stores-2026.mobile .shop-gallery {
    grid-template-columns: repeat(2, 1fr);
}

.stores-2026.mobile .store-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--s-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.stores-2026.mobile .store-nav-btn:hover,
.stores-2026.mobile .store-nav-btn:active {
    background: var(--s-accent-dark);
    color: #fff;
    text-decoration: none;
}

.stores-2026.mobile .store-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}
