.store-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.store-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255, 255, 255, 0.06);
}
.store-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding-bottom: 5px;
}
.store-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.store-name-large { font-size: 1.1rem; font-weight: bold; color: #fff; }
.store-update-time { font-size: 0.8rem; color: #aaa; margin-top: 4px; }

.store-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 5px;
}
.store-count-display {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}
.store-count-unit { font-size: 1rem; color: #aaa; margin-left: 5px; font-weight: normal; }

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.card-middle-row { width: 100%; }
.status-message-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ddd;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.card-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
}

.demographics-badge {
    display: flex;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    align-self: flex-start;
    margin-top: auto;
}
.demo-item { display: flex; align-items: center; gap: 4px; }
.demo-count { font-weight: bold; color: #fff; }

.card-bg-gradient {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}
