/* ================================================================
   Shop Local Arlington — Styles
   ================================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #3b5998;       /* soft blue — calm / approachable feel */
    --color-primary-light: #5a7abf;
    --color-primary-dark: #2c3e6b;
    --color-accent: #e8a838;        /* warm gold */
    --color-bg: #f7f7fa;
    --color-surface: #fcfcfc;
    --color-text: #181818;
    --color-text-muted: #888;
    --color-border: #ededed;
    --color-street-badge: #2563eb;
    --color-interior-badge: #9333ea;
    --top-bar-height: 56px;
    --sidebar-width: 320px;
    --panel-height: 200px;
    --transition-speed: 0.3s;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html, body {
    height: 100%;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-bg);
    overflow: hidden;
}

/* ---------- Top Bar ---------- */
#top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(44,62,107,0.88) 60%, rgba(61,90,153,0.82) 100%);
    color: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.top-bar-left {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-left: 128px;
}

.top-bar-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7eb8da;
    white-space: nowrap;
}

.top-bar-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
}

.brand-icon {
    font-size: 1.4rem;
}

#sidebar-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: background var(--transition-speed);
}

#sidebar-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-street {
    background: var(--color-street-badge);
    color: #fff;
}

.badge-gallery {
    background: #059669;
    color: #fff;
}

.badge-interior {
    background: var(--color-interior-badge);
    color: #fff;
}

/* ---------- Sidebar ---------- */
#sidebar {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    z-index: 900;
    overflow-y: auto;
    transition: transform var(--transition-speed) ease;
}

#sidebar.sidebar-closed {
    transform: translateX(-100%);
}

#sidebar.sidebar-open {
    transform: translateX(0);
}

#sidebar-header {
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
}

#sidebar-header h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

#category-filter {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    background: var(--color-bg);
    cursor: pointer;
}

#shop-list {
    list-style: none;
    padding: 8px 0;
}

.shop-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-speed);
}

.shop-item:hover {
    background: var(--color-bg);
}

.shop-item.active {
    background: rgba(59, 89, 152, 0.08);
    border-left: 3px solid var(--color-primary);
}

.shop-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.shop-item-category {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---------- Viewer Container ---------- */
#viewer-container {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow-y: auto;
    background: var(--color-bg);
}

/* ---------- Photo Grid ---------- */
#photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    padding: 32px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.modern-grid {
    background: #f7f7fa;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.shop-card {
    background: var(--color-surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.shop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.shop-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Card Image Carousel ---------- */
.shop-card-carousel {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #eaeaea;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
}

.carousel-arrow:hover {
    background: #fff;
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-counter {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 10px;
    z-index: 2;
}

.shop-card-placeholder {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(255,255,255,0.5);
    z-index: 1;
}

.shop-card-category {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: #fff;
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.shop-card-content {
    padding: 18px 16px 16px 16px;
}

.shop-card-name {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}

.shop-card-description {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.shop-card-btn {
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 14px;
    font-family: var(--font-family);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.shop-card-btn:hover {
    background: var(--color-primary-light);
}

#street-view,
#pannellum-view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#pannellum-view.hidden,
#loading-overlay.hidden {
    display: none;
}

/* ---------- Loading Overlay ---------- */
#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 800;
    color: #fff;
    font-size: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Shop Info Panel ---------- */
#shop-info-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 950;
    padding: 16px 20px;
    transition: transform var(--transition-speed) ease;
}

#shop-info-panel.panel-hidden {
    transform: translateY(100%);
}

#shop-info-panel.panel-visible {
    transform: translateY(0);
}

#panel-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
}

#panel-close:hover {
    color: var(--color-text);
}

#panel-shop-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

#panel-shop-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

#panel-details {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detail-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--color-primary);
    color: #fff;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

#panel-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background var(--transition-speed), transform 0.15s;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-light);
}

.btn-secondary {
    background: var(--color-bg);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border);
}

/* ---------- Floating Back Button (360° view) ---------- */
.pano-back-btn {
    position: fixed;
    top: calc(var(--top-bar-height) + 16px);
    left: 16px;
    z-index: 1100;
    background: rgba(255,255,255,0.95);
    color: var(--color-primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-family: var(--font-family);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.15s;
}

.pano-back-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.pano-back-btn.hidden {
    display: none;
}

/* ---------- Pannellum Overrides ---------- */
.pnlm-hotspot.back-to-street-hotspot {
    background: var(--color-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-family);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    border: 2px solid #fff;
    width: auto !important;
    height: auto !important;
}

.pnlm-hotspot.back-to-street-hotspot:hover {
    background: var(--color-primary-light);
    transform: scale(1.05);
}

.pnlm-hotspot.shop-info-hotspot {
    background: var(--color-accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: pointer;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 280px;
    }

    .top-bar-left {
        padding-left: 0;
    }

    .top-bar-left h1 {
        font-size: 1.2rem;
    }

    .top-bar-eyebrow {
        display: none;
    }

    #shop-info-panel {
        padding: 12px 14px;
    }

    #panel-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --sidebar-width: 100%;
    }

    .brand-icon {
        display: none;
    }
}

/* ================================================================
   Navigation Links (cross-page)
   ================================================================ */

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nav-back {
    color: #fff;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-back:hover {
    background: rgba(255,255,255,0.15);
}

/* ================================================================
   Side Nav — Collapsible (shared across all pages)
   ================================================================ */

#nav-toggle {
    position: fixed;
    top: 14px;
    left: 16px;
    z-index: 1100;
    background: rgba(0,0,0,0.35);
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
#nav-toggle:hover { background: rgba(0,0,0,0.55); }

.nav-icon-close { display: none; }
#nav-toggle[aria-expanded="true"] .nav-icon-open  { display: none; }
#nav-toggle[aria-expanded="true"] .nav-icon-close { display: block; }

#nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

#side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100%;
    background: #0f1a14;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 72px 0 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.35);
}
#side-nav.open {
    transform: translateX(0);
}

.side-nav-link {
    display: block;
    padding: 14px 28px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: var(--font-family, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    border-left: 3px solid transparent;
}
.side-nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding-left: 32px;
}
.side-nav-link.active {
    color: var(--color-accent, #e8a838);
    border-left-color: var(--color-accent, #e8a838);
    background: rgba(232,168,56,0.08);
}

@media (max-width: 640px) {
    #side-nav {
        width: min(260px, 75vw);
    }
}

/* Nav toggle when placed inside top-bar (e.g. browse page) */
.nav-toggle-topbar {
    position: static;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 4px;
}
.nav-toggle-topbar:hover {
    background: rgba(255,255,255,0.15);
}

/* ================================================================
   Marketplace Section
   ================================================================ */

.marketplace-section {
    padding: 32px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.marketplace-header {
    margin-bottom: 20px;
}

.marketplace-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.marketplace-header p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.marketplace-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.marketplace-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.marketplace-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.marketplace-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marketplace-placeholder {
    font-size: 2.4rem;
    font-weight: 700;
    color: rgba(0,0,0,0.2);
}

.marketplace-info {
    padding: 12px 14px;
}

.marketplace-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marketplace-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 4px;
}

.marketplace-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}

.marketplace-seller {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-style: italic;
}

@media (max-width: 640px) {
    .marketplace-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .marketplace-img {
        height: 110px;
    }
}

/* ================================================================
   Feature Interest Survey
   ================================================================ */

.survey-section {
    position: relative;
    max-width: 720px;
    margin: 8px auto 32px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.06), rgba(232, 168, 56, 0.06));
    border: 1px solid rgba(59, 89, 152, 0.15);
    border-radius: 14px;
}

.survey-section.hidden {
    display: none;
}

.survey-dismiss {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
    line-height: 1;
}

.survey-dismiss:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--color-text);
}

.survey-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    padding-right: 24px;
}

.survey-content p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.survey-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.survey-btn {
    padding: 9px 18px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}

.survey-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.survey-btn-yes:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.survey-btn-maybe:hover {
    border-color: var(--color-accent);
    color: #b8860b;
}

.survey-btn-no:hover {
    border-color: #999;
}

.survey-btn-send {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.survey-btn-send:hover {
    background: var(--color-primary-light);
}

.survey-comment-area {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.survey-comment-area.hidden {
    display: none;
}

.survey-comment-area input {
    flex: 1;
    padding: 9px 14px;
    font-family: var(--font-family);
    font-size: 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-surface);
    color: var(--color-text);
}

.survey-comment-area input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
}

.survey-results {
    margin-top: 14px;
    padding: 12px 16px;
    background: var(--color-surface);
    border-radius: 10px;
    border: 1px solid var(--color-border);
}

.survey-results.hidden {
    display: none;
}

.survey-result-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.survey-result-bar:last-child {
    margin-bottom: 0;
}

.survey-result-label {
    min-width: 50px;
    font-weight: 600;
    color: var(--color-text);
}

.survey-result-track {
    flex: 1;
    height: 8px;
    background: var(--color-bg);
    border-radius: 4px;
    overflow: hidden;
}

.survey-result-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.survey-result-fill-yes { background: var(--color-primary); }
.survey-result-fill-maybe { background: var(--color-accent); }
.survey-result-fill-no { background: #999; }

.survey-result-count {
    min-width: 24px;
    text-align: right;
    color: var(--color-text-muted);
    font-size: 0.78rem;
}

.survey-thanks {
    text-align: center;
    padding: 8px 0 0;
}

.survey-thanks.hidden {
    display: none;
}

.survey-thanks p {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0;
}

/* Shop Owner Profile Styles */
.shop-card-owner {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    align-items: flex-start;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    border-radius: 12px 12px 0 0;
}
.owner-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-border);
    background: #d0d4de;
}
.owner-info {
    flex: 1;
    min-width: 0;
}
.owner-info .shop-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}
.owner-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.owner-story {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 6px;
}
.owner-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.owner-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}
.owner-detail a {
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.owner-detail a:hover {
    text-decoration: underline;
}
.owner-detail svg {
    flex-shrink: 0;
    stroke: var(--color-text-muted);
}
@media (max-width: 480px) {
    .shop-card-owner {
        gap: 10px;
        padding: 14px 14px;
    }
    .owner-avatar {
        width: 44px;
        height: 44px;
    }
}
