.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.store-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.2s ease;
}

.store-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.store-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.store-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.store-type {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    background: var(--bg-subtle);
    border-radius: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.store-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #eab308;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.store-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
}

.store-value-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-color);
}
